:root {
    --primary-color: #004e92;
    /* Deep Blue */
    --secondary-color: #0084ff;
    /* Lighter Blue */
    --accent-color: #ffb347;
    /* Warm Orange/Yellow */
    --text-color: #333;
    --light-bg: #f4f9ff;
    --white: #ffffff;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Header */
.site-header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.site-header nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--text-color);
}

.nav-link:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--accent-color);
    color: #003366;
    /* Darker text for contrast on yellow/orange */
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fcefe9 0%, #f4f9ff 100%);
    padding: 80px 0;
}

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

.tagline-highlight {
    display: inline-block;
    background: #e3f2fd;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #555;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

.cta-group {
    display: flex;
    gap: 15px;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.problem-section h3 {
    font-size: 2rem;
    margin-bottom: 50px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.problem-card {
    padding: 30px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: transform 0.3s;
}

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

.problem-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Solution/About Section */
.solution-section {
    padding: 80px 0;
    background-color: #004e92;
    color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.solution-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.solution-columns {
    display: flex;
    align-items: center;
    gap: 40px;
}


.solution-image {
    flex: 0 0 300px;
    /* Fixed width for image container */
}

.solution-image img {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    /* Drop shadow follows the non-transparent pixels (better for cutouts) */
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.solution-logo {
    max-width: 320px;
    margin: 0 auto 18px auto;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

.solution-character {
    max-width: 320px;
    margin: 0 auto;
}


.solution-section h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    /* Keep heading centered for balance */
}

.solution-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.benefit-list {
    list-style: none;
    margin-top: 30px;
    text-align: left;
    display: inline-block;
    /* Keeps the list tight if centered, but now we are left aligning */
    display: block;
    /* Switch to block to fill width */
}

.benefit-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
}

/* Preview Section */
.preview-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fcfcfc;
}

.preview-section h3 {
    font-size: 2rem;
    margin-bottom: 50px;
}

.section-subtitle {
    margin-bottom: 40px;
    color: #666;
    font-style: italic;
}

.preview-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.preview-item img {
    max-width: 100%;
    width: 900px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: transform 0.3s;
}

.preview-item img:hover {
    transform: scale(1.02);
}

/* Parents Section */
.parents-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.parents-section h3 {
    font-size: 2rem;
    margin-bottom: 50px;
}

.parents-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.parents-content h3 {
    text-align: center;
}

.parents-section blockquote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-color);
    margin-top: 40px;
    position: relative;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0 100px;
    text-align: center;
}

.pricing-section h3 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    /* Align items vertically */
}

.pricing-card {
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 20px;
    background: var(--white);
    width: 300px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #666;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge.popular {
    background: var(--accent-color);
    color: #003366;
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.pricing-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
}

.guarantee {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #777;
}

.guarantee a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Footer */
footer {
    background: #333;
    color: #aaa;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .cta-group {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .solution-columns {
        flex-direction: column;
        text-align: center;
        display: flex;
    }

    .solution-content .solution-text,
    .solution-content h3 {
        text-align: center;
    }

    .solution-image {
        flex: auto;
        width: 250px;
        margin: 0 auto;
    }

    .solution-logo {
        max-width: 250px;
        margin-bottom: 14px;
    }

    .solution-character {
        max-width: 250px;
    }
}