:root {
    --bg-color: #F9F7F2;
    /* Beige */
    --text-color: #3D405B;
    /* Dark Brown */
    --accent-primary: #E07A5F;
    /* Terracotta */
    --accent-secondary: #81B29A;
    /* Sage Green */
    --white: #FFFFFF;
    --soft-shadow: 0 10px 30px rgba(61, 64, 91, 0.08);
    --border-radius: 24px;
}

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

body {
    font-family: 'Lato', 'Zen Old Mincho', serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Zen Old Mincho', serif;
    letter-spacing: 0.05em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Organic Shapes & Backgrounds */
.blob {
    position: absolute;
    z-index: -1;
    filter: blur(40px);
    opacity: 0.6;
}

.blob-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: var(--accent-secondary);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: float 10s infinite ease-in-out;
}

.blob-2 {
    bottom: 10%;
    left: -50px;
    width: 300px;
    height: 300px;
    background-color: var(--accent-primary);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.3;
    animation: float 12s infinite ease-in-out reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, 20px) rotate(5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Header / Hero */
header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #6d6f7c;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: var(--soft-shadow);
    transition: all 0.5s ease;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-secondary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-primary);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 122, 95, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 122, 95, 0.5);
}

/* Features Section */
#features {
    padding: 8rem 2rem;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--soft-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: rgba(129, 178, 154, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-secondary);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Benefits Section (Image + Text layout) */
#benefits {
    padding: 8rem 2rem;
    background-color: var(--white);
    border-radius: 50px 50px 0 0;
}

.benefit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6rem;
    gap: 4rem;
}

.benefit-row:last-child {
    margin-bottom: 0;
}

.benefit-row:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.benefit-visual {
    flex: 1;
    background: #f0ebe4;
    height: 350px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Zen Old Mincho';
    font-size: 1.5rem;
    color: rgba(61, 64, 91, 0.3);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

/* CTA Section */
#cta {
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
}

.cta-box {
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 5rem 2rem;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--bg-color);
}

.cta-box p {
    margin-bottom: 3rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-blob {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-blob-1 {
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
}

.cta-blob-2 {
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 1rem;
        /* Reduce padding on mobile */
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        width: 100%;
        /* Ensure full width */
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image img {
        max-width: 80%;
        margin: 0 auto;
    }

    .benefit-row,
    .benefit-row:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .benefit-visual {
        width: 100%;
        height: 250px;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-blob-1 {
        top: -30px;
        left: -30px;
        width: 150px;
        height: 150px;
    }

    .cta-blob-2 {
        bottom: -30px;
        right: -30px;
        width: 200px;
        height: 200px;
    }
}