:root {
    --bg-color: #FAF8F5;
    --primary-color: #E63946;
    --text-color: #1A1A1A;
    --light-text: #666;
    --white: #FFFFFF;
    --border-radius: 24px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background-color: #fce4ec;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

/* Header & Nav */
header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
}

.nav-icons {
    display: flex;
    gap: 15px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(250, 248, 245, 0.8), rgba(250, 248, 245, 0.8)), 
                url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 16px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

/* Treatments */
.treatments {
    padding: 80px 0;
}

.treatments h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 40px;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.treatment-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: box-shadow 0.3s;
}

.treatment-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-img {
    height: 300px;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
}

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

.treatment-card:hover .card-img img {
    transform: scale(1.05);
}

.treatment-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.shop-now {
    color: var(--text-color);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 2px solid var(--text-color);
}

/* How It Works */
.how-it-works {
    background-color: #f9f4f0;
    padding: 80px 0;
}

.how-it-works h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.step-num {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.step h3 {
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    text-align: center;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius);
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
}

cite {
    font-style: normal;
    color: var(--light-text);
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    padding-bottom: 25px;
    display: none;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-links h4, .footer-newsletter h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: none;
    margin-bottom: 10px;
}

.footer-newsletter button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 14px;
}

.footer-legal a {
    color: #888;
    margin-left: 20px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 40px; }
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* New Sections Styles */
.quiz-section {
    background-color: #fce4ec;
    padding: 100px 0;
}

.quiz-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.quiz-text {
    flex: 1;
}

.quiz-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.quiz-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--light-text);
}

.quiz-image {
    flex: 1;
}

.quiz-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.providers {
    padding: 100px 0;
}

.provider-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.provider-image {
    flex: 1;
}

.provider-image img {
    width: 100%;
    border-radius: 16px;
}

.provider-info {
    flex: 1.5;
}

.provider-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.blog-preview {
    padding: 100px 0;
}

.blog-preview h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 40px;
}

.blog-card {
    display: flex;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.blog-img {
    flex: 1;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details {
    flex: 1.5;
    padding: 40px;
}

.category {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.blog-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .quiz-container, .provider-content, .blog-card {
        flex-direction: column;
        gap: 30px;
    }
    .quiz-text h2 { font-size: 32px; }
}
