
.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
}
/* Typography Block - Reused from About */
.assessment-info-section {
    padding: 60px 0;
}

.assessment-info-section .section-title {
    margin-bottom: 2rem;
}

.assessment-info-section .info-content {
    max-width: 800px;
    margin: 0 auto;
}

.assessment-info-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* How It Works Steps - Reusing existing step/timeline */
.how-it-works-section {
    padding: 60px 0;
    
}

.step-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c6e49 0%, #247045 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

/* Assessment Areas Grid - Reusing therapy card grid */
.assessment-areas-section {
    padding: 60px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-card {
     background: white;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.area-card:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.area-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Who Should Section - Simple 2-column */
.who-should-section {
    padding: 60px 0;
    
}

.two-column-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.column-content h3 {
    color: #2c6e49;
    margin-bottom: 1.5rem;
}

.column-content ul {
    list-style: none;
    padding: 0;
}

.column-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.column-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c6e49;
    font-weight: bold;
}

.column-content .negative li:before {
    content: "✗";
    color: #dc3545;
}

/* Booking Options - Most Important Section */
.booking-options-section {
    padding: 80px 0;
}

.booking-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.booking-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.booking-card.featured {
    border-color: #2c6e49;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.booking-card:hover {
    border-color: #2c6e49;
    transform: translateY(-5px);
}

.booking-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.booking-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.booking-card .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.booking-disclaimer {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

/* Trust Strip - Reusing icon row */
.trust-strip-section {
    padding: 60px 0;
}

.trust-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    text-align: center;
}

.trust-item {
    flex: 1;
    min-width: 200px;
}

.trust-icon {
    font-size: 2.5rem;
    color: #2c6e49;
    margin-bottom: 1rem;
}

/* FAQ Section - Reusing accordion */
.faq-section {
    padding: 60px 0;
    background: white;
}

/* CTA Band - Reusing CTA strip */
.cta-band {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c6e49 0%, #2c6e49 100%);
    color: white;
    text-align: center;
}

.cta-band h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .assessment-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .assessment-hero-content .subline {
        font-size: 1.1rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-buttons .btn-primary,
    .hero-cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .step-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .book-assessment-hero {
        padding: 60px 0 40px;
    }
    
    .areas-grid,
    .two-column-grid {
        grid-template-columns: 1fr;
    }
}