    :root {
      --primary: solid black;
      --secondary: #d4af37;
      --light: #f8f5f0;
      --dark: #333;
    }
    
    body {
      /* font-family: 'Poppins', sans-serif; */
      color: var(--dark);
      line-height: 1.6;
      background-color: #dfdfdf;    
    }
    
    h1, h2, h3 {
      font-family: 'Playfair Display', serif;
    }
    
    .contact-hero {
      background-color: #1a365d; /* Fallback color */
      background: 
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url('../images/contact-hero.jpg') no-repeat center;
      background-size: cover;
      background-position: bottom;
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
    }
    
    .contact-hero h1 {
      font-size: 4rem;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    /* Contact Container */
    .contact-container {
      margin: 4rem auto;
      padding: 0 2rem;
      gap: 3rem;
    }
    
    .contact-details {
      display: flex; 
      flex-direction: row; 
      justify-content: space-between;
    }
    
    @media(max-width: 720px) {
        .contact-details {
            flex-direction: column;
            align-items: center;
        }
        
        .contact-detail {
            min-width: 90%;
        }
    }

    /* Contact Info */
    .contact-info {
      display: flex;
      flex-direction: column;
      width: 100%;
      gap: 2.5rem;
    }
    
    .contact-info h2 {
      color: var(--primary);
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    
    .contact-info h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background-color: var(--secondary);
    }
    
    .contact-detail {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30%;
      height: 200px;
      margin-bottom: 1.5rem;
      background: var(--dark);
      background-color: #ffffff;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
      /* border-radius: 0.5rem;
      border: solid #edd13b; */
    }
    
    .contact-icon {
      color: var(--secondary);
      font-size: 1.5rem;
      margin-right: 1rem;
      margin-top: 0.3rem;
    }
    
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }
    
    .social-links a {
      color: var(--primary);
      font-size: 1.5rem;
      transition: color 0.3s;
    }
    
    .social-links a:hover {
      color: var(--secondary);
    }
    
    /* Contact Form */
    .contact-form {
      background-color: white;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .contact-form h2 {
      color: var(--primary);
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    
    .contact-form h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background-color: var(--secondary);
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-family: inherit;
      transition: border-color 0.3s;
    }
    
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--primary);
    }
    
    .submit-btn {
      background-color: var(--primary);
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 4px;
      cursor: pointer;
      font-weight: 500;
      transition: background-color 0.3s;
    }
    
    .submit-btn:hover {
      background-color: #2c5282;
    }
    
    
    #map-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #map { 
      height: 600px;
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      margin-top: 4rem;
    }
    
    .custom-popup .leaflet-popup-content-wrapper {
      background: #fff;
      border-radius: 4px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    /* Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }
    
    .modal-content {
      background-color: white;
      padding: 2rem;
      border-radius: 8px;
      max-width: 500px;
      text-align: center;
      position: relative;
    }
    
    .close-modal {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 1.5rem;
      cursor: pointer;
    }
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .contact-hero, .contact-container, #map {
      animation: fadeIn 0.8s ease-out;
    }