:root {
    --white: #FFFFFF;
    --blue-light: #5AA9E6;
    --green-hope: #52B788;
    --gold-soft: #E9C46A;
    --gray-light: #F8F9FA;
    --gray-text: #4A4A4A;
    --coral-cta: #FF7F50;
    --font-modern: 'Poppins', sans-serif;
    --font-emotional: 'Merriweather', serif;
}

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

body {
    font-family: var(--font-modern);
    color: var(--gray-text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, .emotional-text {
    font-family: var(--font-emotional);
}

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

/* Header & Nav */
header {
    padding: 20px 0;
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-light);
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--gray-text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--blue-light);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    display: flex;
    align-items: center;
    min-height: 90vh;
}

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

.hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: fadeIn 1.5s ease-out;
}

.hero-image img {
    width: 100%;
    display: block;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--blue-light);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--gray-text);
}

.btn-group {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

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

/* Storytelling Section */
.story {
    padding: 100px 0;
    background-color: var(--white);
}

.story-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
}

.story-text p {
    margin-bottom: 25px;
}

/* Progress Bar */
.progress-container {
    background-color: var(--gray-light);
    padding: 50px;
    border-radius: 30px;
    margin: 50px 0;
}

.progress-bar-outer {
    width: 100%;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.progress-bar-inner {
    height: 100%;
    background: linear-gradient(90deg, var(--blue-light), var(--green-hope));
    width: 0%;
    transition: width 2s ease-in-out;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

/* Cards Section */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Footer */
footer {
    padding: 50px 0;
    background-color: var(--gray-light);
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .btn-group {
        flex-direction: column;
    }
}
