:root {
            --primary-tan: #D4A574;
            --warm-cream: #FAF7F2;
            --deep-forest: #2C4A3E;
            --soft-sage: #8FA88E;
            --terracotta: #C96547;
            --text-dark: #2A2A2A;
            --text-light: #666;
        }

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

        body {
            font-family: 'Outfit', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: var(--warm-cream);
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            position: relative;
            background: linear-gradient(135deg, var(--deep-forest) 0%, #3a5f50 100%);
            padding: 120px 20px 80px;
            text-align: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(143, 168, 142, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: var(--warm-cream);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeIn 1s ease-out 0.2s backwards;
        }

        .hero h1 {
            font-family: 'Covered By Your Grace', cursive;
            font-size: 3.5rem;
            color: var(--warm-cream);
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease-out 0.3s backwards;
        }

        .hero-tagline {
            font-size: 1.4rem;
            color: var(--primary-tan);
            font-weight: 300;
            margin-bottom: 15px;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .hero-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease-out 0.5s backwards;
        }

        /* Wave Divider */
        .wave-divider {
            position: relative;
            height: 80px;
            background: var(--deep-forest);
        }

        .wave-divider svg {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 80px;
        }

        /* Main Content Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Features Section */
        .features-section {
            padding: 80px 20px;
            background: var(--warm-cream);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-family: 'Covered By Your Grace', cursive;
            font-size: 2.5rem;
            color: var(--deep-forest);
            margin-bottom: 10px;
        }

        .section-title p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.6s ease-out backwards;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-tan), var(--terracotta));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: inline-block;
            animation: bounce 2s infinite;
        }

        .feature-card:nth-child(1) .feature-icon { animation-delay: 0s; }
        .feature-card:nth-child(2) .feature-icon { animation-delay: 0.2s; }
        .feature-card:nth-child(3) .feature-icon { animation-delay: 0.4s; }

        .feature-card h3 {
            font-size: 1.4rem;
            color: var(--deep-forest);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Story Section */
        .story-section {
            background: linear-gradient(135deg, #f5f0e8 0%, var(--warm-cream) 100%);
            padding: 80px 20px;
            position: relative;
        }

        .story-section::before {
            content: '🐾';
            position: absolute;
            font-size: 120px;
            opacity: 0.05;
            top: 40px;
            right: 10%;
            transform: rotate(15deg);
        }

        .story-content {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .story-content::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(135deg, var(--primary-tan), var(--terracotta), var(--soft-sage));
            border-radius: 20px;
            z-index: -1;
            opacity: 0.3;
        }

        .story-icon {
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 20px;
        }

        .story-content h2 {
            font-family: 'Covered By Your Grace', cursive;
            font-size: 2.2rem;
            color: var(--deep-forest);
            text-align: center;
            margin-bottom: 30px;
        }

        .story-content p {
            color: var(--text-dark);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .story-content p:last-child {
            margin-bottom: 0;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 20px;
            background: var(--deep-forest);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: -200px;
            right: -100px;
            animation: float 6s ease-in-out infinite;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(143, 168, 142, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -150px;
            left: -50px;
            animation: float 8s ease-in-out infinite;
            animation-delay: 1s;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-family: 'Covered By Your Grace', cursive;
            font-size: 3rem;
            color: var(--warm-cream);
            margin-bottom: 20px;
        }

        .cta-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--terracotta);
            color: white;
            box-shadow: 0 10px 30px rgba(201, 101, 71, 0.3);
        }

        .btn-primary:hover {
            background: #b5573d;
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(201, 101, 71, 0.4);
        }

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

        .btn-secondary:hover {
            background: var(--primary-tan);
            color: var(--deep-forest);
            transform: translateY(-2px);
        }

        /* Stats Section */
        .stats-section {
            background: var(--warm-cream);
            padding: 60px 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-family: 'Covered By Your Grace', cursive;
            font-size: 3.5rem;
            color: var(--terracotta);
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 1.1rem;
        }

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

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-tagline {
                font-size: 1.2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .story-content {
                padding: 30px 25px;
            }

            .cta-content h2 {
                font-size: 2.2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .btn {
                width: 100%;
            }
        }