/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
  }
  
  /* Header Section */
  header {
    background: #0077b6;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  header .logo h1 {
    font-size: 1.8rem;
  }
  
  header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  header nav ul li {
    display: inline;
  }
  
  header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  header nav ul li a:hover {
    text-decoration: underline;
  }
  
  .translate {
    margin-top: 10px;
  }
  
  /* Banner Section */
  .banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #f4f4f4;
  }
  
  .banner img {
    width: 100%;
    max-width: 600px;
    height: auto;
  }
  
  .banner-content {
    max-width: 600px;
  }
  
  .banner-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0077b6;
  }
  
  .banner-content p {
    margin-bottom: 20px;
  }
  
  .banner-content button {
    padding: 10px 20px;
    border: none;
    background: #0077b6;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
  }
  
  .banner-content button:hover {
    background: #005f87;
  }
  
  /* About Section */
  #about {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
  }
  
  #about img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 20px;
  }
  
  #about h2 {
    color: #0077b6;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  #about p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Services Section */
  #services {
    padding: 40px 20px;
    background: #f4f4f4;
    text-align: center;
  }
  
  #services h2 {
    font-size: 2rem;
    color: #0077b6;
    margin-bottom: 20px;
  }
  
  #services ul {
    list-style: none;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
  }
  
  #services ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
  }
  
  #services ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #0077b6;
  }
  
  /* Contact Section */
  #contact {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
  }
  
  #contact h2 {
    font-size: 2rem;
    color: #0077b6;
    margin-bottom: 20px;
  }
  
  #contact p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  #contact img {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 20px auto;
  }
  
  #contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  
  #contact label {
    display: block;
    font-weight: bold;
    margin: 10px 0 5px;
  }
  
  #contact input,
  #contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  #contact button {
    padding: 10px 20px;
    border: none;
    background: #0077b6;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
  }
  
  #contact button:hover {
    background: #005f87;
  }
  
  /* Footer Section */
  footer {
    text-align: center;
    padding: 10px;
    background: #0077b6;
    color: #fff;
    margin-top: 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header nav ul {
      flex-direction: column;
      align-items: center;
    }
  
    .banner {
      flex-direction: column;
    }
  
    .banner-content {
      text-align: center;
    }
  
    #services ul {
      text-align: center;
    }
  
    #services ul li {
      padding-left: 0;
    }
  
    #services ul li::before {
      display: none;
    }
  }
  