
/* Hero Section - Competitor Style */
/* Define Global Font Variables */
:root {
    --font-primary: "Inter", sans-serif;
    --font-secondary: "Manrope", sans-serif;
  }
  
  /* Global Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary); /* Apply primary font globally */
  }
  
  body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
  }
  
  
/* Final Navigation Styles */
header {
  background-color: #f8f8f8;
  padding: 15px 0;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
}

nav .logo img {
  height: auto;
  max-height: 80px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

/* Add dropdown indicator */
nav ul li.has-dropdown > a::before {
  content: '▾';
  display: inline-block;
  margin-right: 5px;
  font-size: 12px;
  color: #666;
}

/* Main navigation links - keep original style */
nav ul li a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
  font-size: 17px;
  transition: color 0.3s ease;
  padding: 10px 15px;
  font-family: var(--font-secondary);
  position: relative;
}

/* Apply underline animation only to non-dropdown links */
nav ul li:not(.has-dropdown) > a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #F47E31;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav ul li:not(.has-dropdown) > a:hover::after {
  width: calc(100% - 30px);
}

/* Remove underline animation for dropdown items */
nav ul .dropdown li a::after {
  display: none;
}

/* Improved Dropdown Menu with Two Columns */
.dropdown {
  display: none;
  position: absolute;
  background: white;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  top: 100%;
  left: 0;
  min-width: 450px;
  z-index: 100;
  padding: 15px;
  border: 1px solid #eee;
}

nav ul li:hover .dropdown {
  display: block;
}

/* Two-column layout for dropdown */
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
}

/* Category headers for dropdown */
.category-header {
  display: block;
  font-weight: bold;
  color: #06476E;
  padding: 10px 0 5px;
  margin-top: 5px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.category-header:first-child {
  margin-top: 0;
}

.dropdown li {
  padding: 0;
  margin: 0;
}

/* Make dropdown text bolder and easier to read */
.dropdown li a {
  color: #333;
  display: block;
  padding: 8px 10px;
  font-weight: 600; /* Make text bolder */
  transition: color 0.3s ease;
}

/* Simpler hover effect - just darken text */
.dropdown li a:hover {
  color: #0055aa; /* Darken text on hover */
  background-color: #f8f8f8; /* Very light background change */
}

/* See All Conditions link spans both columns */
.see-all {
  grid-column: span 2;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.see-all a {
  text-align: center;
  color: #0055aa;
  font-weight: bold;
}

/* Mobile Navigation - CSS only approach */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle-input {
  display: none;
}

@media (max-width: 884px) {
  .mobile-toggle {
    display: block;
  }
  
  nav {
    position: relative;
  }
  
  nav > ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f8f8f8;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    gap: 10px;
  }
  
  .mobile-toggle-input:checked ~ ul {
    display: flex;
  }
  
  nav ul li {
    width: 100%;
  }
  
  nav ul li a {
    display: block;
    width: 100%;
  }
  
  /* Remove underline animation for mobile */
  nav ul li a::after {
    display: none;
  }
  
  /* Mobile dropdown */
  .mobile-dropdown-toggle {
    display: none;
  }
  
  .dropdown {
    position: static;
    width: 100%;
    min-width: unset;
    box-shadow: none;
    display: none;
    border: none;
    background: transparent;
    padding: 10px 0 10px 15px;
  }
  
  .dropdown-grid {
    display: block;
  }
  
  .see-all {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
  }
  
  .mobile-dropdown-toggle:checked ~ .dropdown {
    display: block;
  }
  
  /* Mobile toggle indicator */
  .mobile-dropdown-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .mobile-dropdown-label::after {
    content: '+';
    font-size: 20px;
    color: #666;
  }
  
  .mobile-dropdown-toggle:checked + .mobile-dropdown-label::after {
    content: '−';
  }
}

/* Target MacBook screen sizes (typically 1280px-1440px wide) */
@media screen and (min-width: 1196px) and (max-width: 1440px) {
  /* Make logo smaller */
  nav .logo img {
    max-height: 68px; /* Reduced from 68px */
    max-width: 300px; /* Controlled max-width */
  }
  
 
}

/* iPad landscape - complete navigation adjustment */
@media screen and (min-width: 885px) and (max-width: 1195px) {
  /* Smaller logo */
  nav .logo img {
    max-height: 50px;
    max-width: 220px;
  }
  
  /* Adjust navigation text and spacing */
  nav ul {
    gap: 12px; /* Reduce spacing between items */
  }
  
  nav ul li a {
    font-size: 14px; /* Smaller font size */
    padding: 10px 6px; /* Reduced padding */
    letter-spacing: -0.2px; /* Slightly tighter letter spacing */
  }
  
  /* Reduce dropdown indicator size if needed */
  nav ul li.has-dropdown > a::before {
    font-size: 10px;
  }
  
 
  
  /* Make dropdown narrower */
  .dropdown {
    min-width: 400px; /* Instead of 450px */
  }
}




.back-pain-hero {
    background: #021130; /* Subtle but clear */
    padding: 80px 20px 40px; /* Reduced bottom padding */
    text-align: center;
    height: auto;
    border-bottom: 1px solid #D1D9E0; /* Clean, professional look */
  }
  
  .back-pain-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .back-pain-hero h1 {
    color: white; /* Deep charcoal for better readability */
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: none !important;
  }
  
  .back-pain-hero p {
    color: white; /* Slightly darker grayish-blue */
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: none !important;
  }
  
  /* CTA Button */
  .back-pain-hero .hero-cta {
    display: inline-block;
    background-color: #F47E31;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 18px;
  }
  
  .back-pain-hero .hero-cta:hover {
    background-color: white;
    color: #F47E31;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 126, 49, 0.2);
  }
  

  /* Modern Treatment Journey Approach */
  .approach-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  }
  
  .section-title {
    text-align: center;
    color: #06476E;
    font-size: 36px;
    margin-bottom: 60px;
    position: relative;
  }
  

  .treatment-journey {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  /* Create connecting line between steps */
  .treatment-journey:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 4px;
    background: linear-gradient(to bottom, #06476E, #F47E31);
    border-radius: 2px;
  }
  
  .journey-step {
    display: flex;
    margin-bottom: 70px;
    position: relative;
  }
  
  .journey-step:last-child {
    margin-bottom: 0;
  }
  
  .step-icon {
    flex: 0 0 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #06476E;
    z-index: 2;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .step-icon img {
    width: 40px;
    height: 40px;
  }
  
  .journey-step:hover .step-icon {
    border-color: #F47E31;
    transform: scale(1.1);
  }
  
  .step-content {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 30px 30px 30px 50px;
    margin-left: -30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 1;
  }
  
  .journey-step:hover .step-content {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .step-number {
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 64px;
    font-weight: 800;
    color: rgba(6, 71, 110, 0.1);
    z-index: 0;
  }
  
  .step-content h3 {
    color: #06476E;
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .step-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .step-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .step-benefits li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #666;
  }
  
  .step-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F47E31;
    font-weight: bold;
  }
  
  .approach-cta {
    text-align: center;
    margin-top: 60px;
  }
  
  .approach-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
  }
  
  .cta-button {
    display: inline-block;
    background: #F47E31;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(244, 126, 49, 0.3);
  }
  
  .cta-button:hover {
    background: #06476E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(6, 71, 110, 0.3);
  }
  
  /* Mobile responsive styles */
  @media (max-width: 768px) {
    .treatment-journey:before {
        left: 30px;
    }
    
    .step-icon {
        flex: 0 0 60px;
        height: 60px;
    }
    
    .step-icon img {
        width: 30px;
        height: 30px;
    }
    
    .step-content {
        padding: 25px 20px 25px 40px;
    }
    
    .step-number {
        font-size: 48px;
        top: -10px;
        right: 20px;
    }
  }

/* Conditions details section*/
.condition-detail-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.condition-detail-container {
  display: flex;
  align-items: stretch;
  gap: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  overflow: hidden;
  background: white;
  margin-top: 40px;
  max-width: 100%;
}

.condition-detail-image {
  flex: 0 0 45%;
  overflow: hidden;
  height: auto;
  align-self: stretch;
  display: flex;
  max-height: 600px;
}

.condition-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 15px 0 0 15px;
}

.condition-detail-image:hover img {
  transform: scale(1.05);
}

.condition-detail-content {
  flex: 0 0 55%;
  padding: 40px 40px 40px 30px;
  box-sizing: border-box;
}

.condition-detail-content h3 {
  color: #06476E;
  font-size: 26px;
  margin-bottom: 20px;
  position: relative;
  font-weight: 700;
}

.condition-detail-content p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

.condition-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.condition-features li {
  margin-bottom: 12px;
  color: #444;
  display: flex;
  align-items: flex-start;
}

.feature-check {
  color: #F47E31;
  font-weight: bold;
  margin-right: 10px;
}

.condition-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F47E31;
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 20px;
  border: 2px solid transparent; /* Invisible border for smooth transition */
}

.condition-detail-cta:hover {
  background-color: white; /* Change background to white */
  color: #F47E31; /* Change text to original button color */
  border: 2px solid #F47E31; /* Keep border visible */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(244, 126, 49, 0.3);
}


/* Responsive styles */
@media (max-width: 992px) {
  .condition-detail-container {
      flex-direction: column;
  }
  
  .condition-detail-image, 
  .condition-detail-content {
      flex: 0 0 100%;
  }
  
  .condition-detail-image {
      height: 400px;
  }
  
  .condition-detail-image img {
      border-radius: 15px 15px 0 0;
  }
  
  .condition-detail-content {
      padding: 30px;
  }
}

@media (max-width: 768px) {
  .condition-detail-section {
      padding: 60px 0;
  }
  
  .condition-detail-content h3 {
      font-size: 22px;
  }
}
  /* SEO-friendly Concerns Section */

.condition-concerns-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.condition-section-title {
  text-align: center;
  color: #06476E;
  font-size: 36px;
  margin-bottom: 15px;
}


/* Updated grid layout */
.condition-concerns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* New card design with number on left */
.condition-symptom-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
}

.condition-symptom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.symptom-number {
  font-size: 42px;
  font-weight: 800;
  color: rgba(6, 71, 110, 0.1);
  line-height: 1;
  margin-right: 20px;
  flex-shrink: 0;
}

.symptom-card-content {
  flex: 1;
}

.symptom-card-content h3 {
  color: #06476E;
  font-size: 22px;
  margin-bottom: 12px;
}

.symptom-card-content p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .condition-concerns-grid {
      grid-template-columns: 1fr;
  }
  
  .symptom-number {
      font-size: 36px;
  }
}
/* Modern Why Choose Us Section */
.condition-why-us-section {
    padding: 90px 0;
    background: linear-gradient(to bottom, #ffffff, #f2f6f9);
}

.condition-advantages-wrapper {
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.condition-advantage-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.condition-advantage-item:last-child {
    margin-bottom: 0;
}

.condition-advantage-number {
    flex: 0 0 80px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(6, 71, 110, 0.1);
    line-height: 1;
    transition: all 0.3s ease;
}

.condition-advantage-content {
    padding-left: 20px;
    border-left: 3px solid #f0f0f0;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.condition-advantage-item:hover .condition-advantage-number {
    color: rgba(244, 126, 49, 0.2);
}

.condition-advantage-item:hover .condition-advantage-content {
    border-left-color: #F47E31;
}

.condition-advantage-content h3 {
    color: #06476E;
    font-size: 22px;
    margin-bottom: 10px;
   
}



.condition-advantage-content p {
    color: #555;
    line-height: 1.6;
    max-width: 80%;
}

/* Add a subtle connecting line between items */
.condition-advantages-wrapper::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #f0f0f0;
    z-index: -1;
}

@media (max-width: 768px) {
    .condition-advantage-number {
        flex: 0 0 60px;
        font-size: 36px;
    }
    
    .condition-advantage-content p {
        max-width: 100%;
    }
}
  
/* SEO-friendly FAQ Section using HTML5 details/summary */
.condition-faq-section {
    padding: 80px 0;
     background: #f8f9fa;
}

.condition-faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.condition-faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.condition-faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.condition-faq-question {
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #06476E;
}

/* Style the default marker */
.condition-faq-question::marker,
.condition-faq-question::-webkit-details-marker {
    display: none;
}

/* Create our own custom marker */
.condition-faq-question::after {
    content: '+';
    font-size: 20px;
    color: #06476E;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Rotate the + when details is open */
details[open] .condition-faq-question::after {
    content: '−';
    color: #F47E31;
}

.condition-faq-question h3 {
    color: #06476E;
    font-size: 18px;
    margin: 0;
    transition: color 0.3s ease;
}



details[open] .condition-faq-question {
    border-bottom: 1px solid #f0f0f0;
    border-left: 4px solid #F47E31;
}

.condition-faq-answer {
    padding: 20px 25px;
}

.condition-faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.condition-faq-cta {
    text-align: center;
    margin-top: 40px;
}

.condition-faq-cta p {
    color: #555;
    margin-bottom: 15px;
}

.condition-contact-button {
    display: inline-block;
    padding: 12px 25px;
    background: #06476E;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.condition-contact-button:hover {
    background: #F47E31;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 126, 49, 0.3);
}
  
/* Enhanced Testimonials Section */
.condition-testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.condition-testimonials-section::before {
    content: '"';
    position: absolute;
    font-size: 400px;
    color: rgba(6, 71, 110, 0.03);
    font-family: Georgia, serif;
    top: -50px;
    right: 10%;
    line-height: 1;
}

.condition-testimonials-slider {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.condition-testimonial {
    margin-bottom: 40px;
}

.condition-testimonial:last-child {
    margin-bottom: 0;
}

.condition-testimonial-content {
    background: white;
    border-radius: 15px;
    padding: 40px 40px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.condition-quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 80px;
    line-height: 1;
    color: #F47E31;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.condition-testimonial-content p {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.condition-testimonial-footer {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.condition-rating {
    color: #FFD700;
    margin-right: 15px;
    letter-spacing: 2px;
}

.condition-author {
    display: flex;
    flex-direction: column;
}

.condition-author strong {
    color: #06476E;
    font-size: 18px;
}

.condition-author span {
    color: #777;
    font-size: 14px;
}

.condition-testimonials-cta {
    text-align: center;
    margin-top: 40px;
}

.condition-reviews-button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #444;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.condition-reviews-button:hover {
    background: #06476E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 71, 110, 0.2);
}

.condition-google-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .condition-testimonial-content {
        padding: 30px 25px 20px;
    }
    
    .condition-quote-icon {
        font-size: 60px;
        top: -15px;
        left: 20px;
    }
}
  
  /* Final CTA Section */
/* Enhanced Final CTA Section */
.condition-final-cta {
    padding: 100px 0;
    background-color: #06476E;
    position: relative;
    overflow: hidden;
}

.condition-final-cta::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 126, 49, 0.2) 0%, rgba(244, 126, 49, 0) 70%);
    border-radius: 50%;
}

.condition-final-cta::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.condition-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.condition-final-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.condition-final-cta p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.condition-cta-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.condition-cta-benefit {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
}

.condition-benefit-check {
    color: #F47E31;
    font-weight: bold;
    margin-right: 8px;
    font-size: 18px;
}


@media (max-width: 768px) {
    .condition-final-cta h2 {
        font-size: 32px;
    }
    
    .condition-final-cta p {
        font-size: 18px;
    }
    
    .condition-cta-benefit {
        width: 100%;
        justify-content: center;
    }
}
  
  
  /* Common styles for back pain sections */
  .back-pain-section-title {
    color: #06476E;
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
  }
  .related-conditions {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .conditions-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .condition-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
  }
  
  .condition-card h3 {
    color: #06476E;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
  }
  
  .condition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #F47E31;
  }
  
  .condition-card.primary {
    background: #F47E31;
  }
  
  .condition-card.primary h3 {
    color: white;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .back-pain-approach .approach-grid,
    .back-pain-concerns .concerns-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .back-pain-hero h1 {
      font-size: 32px;
    }
    
    .back-pain-approach .approach-grid,
    .back-pain-concerns .concerns-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .back-pain-hero {
      padding: 80px 0;
    }
    
    .back-pain-hero .hero-cta {
      padding: 12px 25px;
      font-size: 16px;
    }
  }
  @media (max-width: 768px) {
    .conditions-grid {
        padding: 0 20px;
    }
  }
  
  /* Base Animation Styles */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Different animation types */
.fade-in-left {
  transform: translateX(-30px);
}

.fade-in-right {
  transform: translateX(30px);
}

.fade-in-left.animate,
.fade-in-right.animate {
  transform: translateX(0);
}

.zoom-in {
  transform: scale(0.9);
}

.zoom-in.animate {
  transform: scale(1);
}

/* Staggered animations for cards */
.stagger-animation > *:nth-child(1) {
  transition-delay: 0s;
}

.stagger-animation > *:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-animation > *:nth-child(3) {
  transition-delay: 0.2s;
}

.stagger-animation > *:nth-child(4) {
  transition-delay: 0.3s;
}

.stagger-animation > *:nth-child(5) {
  transition-delay: 0.4s;
}

.stagger-animation > *:nth-child(6) {
  transition-delay: 0.5s;
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-15px);}
  60% {transform: translateY(-7px);}
}

.bounce.animate {
  animation: bounce 1s ease;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }
}



/* Footer */
footer {
  background: #1C1C1C;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 40px;
  padding: 0 20px;
  margin-bottom: 40px;
}

.footer-column h2 {
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-column h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-column p, .footer-column a {
  color: #B4B4B4;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.social-links a {
  margin-right: 20px;
  font-size: 20px;
}

.footer-bottom {
  text-align: left;
  padding: 20px;
  color: #B4B4B4;
  border-top: 1px solid #333;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}