
    /* Contact Hero Section */
    .contact-hero {
      background: linear-gradient(rgba(38, 93, 44, 0.4), rgba(32, 93, 34, 0.4)), url('../images/banner_img/contanct\ banner.jpg') no-repeat center center/cover;
      height: 60vh;
      display: flex;
      align-items: center;
      text-align: center;
      color: var(--white);
      /* margin-top: 70px; */
    }

    .contact-hero-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
    }

    .contact-hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .contact-hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    /* Contact Section */
    .contact-section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--accent);
      border-radius: 2px;
    }

    .section-title p {
      color: var(--text-light);
      font-size: 1.1rem;
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 50px;
    }

    .contact-info {
      flex: 1;
      min-width: 300px;
      background-color: var(--white);
      padding: 40px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .contact-info h3 {
      font-size: 1.8rem;
      margin-bottom: 30px;
      color: var(--primary);
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }

    .info-icon {
      width: 50px;
      height: 50px;
      background-color: var(--light);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 20px;
      color: var(--primary);
      font-size: 1.2rem;
    }

    .info-content h4 {
      font-size: 1.2rem;
      margin-bottom: 5px;
    }

    .info-content p, .info-content a {
      color: var(--text-light);
      text-decoration: none;
      transition: var(--transition);
    }

    .info-content a:hover {
      color: var(--primary);
    }

    .social-links {
      display: flex;
      margin-top: 30px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: var(--light);
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 15px;
      color: var(--primary);
      transition: var(--transition);
    }

    .social-link:hover {
      background-color: var(--primary);
      color: var(--white);
      transform: translateY(-5px);
    }

    /* Contact Form */
    .contact-form {
      flex: 1;
      min-width: 300px;
      background-color: var(--white);
      padding: 40px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .contact-form h3 {
      font-size: 1.8rem;
      margin-bottom: 30px;
      color: var(--primary);
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
    }

    .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: var(--radius);
      font-family: 'Poppins', sans-serif;
      transition: var(--transition);
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
    }

    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }

    .btn {
      display: inline-block;
      padding: 12px 30px;
      background-color: var(--primary);
      color: var(--white);
      border: none;
      border-radius: var(--radius-full);
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
    }

    .btn:hover {
      background-color: var(--dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .btn-block {
      display: block;
      width: 100%;
    }

    /* Map Section */
    .map-section {
      padding: 0 0 80px;
    }

    .map-container {
      height: 400px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* FAQ Section */
    .faq-section {
      padding: 80px 0;
      background-color: var(--white);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      margin-bottom: 20px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .faq-question {
      background-color: var(--primary);
      color: var(--white);
      padding: 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: var(--transition);
    }

    .faq-question:hover {
      background-color: var(--dark);
    }

    .faq-question h4 {
      font-size: 1.2rem;
    }

    .faq-question i {
      transition: var(--transition);
    }

    .faq-answer {
      background-color: var(--light);
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: var(--transition);
    }

    .faq-answer-content {
      padding: 20px;
    }

    .faq-item.active .faq-question {
      background-color: var(--dark);
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 20px 0;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
      .contact-hero h1 {
        font-size: 2.5rem;
      }
    }

    @media (max-width: 768px) {
     

      .contact-hero {
        height: 50vh;
      }

      .contact-hero h1 {
        font-size: 2rem;
      }

      .contact-hero p {
        font-size: 1rem;
      }

      .section-title h2 {
        font-size: 2rem;
      }
    }

    @media (max-width: 576px) {
      .contact-hero {
        height: 40vh;
        margin-top: 60px;
      }

      .contact-hero h1 {
        font-size: 1.8rem;
      }

      .contact-info, .contact-form {
        padding: 30px 20px;
      }

      .info-item {
        flex-direction: column;
      }

      .info-icon {
        margin-bottom: 15px;
      }
    }

    .faq-answer-content p {
      color: black !important;
    }