body {
      margin: 0; 
      font-family: 'Open Sans', sans-serif;
      background: #f9fafe;
      color: #333;
    }
   header {
  background: white;
  color: rgb(255, 115, 0);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

header img {
  height: 50px;
}

/* Navigation */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: rgb(255, 115, 0);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #004e80;
}

.mermasin{
  width: 33%;
  margin: auto;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 26px;
  color: rgb(255, 115, 0);
  padding-right: 20px;
  cursor: pointer;
  z-index: 1001;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.language-switcher button {
  background-color: white;
  color: rgb(255, 115, 0);
  border: 1px solid transparent;
  margin: 0 5px;
  padding: 6px 12px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.language-switcher button:hover {
  background-color: #004e80;
  color: white;
}
    main {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }
    section {
      margin-bottom: 60px;
    }
    h3 {
      font-weight: 700;
      font-size: 28px;
      margin-bottom: 20px;
      color: black;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
      gap: 25px;
    }
    .service-card {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.07);
      text-align: center;
      transition: transform 0.3s ease;
    }
    .service-card:hover {
      transform: translateY(-8px);
    }
    .service-card img {
      max-width: 100px;
      margin-bottom: 15px;
    }
    .service-card h4 {
      margin: 10px 0;
      font-size: 20px;
      color: #22C1C3;
    }
    .service-card p {
      font-size: 16px;
      color: #555;
      line-height: 1.4;
      color: black;
    }
    footer {
      background: #004e80;
      color: white;
      text-align: center;
      padding: 20px 15px;
      font-size: 14px;
      margin-top: 60px;
    }

    @media (max-width: 768px) {
  header {
    padding: 15px;
    display: flex
  }

  nav,
  .language-switcher {
    display: none;
    width: 100%;
  }

  .hamburger {
    display: block;
  }

  nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #f8f8f8;
    padding: 15px 30px;
    gap: 15px;
    border-top: 1px solid #ddd;
    z-index: 100;
  }

  .language-switcher.active {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
  }
    }