:root {
    --primary-color: #4d4750;
    --secondary-color: #434546;
    --light-color: lab(10.08% -13.37 8.85);
    --dark-color: #333;
    --font-family: 'Roboto', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 } 
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: var(--font-family);
    line-height: 1.6;
  } 
  
  a {
    color: #43B929;
    text-decoration: none;
  }
  
  /* Hero Section */
  .contact-hero {
    position: relative;
    background: url('/static/img/contact 1.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    align-items: flex-start; 
    padding: 50px 0; 

  }
  
  .hero-overlay {
    /* background-color: rgba(0, 0, 0, 0.6); */
    padding: 3rem;
  }
  
  .hero-content {
    text-align: center;
    color: #e8e6e9;
    /* position: relative; */
    background-color: rgba(0, 0, 0, 0.4 ); 
    max-width: 1000px;
    margin: 0 auto;
  }     
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .hero-content p {
    font-size: 18px;
    margin-bottom: 2rem;
  }
  
  .contact-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .contact-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    width: 300px;
  }
  
  .contact-card.purple {
    background-color: var(--primary-color);
    color: #fff;
  }
  
  .contact-card.gray {
    background-color: var(--light-color);
  }
  
  .contact-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .card-text span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .card-text strong {
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  /* Inquiry Form */
  .inquiry-form {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }
  
  .inquiry-form h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    color: var(--text-color);
    transition: var(--transition);
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(106, 74, 201, 0.2);
  }
  
  .form-group textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .send-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 10px;
  }
  
  .send-btn:hover {
    background-color: #43B929;
  }
  
  @keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
  
  /* Appointment Section */
  .appointment-section {
    background-color: #000000;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
  }
  
  .appointment-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .appointment-content h2 {
    font-size: 2.5rem;
    
    margin-bottom: 1rem;
  }
  
  .appointment-content h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .highlight {
    color: #43B929;;
  }
  
  .appointment-button {
    background-color: #fff;
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .appointment-button:hover {
    background-color: var(--light-color);
    color: #43B929;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2.5rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .inquiry-form {
      padding: 1.5rem;
    }
  
    .inquiry-form h2 {
      font-size: 1.8rem;
    }
  
    .section-header h2 {
      font-size: 2rem;
    }
  
    .section-description {
      font-size: 1rem;
    }
  
    .appointment-content h2 {
      font-size: 2rem;
    }
  
    .appointment-content h3 {
      font-size: 1.5rem;
    }
  
    .appointment-button {
      font-size: 1rem;
      padding: 0.8rem 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .contact-card {
      width: 100%;
    }
  
    .inquiry-form {
      padding: 1rem;
    }
  
    .form-group input,
    .form-group textarea {
      font-size: 0.9rem;
    }
  
    .send-btn {
      padding: 0.8rem 1.5rem;
      font-size: 0.9rem;
    }
  }