/* Hero Section */
  .dry-needling-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #357abd 100%);
    color: white;
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
  }

  .dry-needling-hero .container {
    position: relative;
    z-index: 1;
  }

  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  }

  .hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
  }

  .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
  }

  .hero-cta-btn {
    background: white;
    color: var(--primary-color);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    color: var(--primary-color);
  }

  /* What Is Section */
  .what-is-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
  }

  .section-header p {
    font-size: 1.2rem;
    color: var(--secondary-color);
  }

  .content-box {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary-color);
  }

  .content-box p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .content-box p:last-child {
    margin-bottom: 0;
  }

  .highlight-box {
    background: linear-gradient(135deg, #e8f4ff 0%, white 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin-top: 30px;
  }

  .highlight-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
  }

  .highlight-box ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
  }

  .highlight-box li {
    padding: 10px 0 10px 35px;
    position: relative;
    font-size: 1.1rem;
    color: #555;
  }

  .highlight-box li::before {
    content: '\f26a';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
  }

  /* Benefits Grid */
  .benefits-section {
    padding: 80px 0;
    background: white;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
  }

  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(71, 159, 248, 0.2);
  }

  .benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #357abd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
  }

  .benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
  }

  .benefit-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
  }

  /* Needles Section */
  .needles-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
  }

  .needles-content {
    max-width: 1000px;
    margin: 0 auto;
  }

  .needles-info-box {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
  }

  .needles-info-box h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .needles-info-box p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .safety-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .safety-badge {
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  /* Conditions Section */
  .conditions-section {
    padding: 80px 0;
    background: white;
  }

  .conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .condition-item {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
  }

  .condition-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(71, 159, 248, 0.15);
  }

  .condition-check {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
  }

  .condition-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

  /* FAQ Section */
  .faq-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
  }

  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary-color);
  }

  .faq-question {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .faq-answer {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
  }

  /* Pricing Section */
  .pricing-section {
    padding: 80px 0;
    background: white;
  }

  .insurance-note {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    background: linear-gradient(135deg, #fff3cd 0%, #fffaeb 100%);
    padding: 25px 35px;
    border-radius: 15px;
    border-left: 5px solid #ffc107;
  }

  .insurance-note h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #856404;
    margin-bottom: 10px;
  }

  .insurance-note p {
    font-size: 1.1rem;
    color: #856404;
    margin: 0;
  }

  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .pricing-card {
    background: white;
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #e9ecef;
  }

  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(71, 159, 248, 0.2);
    border-color: var(--primary-color);
  }

  .pricing-header {
    margin-bottom: 25px;
  }

  .pricing-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .pricing-subtitle {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
  }

  .pricing-price {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    margin: 20px 0;
    line-height: 1;
  }

  .pricing-price sup {
    font-size: 2rem;
    font-weight: 600;
  }

  .pricing-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
  }

  .pricing-details p {
    font-size: 1rem;
    color: #555;
    margin: 5px 0;
  }

  .pricing-cta {
    display: block;
    background: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 25px;
    transition: all 0.3s ease;
  }

  .pricing-cta:hover {
    background: #357abd;
    color: white;
    transform: scale(1.05);
  }

/* Responsive */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.2rem;
    }

    .hero-subtitle {
      font-size: 1.1rem;
    }

    .section-header h2 {
      font-size: 2rem;
    }

    .content-box,
    .needles-info-box {
      padding: 30px;
    }

    .benefits-grid,
    .conditions-grid,
    .pricing-cards {
      grid-template-columns: 1fr;
    }

    .pricing-price {
      font-size: 3rem;
    }

    .safety-badges {
      justify-content: center;
    }
  }