    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }


    .hero-section {
      background: linear-gradient(135deg, rgba(6, 6, 6, 0.95), rgba(11, 11, 11, 0.7)),
                  url('/images/contact-us.webp') center/cover no-repeat;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #ffffff;
      position: relative;
    }

    .hero-content {
      max-width: 800px;
      padding: 0 30px;
    }

    .hero-content h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      font-weight: 300;
      letter-spacing: 3px;
      margin-bottom: 24px;
      line-height: 1.1;
    }

    .hero-content p {
      font-size: 1.15rem;
      font-weight: 300;
      letter-spacing: 1.5px;
      opacity: 0.95;
    }

  
    /* Contact info section with minimal clean cards and no borders */
    .contact-info-section {
      padding: 120px 0 100px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 300;
      text-align: center;
      color: #1a1a1a;
      margin-bottom: 80px;
      letter-spacing: 2px;
    }

    .contact-info-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 80px;
      margin-bottom: 0;
    }

    .info-card {
      text-align: center;
      padding: 0;
      background: transparent;
      box-shadow: none;
      border: none;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .info-card:hover {
      transform: translateY(-8px);
    }

    .info-card h3 {
      font-family: 'Cormorant Garamond', serif;
      color: #1a1a1a;
      font-size: 1.4rem;
      margin-bottom: 24px;
      font-weight: 400;
      letter-spacing: 1px;
    }

    .info-card p {
      color: #666666;
      margin-bottom: 12px;
      font-size: 1rem;
      line-height: 1.8;
    }

    .info-card a {
      color: #bfa36a;
      text-decoration: none;
      transition: color 0.3s ease;
      border-bottom: 1px solid transparent;
      padding-bottom: 2px;
    }

    .info-card a:hover {
      color: #1a1a1a;
      border-bottom: 1px solid #1a1a1a;
    }

    /* Form section minimalist design with clean spacing */
    .form-section {
      padding: 100px 80px;
      border-radius: 0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      margin-bottom: 0;
      border-top: 1px solid #e8e8e8;
      border-bottom: 1px solid #e8e8e8;
    }

    .form-section h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 300;
      color: #1a1a1a;
      margin-bottom: 60px;
      text-align: center;
      letter-spacing: 2px;
    }

    .form-group {
      margin-bottom: 32px;
    }


    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 14px 24px;
      border: none;
      border-bottom: 1px solid #d0d0d0;
      border-radius: 0;
      font-family: 'Lato', sans-serif;
      font-size: 1rem;
      color: #1a1a1a;
      background: wheat;
      opacity: 0.5;
      border-radius: 20px;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-bottom: 2px solid rgb(163, 147, 126);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 140px;
    }

    

    .form-full {
      grid-column: 1 / -1;
    }

    .submit-btn {
      background-color: #1a1a1a;
      color: #ffffff;
      padding: 16px 60px;
      border: 2px solid #1a1a1a;
      border-radius: 0;
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 1.5px;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
      margin-top: 20px;
      text-transform: uppercase;
    }

    .submit-btn:hover {
      background-color: transparent;
      color: #1a1a1a;
    }

    .submit-btn:active {
      transform: scale(0.98);
    }

    /* Map Section */
    .map-section {
      padding: 100px 0;
    }

    .map-section h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 300;
      color: #1a1a1a;
      margin-bottom: 60px;
      text-align: center;
      letter-spacing: 2px;
    }

    .map-container {
      border-radius: 0;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      height: 450px;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Success Message */
    .success-message {
      display: none;
      background-color: #f0f0f0;
      color: #1a1a1a;
      padding: 16px 20px;
      border-radius: 0;
      margin-bottom: 30px;
      border-bottom: 2px solid #1a1a1a;
      font-size: 0.95rem;
      text-align: center;
    }

    .success-message.show {
      display: block;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2.8rem;
      }

      .hero-content p {
        font-size: 1rem;
      }

      .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
      }

      .form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .form-section {
        padding: 50px 30px;
      }

      .container {
        padding: 0 20px;
      }

      .hero-section {
        min-height: 100vh;
      }

      .map-container {
        height: 300px;
      }

      .contact-info-section {
        padding: 80px 0 60px;
      }

      .map-section {
        padding: 80px 0;
      }
    }