.destress-page {
    background-color: var(--color-background);
}

.destress-page .hero-section {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destress-page .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.destress-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.destress-page .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    padding: 2rem;
}

.destress-page .hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.destress-page .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
}

.destress-page .content-section {
    padding: 3rem 2rem;
}

.destress-page .content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.destress-page .intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text);
}

.destress-page .section-title {
    font-family: 'Cinzel', serif;
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.destress-page .program-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.destress-page .program-card {
    background-color: white;
    padding: 0.25rem 1.25rem 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background-color 0.3s ease;
}

/* Override global hover effects */
.destress-page .program-card::before,
.destress-page .program-card::after {
    display: none;
}

.destress-page .program-card:hover {
    transform: none;
    background: linear-gradient(135deg, #e0f0e0 0%, #b0d8b0 100%);
}

.destress-page .program-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--color-text);
    font-size: 0.95rem;
    margin: 0 0 0.4rem 0;
    flex-shrink: 0;
    line-height: 1.2;
}

.destress-page .program-card p {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    font-size: 0.85rem;
    line-height: 1.35;
    margin: 0;
    flex-grow: 1;
}

.destress-page .understanding-section,
.destress-page .ayurvedic-section,
.destress-page .program-section,
.destress-page .approach-section,
.destress-page .journey-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.destress-page .symptoms-list,
.destress-page .approach-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.destress-page .symptoms-list li,
.destress-page .approach-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    position: relative;
    padding-left: 1.5rem;
}

.destress-page .symptoms-list li:before,
.destress-page .approach-list li:before {
    content: "•";
    color: var(--color-primary);
    position: absolute;
    left: 0.5rem;
}

.destress-page .symptoms-list li:last-child,
.destress-page .approach-list li:last-child {
    border-bottom: none;
}

.destress-page .journey-section {
    text-align: center;
}

.destress-page .journey-section p {
    margin-bottom: 0;
}

.destress-page .journey-section .cta-text {
    margin-top: 2rem;
}

@media (max-width: 1200px) {
    .destress-page .program-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .destress-page .hero-section {
        min-height: 450px;
    }

    .destress-page .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .destress-page .hero-subtitle {
        font-size: 1.2rem;
    }

    .destress-page .content-section {
        padding: 2rem 1rem;
    }

    .destress-page .section-title {
        font-size: 1.8rem;
    }

    .destress-page .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .destress-page .program-grid {
        grid-template-columns: 1fr;
    }
} 