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

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
}

.content-section {
    padding: 4rem 2rem;
}

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

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.benefit-description {
    color: var(--color-text-light);
    line-height: 1.6;
}

.image-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.process-section {
    text-align: center;
    margin: 4rem 0;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.process-step h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--color-text);
}

.consultation-section {
    background: white;
    padding: 1.5rem;
    padding-top: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    text-align: center;
}

.consultation-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.consultation-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
}

.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::after {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .content-section {
        padding: 3rem 1rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .consultation-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 2rem;
    }
}

.detox-page #detox-process {
    margin-top: 1rem;
}

.detox-page #detox-process .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.detox-page #detox-process .section-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.detox-page #detox-process .program-includes {
    color: var(--color-primary);
    font-weight: bold;
    text-align: left;
    padding-left: 4rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.detox-page #detox-process .program-list {
    padding-left: 4rem;
    padding-right: 2rem;
    list-style-type: disc;
    font-size: 1rem;
    margin-bottom: 0;
}

.detox-page #detox-process .program-list li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .detox-page #detox-process .program-list {
        padding-left: 2rem;
        padding-right: 1rem;
    }
    
    .detox-page #detox-process .program-includes {
        padding-left: 2rem;
    }
} 