.sec2{
  height: 70vh;
  width: 100%;
  img{
    height: 100%;
    width: 100%;
  }
}

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: 600px;
      margin: 40px auto;
      padding: 30px 25px;
      background: white;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    }
    h2 {
      color: #004e80;
      font-weight: 700;
      font-size: 36px;
      margin-bottom: 30px;
      text-align: center;
    }
    form {
      display: flex;
      flex-direction: column;
    }
    label {
      font-weight: 600;
      margin-bottom: 8px;
      color: #004e80;
    }
    input, textarea {
      padding: 12px 15px;
      font-size: 16px;
      border: 1.5px solid #ccc;
      border-radius: 6px;
      margin-bottom: 25px;
      transition: border-color 0.3s ease;
      resize: vertical;
      font-family: 'Open Sans', sans-serif;
    }
    input:focus, textarea:focus {
      border-color: #006bb3;
      outline: none;
    }
    button {
      background-color: #007acc;
      color: white;
      padding: 15px 35px;
      font-size: 18px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }
    button:hover {
      background-color: #005f99;
    }
    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
  }

  .sec2{
    display: none;
  }

  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;
  }
 }