:root {
    --bg-color: #fdfbf7;
    --text-color: #4a4a4a;
    --accent-color: #81c784;
    /* Soft Sage Green */
    --accent-dark: #519657;
    --soft-pink: #f8bbd0;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--body-font);
    line-height: 1.7;
}

h1,
h2,
h3 {
    font-family: var(--heading-font);
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0 5%;
    gap: 4rem;
    padding-top: 100px;
    /* Navbar height */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(129, 199, 132, 0.1) 0%, rgba(253, 251, 247, 0) 70%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-tagline {
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 80vh;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(129, 199, 132, 0.3);
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: #fff;
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(129, 199, 132, 0.1);
    border-radius: 50%;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Emotional Connection Section */
.emotional-section {
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quote-box {
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.05);
    font-family: serif;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 4rem 5%;
    text-align: center;
}

footer p {
    opacity: 0.7;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 120px;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .emotional-section {
        grid-template-columns: 1fr;
    }
}