* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #222;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .hero-header {
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    height: 60px; /* controls vertical alignment with nav */
  }
  
  .logo-img {
    height: 100%;
    width: auto;
    max-height: 60px;
    max-width: 200px; /* limit width so it doesn't overflow */
    object-fit: contain;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3)); /* optional for clarity */
  }
  
  .nav-menu {
    display: flex;
    gap: 30px;
  }
  
  .nav-menu a {
    color: #fff;
    font-weight: 500;
  }
  
  .auth-buttons .btn {
    margin-left: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
  }
  
  .auth-buttons .login {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
  }
  
  .auth-buttons .signup {
    background: #ffd700;
    color: #000;
  }
  
  /* Hero Title Section */
  .contact-hero {
    background: #f5f5f5;
    padding: 80px 20px;
    text-align: center;
  }
  
  .contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .contact-hero p {
    color: #777;
    font-size: 1rem;
  }
  
  /* Contact Form Section */
  .contact-section {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 10%;
    gap: 50px;
  }
  
  .contact-left {
    flex: 1;
    min-width: 280px;
  }
  
  .contact-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .contact-left p {
    margin-bottom: 30px;
    color: #555;
  }
  
  .contact-info {
    display: flex;
    gap: 60px;
  }
  
  .contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .contact-info p {
    margin: 5px 0;
  }
  
  .contact-info a {
    color: #000;
    text-decoration: underline;
  }
  
  .contact-right {
    flex: 1;
    min-width: 280px;
  }
  
  .contact-right h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .contact-right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .input-group {
    display: flex;
    gap: 15px;
  }
  
  .input-group input {
    flex: 1;
  }
  
  form input, form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  form button {
    background: #ffd700;
    border: none;
    padding: 14px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  form button:hover {
    background: #e5c100;
  }
  
  .map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    margin-top: 40px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-section {
      flex-direction: column;
      padding: 40px 20px;
    }
  
    .input-group {
      flex-direction: column;
    }
  }
  .fifth-section {
    background-color: white;
    padding: 80px 20px;
    text-align: center;
  }
  
  .logo-icon {
    width: 150px;
    margin-bottom: 20px;
  }
  
  .fifth-section h2 {
    font-size: 32px;
    max-width: 900px;
    margin: 0 auto 30px;
    font-weight: 600;
    line-height: 1.4;
  }
  
  .social-icons {
    margin: 20px 0;
    font-size: 22px;
  }
  
  .social-icons i {
    margin: 0 10px;
    cursor: pointer;
    color: #333;
    transition: transform 0.3s;
  }
  
  .social-icons i:hover {
    transform: scale(1.2);
  }
  
  .footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 25px 0;
    font-weight: 500;
  }
  
  .footer-nav a {
    text-decoration: none;
    color: #222;
    transition: color 0.3s;
  }
  
  .footer-nav a:hover {
    color: #F6D407;
  }
  
  .image-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 60px auto 40px;
    padding: 0 20px;
  }
  
  .image-cards img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .image-cards img:hover {
    transform: scale(1.05);
  }
  
  .divider-line {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 60px auto 40px;
  }
  
  .copyright {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
  }