  #map {
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(33, 37, 41, 0.5);
    width: 100%;
  }
  .vcentres-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .map-left, .centres-right {
    flex: 1;
    min-width: 100%;
  }
  .map-left {
    max-width: 100%;
  }
  .centres-right {
    max-width: 100%;
    padding: 20px;
  }
  .table-responsive {
    overflow-x: auto;
    border-radius: 8px;
  }
  .table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
  }
  .table thead th {
    background-color: #343a40;
    color: white;
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #ddd;
  }
  .table tbody td {
    padding: 12px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #ddd;
  }
  .table tbody tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
  }
  .table th, .table td {
    border: 1px solid #ddd;
  }
  .table tbody tr:last-child td {
    border-bottom: none;
  }
  .table tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
  }
  .table tbody tr:nth-child(even) {
    background-color: #ffffff;
  }

  @media (min-width: 768px) {
    .map-left {
      min-width: 55%;
      max-width: 60%;
    }
    .centres-right {
      min-width: 35%;
      max-width: 40%;
    }
  }

  @media (max-width: 768px) {
    .table thead {
      font-size: 14px;
    }
    .table tbody td {
      font-size: 12px;
      padding: 10px;
    }
  }




/* FAQ */

  .faq-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.faq-container {
    width: 55%;
    counter-reset: question-counter; 
}

.faq-image-container {
    width: 40%; 
    display: flex;
    justify-content: center;
    min-height: 100%;
}

.faq-image-container img {
    width: 100%;
    height: auto; 
    max-width: 500px; 
    max-height: 550px; 
    object-fit: cover; 
    margin-top: 26vh;
}

.intro-container, .mycontainer {
    background-color: white;
    color: black;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5rem;
}

.mycontainer {
    margin: 10px 0;
    padding: 10px;
}

.question {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 15px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    counter-increment: question-counter; 
}

.question::before {
    content: counter(question-counter) ". "; 
    font-weight: bold;
    margin-right: 5px;
}

.question::after {
    content: "\002B";
    font-size: 1.5rem;
    position: absolute;
    right: 15px;
    transition: 0.2s;
}

.question.active::after {
    transform: rotate(45deg);
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.answer {
    padding: 0 15px 10px;
    font-size: 0.95rem;
    line-height: 1.4rem;
}

@media screen and (max-width: 1024px) {
    .faq-image-container img {
        width: 80%;
        margin-top: 7rem; 
    }
}

@media screen and (max-width: 790px) {
    .wrapper {
        flex-direction: column;
    }
    .faq-container, .faq-image-container {
        width: 100%;
    }
    .faq-image-container img {
        margin-top: 3rem;
    }
}


/* CONTACT PAGE */
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
    gap: 30px; 
    max-width: 1200px;
    margin: 0 auto;
}


/* Map Section */
.map-left {
    flex: 1;
    min-width: 55%;  
    max-width: 60%;
}

.map-left iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

.google-map {
  height: 500px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #f8f9fa;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .google-map {
    height: 350px;
  }
}


/* Contact Section */
.contact-right {
    flex: 1;
    min-width: 35%;
    max-width: 40%;
    background: #f8f9fa;
    /* background: #e2d8e7; */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Contact Text Styling */
.contact-right h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-right h4 {
    margin-top: 15px;
}

.contact-right p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-right i {
    margin-right: 10px;
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wrapper {
        flex-direction: column; 
        align-items: center;
    }

    .map-left,
    .contact-right {
        max-width: 100%;  
        padding: 0;
    }

    .map-left {
        margin-bottom: 20px;  
    }
}
