body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f8f8;
  }
  
  header {
    background-color: #002b36;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header img {
    height: 50px;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  .hero h1,
  .hero p {
    color: #f16d6f;
    font-family: 'Playfair Display', serif;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 2rem;
    border-radius: 10px;
    margin: 0.5rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .section {
    display: flex;
    justify-content: space-between;
    padding: 4rem 10%;
    gap: 2rem;
    align-items: center;
  }
  
  .section:nth-child(even) {
    flex-direction: row-reverse;
    background-color: #f0f0f0;
  }
  
  .section img {
    width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s;
  }
  
  .section img:hover {
    transform: scale(1.03);
  }
  
  .section .content {
    width: 50%;
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-in-out;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  footer {
    background-color: #002b36;
    color: white;
    text-align: center;
    padding: 1rem;
  }
  
  @media (max-width: 768px) {
    .section {
      flex-direction: column;
      padding: 2rem;
    }
  
    .section img,
    .section .content {
      width: 100%;
    }
  }
  

  /* Header layout */
.site-header {
  background-color: #2c3e50;
  padding: 1rem 1.5rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-logo {
  height: 50px;
}

/* Hide toggle by default */
.nav-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  display: none;
  cursor: pointer;
}

/* Desktop nav */

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #f16d6f;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 1rem;
    background-color: #2c3e50;
    width: 200px;
    border-radius: 8px;
    padding: 1rem;
    z-index: 1000;
  }

  .main-nav ul.active {
    display: flex;
  }

  .main-nav ul li {
    margin: 0.75rem 0;
  }
}

  
  