* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* HERO SECTION */
.faq-hero {
  position: relative;
  height: 280px;
  background: url("img-dr-gaurav/FAQ-Background.webp");
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.faq-hero-content {
  position: relative;
  color: #fff;
  text-align: center;
}

.faq-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
}

.faq-hero-content p {
  margin-top: 8px;
  font-size: 16px;
}

/* FAQ SECTION */
.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

/* FAQ ITEMS */
.faq-item {
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #f8f8f8;
  border: none;
  padding: 18px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  display: none;
  padding: 18px;
  background: #fff;
  line-height: 1.6;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  display: block;
}

/* Left content */
.faq-left h1 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 22px;
    color: #444;
}

/* Right image */
.faq-right img {
    width: 430px;
    max-width: 100%;
}

/* Appointment Button */
.book-btn {
    position: absolute;
    right: 100px;
    bottom: 40px;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 40px;
    color: white;
    cursor: pointer;
    background: linear-gradient(to right, #00b8a4, #007d87);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.18);
}
.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #1f2937;
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-item input {
  display: none;
}

.faq-item label {
  display: block;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: #111827;
}

.faq-item label::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item input:checked + label::after {
  content: "−";
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item input:checked ~ .faq-content {
  max-height: 300px;
}

.faq-content p {
  padding: 0 20px 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .faq-section h2 {
    font-size: 26px;
  }

  .faq-item label {
    font-size: 16px;
  }

  .faq-content p {
    font-size: 15px;
  }
}


/* Responsive */
@media (max-width: 992px) {
    .faq-hero {
        padding: 60px 40px;
    }

    .faq-left h1 {
        font-size: 40px;
    }

    .book-btn {
        position: static;
        margin-top: 30px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .faq-hero {
        flex-direction: column;
        text-align: center;
    }

    .faq-right img {
        margin-top: 40px;
        width: 60%;
    }

    .faq-left h1 {
        font-size: 32px;
    }

    .breadcrumb {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .faq-right img {
        width: 80%;
    }

    .book-btn {
        padding: 15px 30px;
        font-size: 18px;
    }
}
