/* Buy Now Page Styles */

/* Hero & Pricing Section Combined Background */
.hero-pricing-section {
  background: #f8f9fa;
  padding: 0 20px 60px 20px;
  margin: 0;
}



/* Risk-Free Guarantee Section */
.guarantee-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  margin: 0;
}

.guarantee-container {
  max-width: 1200px;
  margin: 0 auto;
}

.guarantee-container h2 {
  font-size: 32px;
  color: #1E3A5F;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 60px;
  background: #fff;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(40, 82, 122, 0.1);
}

.guarantee-certificate {
  width: 45%;
  max-width: 500px;
  height: auto;
}

.guarantee-text {
  flex: 1;
}

.guarantee-text h3 {
  font-size: 28px;
  color: #1E3A5F;
  font-weight: 700;
  margin: 0 0 25px 0;
  text-transform: uppercase;
}

.guarantee-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.guarantee-text p:last-child {
  margin-bottom: 0;
}

.guarantee-highlight {
  font-weight: 600;
  color: #1E3A5F;
  font-size: 18px;
}

@media (max-width: 992px) {
  .guarantee-content {
    flex-direction: column;
    padding: 40px 30px;
    gap: 40px;
  }

  .guarantee-certificate {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .guarantee-container h2 {
    font-size: 24px;
  }

  .guarantee-text h3 {
    font-size: 22px;
  }

  .guarantee-content {
    padding: 30px 20px;
  }
}

/* Why Legacy Assurance Section */
.why-legacy-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  margin: 0;
}

.why-legacy-container {
  max-width: 1100px;
  margin: 0 auto;
}

.why-legacy-container h2 {
  font-size: 32px;
  color: #1E3A5F;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-legacy-features {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.why-feature {
  background: #fff;
  padding: 35px 30px;
  flex: 1 1 280px;
  max-width: 320px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(40, 82, 122, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(40, 82, 122, 0.15);
}

.why-feature-img {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.why-feature h3 {
  font-size: 22px;
  color: #1E3A5F;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.why-feature p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .why-legacy-features {
    flex-direction: column;
    align-items: center;
  }

  .why-feature {
    max-width: 100%;
  }
}

/* How It Works Section */
.how-it-works-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  margin: 0;
}

.how-it-works-container {
  max-width: 1100px;
  margin: 0 auto;
}

.how-it-works-container h2 {
  font-size: 32px;
  color: #1E3A5F;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Unified Steps Card */
.steps-unified-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(40, 82, 122, 0.1);
  padding: 40px 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Circle Numbers Row */
.step-circles-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 100px;
}

.step-num {
  background: #fff;
  border: 3px solid #1E3A5F;
  color: #1E3A5F;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-line-connector {
  height: 3px;
  background-color: #1E3A5F;
  flex: 1;
  min-width: 120px;
  position: relative;
  z-index: 1;
}

/* Step Content Row */
.step-content-row {
  display: flex;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.step-item {
  flex: 1;
  text-align: center;
}

.step-item h3 {
  font-size: 20px;
  color: #1E3A5F;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.step-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Break into individual cards at 950px */
@media (max-width: 950px) {
  .steps-unified-card {
    padding: 30px 20px;
  }

  .step-circles-row {
    display: none;
  }

  .step-content-row {
    flex-direction: column;
    gap: 30px;
  }

  .step-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(40, 82, 122, 0.1);
    padding: 30px 24px;
    position: relative;
  }

  .step-item::before {
    content: attr(data-step);
    background: #fff;
    border: 3px solid #1E3A5F;
    color: #1E3A5F;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
  }

  .step-item:nth-child(1)::before { content: "1"; }
  .step-item:nth-child(2)::before { content: "2"; }
  .step-item:nth-child(3)::before { content: "3"; }
  .step-item:nth-child(4)::before { content: "4"; }
}

@media (max-width: 768px) {
  .step-item {
    max-width: 100%;
  }
}

.how-it-works-buttons {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}

.hiw-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.hiw-button-label {
  font-size: 22px;
  font-weight: 700;
  color: #1E3A5F;
  background: linear-gradient(135deg, #00909e 0%, #1E3A5F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 8px;
}

.hiw-button-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00909e, #00D76F);
  border-radius: 2px;
}

.hiw-button {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  min-width: 220px;
  text-align: center;
  background-color: #1E3A5F;
  color: #fff;
}

.hiw-button:hover {
  color: #00D76F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

@media (max-width: 600px) {
  .how-it-works-buttons {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .hiw-button-wrapper {
    width: 100%;
    max-width: 300px;
  }

  .hiw-button {
    width: 100%;
    max-width: 300px;
  }
}

/* Pricing Cards Container */
.pricing-cards {
  display: flex;
  gap: 32px;
  margin: 40px auto;
  justify-content: center;
  max-width: 1200px;
  flex-wrap: wrap;
}

/* Individual Pricing Card */
.pricing-card {
  background: #fff;
  padding: 32px;
  flex: 1 1 260px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(40, 82, 122, 0.07);
  margin-bottom: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Card Subtitle (Legacy360) */
.pricing-card-subtitle {
  font-size: 1.4em;
  font-weight: 700;
  color: #00909e;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Card Title */
.pricing-card h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #222;
  text-align: center;
}

/* Price Section */
.pricing-card-price {
  font-weight: 700;
  color: #28527a;
  font-size: 2em;
  margin-bottom: 10px;
  text-align: center;
}

/* Plan Description */
.plan-desc {
  color: #555;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Bullet List */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
}

.pricing-card li {
  color: #555;
  padding: 2px 0;
  position: relative;
  padding-left: 25px;
  font-size: 0.9em;
  line-height: 1.3;
  margin-bottom: 2px;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00909e;
  font-weight: bold;
  font-size: 1.1em;
}

/* CTA Button */
.pricing-card-button {
  display: inline-block;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1em;
  color: white;
  margin-top: auto;
  background-color: #00909e;
  border: none;
  cursor: pointer;
  width: 100%;
}

.pricing-card-button:hover {
  opacity: 0.9;
}

/* Responsive Design for Pricing Cards */
@media (max-width: 992px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    max-width: 500px;
    width: 100%;
  }
}

/* State Verification Modal */

/* Modal Overlay */
#state-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#state-modal.active {
  display: flex;
}

/* Modal Content Container */
#state-modal-content {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Close Button */
#modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

#modal-close:hover {
  color: #333;
}

/* Modal Headings */
#state-modal-content h2 {
  margin-top: 0;
  color: #00909e;
  text-align: center;
}

/* Modal Paragraphs */
#state-modal-content p {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}

#state-selection-view p:first-of-type {
  margin-bottom: 30px;
}

#state-unavailable-view p:last-of-type {
  margin-bottom: 30px;
}

/* State Dropdown */
#state-dropdown {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
  background-color: white;
  cursor: pointer;
}

#state-dropdown:focus {
  outline: none;
  border-color: #00909e;
}

/* Buttons */
#state-submit,
#modal-back {
  width: 100%;
  background-color: #00909e;
  color: white;
  padding: 14px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

#state-submit:hover,
#modal-back:hover {
  background-color: #007a85;
}

/* Email Link */
#state-unavailable-view a {
  color: #00909e;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

#state-unavailable-view a:hover {
  text-decoration: underline;
}

/* View Containers */
#state-unavailable-view {
  display: none;
}

#state-unavailable-view div {
  text-align: center;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 600px) {
  #state-modal-content {
    padding: 30px 20px;
    width: 95%;
  }

  #state-modal-content h2 {
    font-size: 24px;
  }

  #state-dropdown {
    font-size: 14px;
    padding: 10px;
  }

  #state-submit,
  #modal-back {
    font-size: 16px;
    padding: 12px;
  }
}

/* Partnering with Legacy Assurance Plan Section */
.partnership-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  margin: 0 !important;
}

.partnership-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.partnership-header {
  text-align: center;
  margin-bottom: 40px;
  
}

.partnership-header h2 {
  font-size: 32px;
  color: #1E3A5F;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.partnership-header p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  margin-bottom: 50px;
}

.benefit-item {
  display: flex;
  align-items: start;
  gap: 15px;
}

.benefit-checkmark {
  color: #00D76F;
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1E3A5F;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.benefit-content p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

.additional-fees-section {
  margin-top: 50px;
  grid-column: 1 / -1;
}

.additional-fees-section h3 {
  font-size: 32px;
  color: #1E3A5F;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.additional-fees-section .benefits-grid {
  margin-bottom: 0;
}

.additional-fees-section .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
}

.additional-fees-section .benefit-content {
  text-align: left;
  flex: 1;
}

.additional-fees-section .benefit-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1E3A5F;
  margin: 0 0 5px 0;
  line-height: 1.4;
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
}

.additional-fees-section .benefit-content p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

.additional-fees-section .benefit-checkmark {
  text-align: left;
}

/* Responsive Design for Partnership Section */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partnership-container {
    padding: 0 20px;
  }

  .partnership-header h2 {
    font-size: 22px;
  }
}

/* Reviews/Testimonials Section */
.reviews-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  margin: 0 !important;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.reviews-header h2 {
  font-size: 32px;
  color: #1E3A5F;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}

.reviews-stats {
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 8px 16px rgba(40, 82, 122, 0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 15px;
}

.rating-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rating-stars {
  color: #FFC107;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.rating-number {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.rating-subtitle {
  font-size: 11px;
  color: #666;
}

.rating-count {
  padding-left: 20px;
  border-left: 2px solid #D0D5DD;
}

.rating-count-number {
  font-size: 24px;
  font-weight: 700;
  color: #00909e;
  margin-bottom: 5px;
}

.rating-count-label {
  font-size: 11px;
  color: #666;
  text-transform: capitalize;
}

.reviews-recommendation {
  font-size: 14px;
  color: #666;
  margin: 20px 30px 0 30px;
  line-height: 1.5;
}

.reviews-cta-text {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-cta-text p {
  font-size: 18px;
  color: #1E3A5F;
  font-weight: 600;
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(40, 82, 122, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(40, 82, 122, 0.15);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.testimonial-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial-name {
  font-weight: 700;
  color: #1E3A5F;
  font-size: 18px;
}

.review-stars {
  color: #FFC107;
  font-size: 20px;
  letter-spacing: 2px;
}

.verified-badge-top {
  background-color: #00909e;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 25px;
  }

  .reviews-header h2 {
    font-size: 24px;
  }
}

.reviews-dots {
  text-align: center;
  margin-bottom: 30px;
}

.review-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  margin: 0 5px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid white;
}

.review-dot.active {
  opacity: 1;
  background-color: white;
}

.reviews-footer {
  text-align: center;
  margin-top: 50px;
}

.reviews-footer p {
  font-size: 18px;
  color: #1E3A5F;
  font-weight: 600;
  margin-bottom: 20px;
}

.reviews-button {
  display: inline-block;
  background-color: #1E3A5F;
  color: white;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.reviews-button:hover {
  background-color: #152b45;
}

/* Responsive Design for Reviews Section */
@media (max-width: 992px) {
  .review-slide {
    min-width: 50%;
  }
}

@media (max-width: 768px) {
  .review-slide {
    min-width: 100%;
  }

  .reviews-rating {
    flex-direction: column;
    gap: 20px;
  }

  .rating-count {
    border-left: none;
    border-top: 2px solid #D0D5DD;
    padding-left: 0;
    padding-top: 15px;
  }

  .reviews-header h2 {
    font-size: 22px;
  }
}

/* Optional Add-ons Section */
.add-ons-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  margin: 0;
}

.add-ons-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 50px 60px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(40, 82, 122, 0.1);
}

.add-ons-container h2 {
  font-size: 32px;
  color: #1E3A5F;
  font-weight: 700;
  text-align: center;
  margin: 0 0 25px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add-ons-intro {
  font-size: 18px;
  color: #555;
  text-align: center;
  margin: 0 0 35px 0;
  line-height: 1.6;
}

.add-ons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.add-ons-list li {
  background: #f8f9fa;
  padding: 20px 25px;
  border-radius: 6px;
  border-left: 4px solid #00909e;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.add-ons-list li:hover {
  background: #e7f3f8;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .add-ons-container {
    padding: 40px 30px;
  }

  .add-ons-container h2 {
    font-size: 24px;
  }

  .add-ons-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* FAQ Section */
.faq-section {
  background-color: #f8f9fa;
  margin: 0;
  padding: 60px 20px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title {
  font-size: 32px;
  margin: 0;
  color: #1E3A5F;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(40, 82, 122, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(40, 82, 122, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  font-weight: 600;
  font-size: 17px;
  color: #1E3A5F;
  margin: 0;
}

.faq-toggle {
  color: #00909e;
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 5000px;
  padding: 0 30px 25px 30px;
  border-top: 1px solid #e0e0e0;
}

.faq-answer p {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer h4 {
  color: #1E3A5F;
  font-size: 15px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.faq-answer ul {
  margin: 10px 0;
  padding-left: 20px;
}

.faq-answer li {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 5px;
}

.faq-answer a {
  color: #00909e;
  text-decoration: none;
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design for FAQ Section */
@media (max-width: 768px) {
  .faq-title {
    font-size: 24px;
  }

  .faq-question {
    font-size: 15px;
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}
