   <style>
        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            /* Earthy, fierce, grounded color palette - leather, candlelight, sacred wood */
            --dark-roast: #4B2E2B;
            --mahogany: #67312D;
            --burnt-sienna: #A0522D;
            --muted-teal: #3D6C66;
            --dusty-rosewood: #8F4F4B;
            --warm-cream: #F5E6D3;
            
            /* Rich text colors */
            --text-charcoal: #2C1F1D;
            --text-warm: #4B2E2B;
            --text-medium: #67312D;
            --ivory: #FEFCF8;
            
            /* Sophisticated shadows with earthy warmth */
            --shadow-warm: 0 4px 20px rgba(75, 46, 43, 0.15);
            --shadow-deep: 0 8px 32px rgba(75, 46, 43, 0.2);
            --shadow-rich: 0 16px 48px rgba(75, 46, 43, 0.25);
        }
        
        body {
            font-family: 'Lato', sans-serif;
            line-height: 1.7;
            color: var(--text-charcoal);
            background: linear-gradient(135deg, var(--warm-cream) 0%, #F0E4D2 100%);
            overflow-x: hidden;
        }
        
        /* Leopard print texture overlay - more subtle and earthy */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(75, 46, 43, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(61, 108, 102, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(143, 79, 75, 0.02) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }
        
        /* Top Banner - Rich and Grounded */
        .top-banner {
            background: linear-gradient(135deg, var(--dusty-rosewood), var(--burnt-sienna));
            color: var(--ivory);
            padding: 1rem 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            text-align: center;
            box-shadow: var(--shadow-deep);
            border-bottom: 2px solid var(--mahogany);
        }
        
        .banner-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
        }
        
        .banner-text {
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            font-family: 'Lato', sans-serif;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .banner-cta {
            background: var(--ivory);
            color: var(--dark-roast);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
            border: 2px solid transparent;
        }
        
        .banner-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            border-color: var(--muted-teal);
            background: var(--warm-cream);
        }

        /* Header - Powerful and Elegant */
        .header {
            position: fixed;
            top: 65px;
            left: 0;
            right: 0;
            background: rgba(245, 230, 211, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 3px solid var(--dark-roast);
            padding: 1.5rem 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header.scrolled {
            padding: 1.25rem 0;
            box-shadow: var(--shadow-deep);
            background: rgba(245, 230, 211, 0.98);
        }
        
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 3rem;
        }
        
        .logo {
            font-family: 'Dancing Script', cursive;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-roast);
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-shadow: 2px 2px 4px rgba(75, 46, 43, 0.2);
        }
        
        .logo:hover {
            color: var(--dusty-rosewood);
            transform: scale(1.05);}
.monogram {
    height: 70px;
    width: auto;
    margin-right: 0px;
    vertical-align: middle;

        }

        .nav-links {
            display: flex;
            gap: 3rem;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--text-warm);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            letter-spacing: 0.8px;
            transition: all 0.3s ease;
            position: relative;
            font-family: 'Lato', sans-serif;
            text-transform: uppercase;
        }
        
        .nav-links a:hover {
            color: var(--muted-teal);
            transform: translateY(-1px);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -6px;
            left: 0;
            background: linear-gradient(90deg, var(--dusty-rosewood), var(--muted-teal));
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* Lead Magnet Button - Magnetic and Bold */
        .lead-magnet-btn {
            background: linear-gradient(135deg, var(--burnt-sienna), var(--mahogany));
            color: var(--ivory);
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-family: 'Lato', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            box-shadow: var(--shadow-warm);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border: 2px solid transparent;
        }
        
        .lead-magnet-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-rich);
            border-color: var(--muted-teal);
            background: linear-gradient(135deg, var(--dusty-rosewood), var(--dark-roast));
        }
        
        /* Hero Section - Passionate and Powerful */
        .hero-section {
            padding-top: 160px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--warm-cream) 0%, #E8D5C4 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 100%;
            height: 200%;
            background: 
                radial-gradient(ellipse at center, rgba(143, 79, 75, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(61, 108, 102, 0.06) 0%, transparent 60%);
            transform: rotate(-15deg);
            z-index: 1;
        }
        
        /* Leopard-inspired pattern overlay */
        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 15% 25%, var(--dark-roast) 2px, transparent 3px),
                radial-gradient(circle at 85% 75%, var(--mahogany) 1.5px, transparent 2px),
                radial-gradient(circle at 45% 85%, var(--muted-teal) 1px, transparent 2px);
            opacity: 0.03;
            z-index: 1;
        }
        
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        /* Hero Image - Rich and Textured */
        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            animation: fadeInLeft 0.8s ease-out 0.6s forwards;
        }
        
        .hero-image::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, var(--burnt-sienna) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0.2;
            z-index: 1;
        }
        
        .hero-image::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, var(--muted-teal) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0.15;
            z-index: 1;
        }
        
        .hero-image img {
            width: 100%;
            max-width: 450px;
            height: auto;
            aspect-ratio: 4/5;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: var(--shadow-rich);
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease;
            border: 4px solid var(--ivory);
        }
        
        .hero-image img:hover {
            transform: translateY(-8px) scale(1.02);
        }
        
        /* Hero Content - Bold Typography */
        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        
        .hero-eyebrow {
            font-size: 1rem;
            font-weight: 500;
            color: var(--dusty-rosewood);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: -1rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
            font-family: 'Lato', sans-serif;
        }
        
        .hero-headline {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1;
            color: var(--text-charcoal);
            letter-spacing: -1px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
            text-shadow: 3px 3px 6px rgba(75, 46, 43, 0.1);
        }
        
        .hero-subheadline {
            font-size: 1.3rem;
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-warm);
            max-width: 500px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.6s forwards;
            font-family: 'Lato', sans-serif;
        }
        
        .hero-cta-container {
            display: flex;
            gap: 2rem;
            align-items: center;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.8s forwards;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--dark-roast) 0%, var(--mahogany) 100%);
            color: var(--ivory);
            padding: 1.25rem 3rem;
            border: none;
            border-radius: 8px;
            font-family: 'Lato', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-deep);
            text-align: center;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border: 3px solid transparent;
        }
        
        .cta-button:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-rich);
            border-color: var(--muted-teal);
            background: linear-gradient(135deg, var(--muted-teal) 0%, var(--dusty-rosewood) 100%);
        }
        
        .cta-secondary {
            color: var(--dark-roast);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            font-family: 'Lato', sans-serif;
            letter-spacing: 0.5px;
        }
        
        .cta-secondary:hover {
            color: var(--muted-teal);
            transform: translateX(5px);
        }
        
        /* Social Proof - Rich and Textured */
        .social-proof {
            background: linear-gradient(135deg, var(--ivory) 0%, var(--warm-cream) 100%);
            padding: 6rem 0;
            border-top: 4px solid var(--rich-brown);
            border-bottom: 4px solid var(--rich-brown);
            position: relative;
        }
        
        .social-proof::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(75, 46, 43, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(61, 108, 102, 0.03) 0%, transparent 50%);
            z-index: 1;
        }
        
        .social-proof-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .social-proof-text {
            font-size: 1rem;
            color: var(--text-medium);
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 4rem;
            font-family: 'Lato', sans-serif;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        
        .stat-item {
            text-align: center;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, var(--warm-cream) 0%, #F0E4D2 100%);
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 3px solid var(--dark-roast);
            box-shadow: var(--shadow-warm);
            position: relative;
            overflow: hidden;
        }
        
        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--dusty-rosewood), var(--muted-teal), var(--burnt-sienna));
        }
        
        .stat-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-rich);
            border-color: var(--muted-teal);
        }
        
        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--dark-roast);
            display: block;
            margin-bottom: 0.75rem;
            text-shadow: 2px 2px 4px rgba(75, 46, 43, 0.1);
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--text-warm);
            font-weight: 500;
            letter-spacing: 1px;
            font-family: 'Lato', sans-serif;
            text-transform: uppercase;
        }
        
        /* Welcome Section - Soulful and Intimate */
        .welcome-section {
            padding: 7rem 0;
            background: linear-gradient(135deg, var(--warm-cream) 0%, #E8D5C4 100%);
            position: relative;
        }
        
        .welcome-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 30% 70%, rgba(143, 79, 75, 0.03) 0%, transparent 60%),
                radial-gradient(circle at 70% 30%, rgba(75, 46, 43, 0.02) 0%, transparent 60%);
            z-index: 1;
        }
        
        .welcome-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 3rem;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .section-eyebrow {
            font-size: 1rem;
            font-weight: 500;
            color: var(--dusty-rosewood);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            font-family: 'Lato', sans-serif;
        }
        
        .welcome-headline {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            color: var(--text-charcoal);
            margin-bottom: 2.5rem;
            line-height: 1.1;
            letter-spacing: -1px;
            text-shadow: 3px 3px 6px rgba(75, 46, 43, 0.1);
        }
        
        .accent-text {
            color: var(--muted-teal);
            font-weight: 800;
            position: relative;
            font-family: 'Dancing Script', cursive;
            font-size: 1.1em;
        }
        
        .accent-text::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--dusty-rosewood), var(--muted-teal));
            border-radius: 2px;
            opacity: 0.6;
        }
        
        .welcome-content {
            font-size: 1.3rem;
            line-height: 1.8;
            color: var(--text-warm);
            max-width: 800px;
            margin: 0 auto 4rem;
            font-family: 'Lato', sans-serif;
            font-weight: 400;
        }
        
        .content-card {
            background: linear-gradient(135deg, rgba(255, 255, 240, 0.9) 0%, rgba(245, 230, 211, 0.9) 100%);
            border-radius: 16px;
            padding: 4rem;
            margin-top: 3rem;
            box-shadow: var(--shadow-deep);
            border: 3px solid var(--dark-roast);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        
        .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--dusty-rosewood), var(--muted-teal), var(--burnt-sienna), var(--mahogany));
            border-radius: 16px 16px 0 0;
        }
        
        .content-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-rich);
            border-color: var(--muted-teal);
        }
        
        .content-card p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-warm);
            margin-bottom: 2rem;
            font-family: 'Lato', sans-serif;
            font-weight: 400;
        }
        
        .content-card p:last-child {
            margin-bottom: 0;
        }
        
        /* Lead Magnet Section - Magnetic and Powerful */
        .lead-magnet-section {
            padding: 7rem 0;
            background: linear-gradient(135deg, var(--dark-roast) 0%, var(--mahogany) 50%, var(--burnt-sienna) 100%);
            color: var(--ivory);
            position: relative;
            overflow: hidden;
        }
        
        .lead-magnet-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(ellipse at center, rgba(255, 255, 240, 0.05) 0%, transparent 70%);
            transform: rotate(15deg);
        }
        
        .lead-magnet-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255, 255, 240, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(61, 108, 102, 0.04) 0%, transparent 50%);
            z-index: 1;
        }
        
        .lead-magnet-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 3rem;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .lead-magnet-headline {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.1;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
        }
        
        .lead-magnet-description {
            font-size: 1.3rem;
            line-height: 1.8;
            opacity: 0.95;
            margin-bottom: 3.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-family: 'Lato', sans-serif;
            font-weight: 400;
        }
        
        .lead-magnet-cta {
            background: linear-gradient(135deg, var(--dusty-rosewood), var(--muted-teal));
            color: var(--ivory);
            padding: 1.5rem 4rem;
            border: none;
            border-radius: 10px;
            font-family: 'Lato', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            display: inline-block;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 3px solid transparent;
        }
        
        .lead-magnet-cta:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
            border-color: var(--ivory);
            background: linear-gradient(135deg, var(--burnt-sienna), var(--dusty-rosewood));
        }
        
        /* Footer - Rich and Grounded */
        .footer {
            background: linear-gradient(135deg, var(--mahogany) 0%, var(--dark-roast) 100%);
            color: var(--warm-cream);
            border-top: 4px solid var(--dusty-rosewood);
            padding: 5rem 0 2rem;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 30% 70%, rgba(143, 79, 75, 0.05) 0%, transparent 60%);
            z-index: 1;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            position: relative;
            z-index: 2;
        }
        
        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }
        
        .footer-brand h3 {
            font-family: 'Dancing Script', cursive;
            font-size: 2.5rem;
            color: var(--ivory);
            margin-bottom: 1.5rem;
            font-weight: 600;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .footer-brand p {
            color: var(--warm-cream);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-family: 'Lato', sans-serif;
            font-weight: 400;
            opacity: 0.9;
        }
        
        .footer-section h4 {
            font-weight: 600;
            color: var(--ivory);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            font-family: 'Lato', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .footer-links a {
            color: var(--warm-cream);
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Lato', sans-serif;
            font-weight: 400;
            opacity: 0.9;
        }
        
        .footer-links a:hover {
            color: var(--ivory);
            opacity: 1;
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--dusty-rosewood), var(--muted-teal));
            border-radius: 8px;
            color: var(--ivory);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .social-links a:hover {
            background: linear-gradient(135deg, var(--burnt-sienna), var(--dusty-rosewood));
            color: var(--ivory);
            transform: translateY(-3px) scale(1.1);
            border-color: var(--ivory);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        
        .footer-bottom {
            border-top: 2px solid var(--dusty-rosewood);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--warm-cream);
            font-size: 0.95rem;
            font-family: 'Lato', sans-serif;
            opacity: 0.9;
        }
.footer-logo {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-logo:hover {
    color: var(--dusty-rosewood);
}
        
        /* Powerful Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Mobile Navigation */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        
        .mobile-menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--dark-roast);
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .mobile-nav {
            display: none;
            position: fixed;
            top: 100%;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, var(--warm-cream) 0%, #F0E4D2 100%);
            box-shadow: var(--shadow-deep);
            border-top: 3px solid var(--dark-roast);
            z-index: 999;
        }
        
        .mobile-nav.active {
            display: block;
            animation: slideDown 0.3s ease-out;
        }
        
        .mobile-nav-links {
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .mobile-nav-links a {
            color: var(--text-charcoal);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.2rem;
            padding: 1rem 0;
            border-bottom: 2px solid rgba(75, 46, 43, 0.1);
            font-family: 'Lato', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-links a:hover {
            color: var(--muted-teal);
            border-bottom-color: var(--muted-teal);
            transform: translateX(10px);
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .header-container,
            .hero-container,
            .social-proof-container,
            .welcome-container,
            .lead-magnet-container,
            .footer-container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
            
            .hero-container {
                gap: 4rem;
            }
            
            .hero-headline {
                font-size: 4rem;
            }
        }
        
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                gap: 4rem;
                text-align: center;
            }
            
            .hero-headline {
                font-size: 3.5rem;
            }
            
            .hero-subheadline {
                max-width: 100%;
            }
            
            .hero-cta-container {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            .welcome-headline {
                font-size: 3.2rem;
            }
            
            .lead-magnet-headline {
                font-size: 3rem;
            }
            
            .footer-main {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .banner-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            .header-container,
            .hero-container,
            .social-proof-container,
            .welcome-container,
            .lead-magnet-container,
            .footer-container {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
            
            .hero-section {
                padding-top: 140px;
                min-height: auto;
                padding-bottom: 4rem;
            }
            
            .hero-headline {
                font-size: 3rem;
            }
            
            .hero-subheadline {
                font-size: 1.2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .welcome-section,
            .lead-magnet-section {
                padding: 5rem 0;
            }
            
            .welcome-headline {
                font-size: 2.8rem;
            }
            
            .content-card {
                padding: 3rem;
            }
            
            .lead-magnet-headline {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .logo {
                font-size: 2rem;
            }
            
            .hero-headline {
                font-size: 2.5rem;
            }
            
            .welcome-headline {
                font-size: 2.3rem;
            }
            
            .lead-magnet-headline {
                font-size: 2rem;
            }
            
            .content-card {
                padding: 2rem;
            }
            
            .cta-button,
            .lead-magnet-cta {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
<style>
/* Chat Message Styles */
.user-message {
    background: rgba(61, 108, 102, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 4px solid var(--muted-teal);
    font-size: 1rem;
    line-height: 1.5;
}

.bot-message {
    background: rgba(160, 82, 45, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 4px solid var(--burnt-sienna);
    font-size: 1rem;
    line-height: 1.5;
}

.typing {
    font-style: italic;
    opacity: 0.7;
}

.error {
    background: rgba(255, 0, 0, 0.1);
    border-left-color: red;
}

/* Fix input text size */
#user-input {
    font-size: 1rem !important;
    line-height: 1.4 !important;
}

/* Make sure chat messages are readable */
#chat-messages {
    font-size: 1rem;
    line-height: 1.5;
}
</style>
  <div class="hero-cta-container">
                <a href="conversation.html" class="cta-button">Begin Conversation</a>
            </div>


        }
    </style>
