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

        body {
            font-family: Helvetica, Arial, sans-serif;
            background: linear-gradient(180deg, #f8f6f0 0%, #e8e4d9 100%);
            min-height: 100vh;
            color: #2c2415;
        }

        /* Global heading styles using Outfit */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
            margin-bottom: 0.5em;
            line-height: 1.2;
        }

        /* Header */
        .header {
            background: rgba(248, 246, 240, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #d4af37;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0.75rem 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-link {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c2415;
            letter-spacing: 3px;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .back-btn {
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
            border: none;
            color: #2c2415;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
        }

        .back-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
        }

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* Hero Section */
        .hero-section {
            text-align: center;
            padding: 3rem 0;
            margin-bottom: 4rem;
            background: linear-gradient(135deg, rgba(107, 207, 127, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(107, 207, 127, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
            50% { transform: scale(1.1) rotate(180deg); opacity: 0.1; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #2c2415 0%, #d4af37 50%, #2c2415 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 3px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #5a4d37;
            margin-bottom: 2rem;
            line-height: 1.6;
            font-weight: 400;
        }

        .hero-highlight {
            background: rgba(212, 175, 55, 0.2);
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            color: #2c2415;
            font-weight: 600;
        }

        /* Problem Section */
        .problem-section {
            margin-bottom: 4rem;
            background: rgba(204, 102, 102, 0.05);
            border-left: 4px solid #cc6666;
            padding: 3rem 2rem;
            border-radius: 12px;
        }

        .problem-title {
            font-size: 2.5rem;
            color: #cc6666;
            margin-bottom: 2rem;
            text-align: center;
        }

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

        .problem-card {
            background: rgba(248, 246, 240, 0.8);
            padding: 2rem;
            border-radius: 12px;
            border: 2px solid #e8e4d9;
        }

        .problem-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #cc6666;
        }

        .problem-card-title {
            font-size: 1.3rem;
            color: #2c2415;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .problem-card-text {
            color: #5a4d37;
            line-height: 1.6;
        }

        /* Solution Section */
        .solution-section {
            margin-bottom: 4rem;
            background: rgba(107, 207, 127, 0.05);
            border-left: 4px solid #6bcf7f;
            padding: 3rem 2rem;
            border-radius: 12px;
        }

        .solution-title {
            font-size: 2.5rem;
            color: #4a9d5f;
            margin-bottom: 2rem;
            text-align: center;
        }

        .transformation-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 2rem;
            align-items: center;
            margin: 3rem 0;
        }

        .before-after {
            background: rgba(248, 246, 240, 0.8);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
        }

        .before {
            border: 2px solid #cc6666;
        }

        .after {
            border: 2px solid #6bcf7f;
        }

        .before-after-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .before .before-after-title {
            color: #cc6666;
        }

        .after .before-after-title {
            color: #4a9d5f;
        }

        .arrow {
            font-size: 3rem;
            color: #d4af37;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
            40% { transform: translateX(10px); }
            60% { transform: translateX(5px); }
        }

        .feature-list {
            list-style: none;
            text-align: left;
        }

        .feature-list li {
            padding: 0.5rem 0;
            color: #5a4d37;
            position: relative;
            padding-left: 2rem;
        }

        .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #6bcf7f;
            font-weight: 700;
            font-size: 1.2rem;
        }

        /* Value Props Section */
        .value-props {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-card {
            background: rgba(248, 246, 240, 0.9);
            border: 2px solid #6bcf7f;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(107, 207, 127, 0.2);
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #6bcf7f;
        }

        .value-title {
            font-size: 1.4rem;
            color: #2c2415;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .value-description {
            color: #5a4d37;
            line-height: 1.6;
        }

        /* Video Section */
        .video-section {
            text-align: center;
            margin: 4rem 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(107, 207, 127, 0.1) 100%);
            padding: 3rem 2rem;
            border-radius: 12px;
            border: 2px solid #d4af37;
        }

        .video-title {
            font-size: 2rem;
            color: #2c2415;
            margin-bottom: 1rem;
        }

        .video-placeholder {
            background: rgba(248, 246, 240, 0.8);
            border-radius: 12px;
            padding: 4rem 2rem;
            margin: 2rem 0;
        }

        .video-icon {
            font-size: 4rem;
            color: #d4af37;
            margin-bottom: 1rem;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, rgba(107, 207, 127, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
            border-radius: 20px;
            border: 2px solid #6bcf7f;
        }

        .cta-title {
            font-size: 2.5rem;
            color: #2c2415;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .cta-subtitle {
            font-size: 1.3rem;
            color: #5a4d37;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btn {
            padding: 1.5rem 4rem;
            background: linear-gradient(135deg, #6bcf7f 0%, #4a9d5f 100%);
            border: none;
            color: white;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: 2px;
            transition: all 0.4s ease;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(107, 207, 127, 0.4);
            position: relative;
            overflow: hidden;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .cta-btn:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 35px rgba(107, 207, 127, 0.5);
        }

        .cta-btn:hover::before {
            left: 100%;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-content {
                padding: 1rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .transformation-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .arrow {
                transform: rotate(90deg);
            }

            .problem-grid,
            .value-props {
                grid-template-columns: 1fr;
            }
        }