/* BetterHelp Page Specific Styles */
.betterhelp-hero {
    background-color: #2c3e50;
    color: white;
}

.betterhelp-hero h1,
.betterhelp-hero p {
    color: white;
}

/* Benefits Section */
.benefits {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 5%;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    padding: 4rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.pricing-container {
    max-width: 400px;
    margin: 3rem auto;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.price {
    font-size: 2.5rem;
    color: #3498db;
    margin: 1rem 0;
}

.price-period {
    color: #666;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    margin: 0.5rem 0;
    color: #666;
}

.pricing-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 5%;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .benefits-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .benefit-card,
    .step,
    .pricing-card,
    .faq-item {
        margin-bottom: 1rem;
    }
} 