.weight-loss-page .hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

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

.weight-loss-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.weight-loss-page .hero-content {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.weight-loss-page .hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.weight-loss-page .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

.weight-loss-page .content-section {
    padding: 2rem 2rem;
    background: white;
}

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

.weight-loss-page .intro-block {
    margin-bottom: 2rem;
}

.weight-loss-page .desire-block,
.weight-loss-page .approach-block {
    margin-bottom: 1rem;
}

.weight-loss-page h2 {
    font-family: 'Cinzel', serif;
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.weight-loss-page p {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0.5rem;
}

.weight-loss-page .benefits-block {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.weight-loss-page .benefits-list {
    list-style: none;
    padding: 0;
}

.weight-loss-page .benefits-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.weight-loss-page .benefits-list li span.highlight {
    color: #8B4513;
}

.weight-loss-page .benefits-list li:last-child {
    border-bottom: none;
}

.weight-loss-page .qa-section {
    margin-bottom: 2rem;
}

.weight-loss-page .qa-block {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.weight-loss-page .qa-block ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin: 0.5rem 0;
}

.weight-loss-page .qa-block li {
    font-family: 'Inter', sans-serif;
    color: #333;
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.weight-loss-page .personalization-section {
    background: var(--color-primary);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.weight-loss-page .personalization-section h2 {
    color: white;
}

.weight-loss-page .personalization-section p {
    color: white;
    opacity: 0.9;
}

.weight-loss-page .program-includes {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.weight-loss-page .program-includes ul {
    list-style-type: none;
    padding: 0;
}

.weight-loss-page .program-includes li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-family: 'Inter', sans-serif;
    color: #333;
    position: relative;
    padding-left: 2rem;
}

.weight-loss-page .program-includes li:before {
    content: "•";
    color: var(--color-primary);
    position: absolute;
    left: 0.5rem;
}

.weight-loss-page .program-includes li:last-child {
    border-bottom: none;
}

.weight-loss-page .conclusion-section {
    text-align: center;
    padding: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.weight-loss-page .conclusion-section h2 {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .weight-loss-page .hero-title {
        font-size: 2rem;
    }

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

    .weight-loss-page h2 {
        font-size: 1.5rem;
    }

    .weight-loss-page .content-section {
        padding: 1rem;
    }

    .weight-loss-page .qa-block,
    .weight-loss-page .benefits-block,
    .weight-loss-page .program-includes {
        padding: 1rem;
    }
} 