     
        :root {
            --font-inter: 'Lora', serif;
            --font-playfair: 'Playfair Display', serif;
            --background: 36 25% 97%;
            --foreground: 222 47% 11%;
            --card: 0 0% 100%;
            --card-foreground: 222 47% 11%;
            --primary: 222 47% 14%;
            --primary-foreground: 45 100% 96%;
            --secondary: 36 20% 95%;
            --secondary-foreground: 222 47% 11%;
            --muted: 36 20% 95%;
            --muted-foreground: 220 9% 46%;
            --accent: 38 72% 44%;
            --accent-foreground: 0 0% 100%;
            --destructive: 0 84.2% 60.2%;
            --destructive-foreground: 0 0% 98%;
            --border: 220 13% 91%;
            --input: 220 13% 91%;
            --ring: 38 72% 44%;
        }
     :root {
        --font-inter: 'Lora', serif;
        --font-playfair: 'Playfair Display', serif;
        --background: 36 25% 97%;
        --foreground: 222 47% 11%;
        --primary: #131d34;
        --primary-foreground: #fffaeb;
        --secondary: 36 20% 95%;
        --muted: 36 20% 95%;
        --muted-foreground: 220 9% 46%;
        --accent: 38 72% 44%;
        --accent-foreground: 0 0% 100%;
        --border: 220 13% 91%;
    }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-inter);
            background: hsl(var(--background));
            color: hsl(var(--foreground));
            line-height: 1.5;
        }

        .font-playfair {
            font-family: var(--font-playfair);
        }

        .font-inter {
            font-family: var(--font-inter);
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid hsl(var(--border) / 0.4);
        }

        .navbar-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: #131d34;
        }

        .navbar-logo img {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            object-fit: cover;
        }

        .navbar-logo span {
            font-weight: 600;
            font-size: 20px;
            letter-spacing: -0.02em;
            color: #131d34;
        }

        .navbar-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .navbar-links a {
            font-size: 14px;
            color: hsl(var(--primary) / 0.6);
            text-decoration: none;
            transition: color 0.2s;
        }

        .navbar-links a:hover {
            color: #131d34;
        }

        .navbar-btn {
            background: white;
            color: #131d34;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 9999px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
        }

        .navbar-btn:hover {
            background: white;
            opacity: 0.9;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #131d34;
            cursor: pointer;
        }

        .mobile-menu {
            display: none;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid hsl(var(--border) / 0.4);
            padding: 24px;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu a {
            display: block;
            padding: 12px 0;
            color: hsl(var(--primary) / 0.7);
            text-decoration: none;
            transition: color 0.2s;
        }

        .mobile-menu a:hover {
            color: #131d34;
        }

        /* Hero Section */
        .hero {
            padding-top: 160px;
            padding-bottom: 96px;
            background: #f8f6f1;
        }

        .hero-content {
            max-width: 896px;
            margin: 0 auto;
            padding: 0 24px;
            text-align: center;
        }

        .hero-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: hsl(var(--accent));
            margin-bottom: 24px;
        }

        .hero-title {
            font-family: var(--font-playfair);
            font-size: 48px;
            font-weight: 700;
            color: #131d34;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .hero-title .italic {
            font-style: italic;
            color: hsl(var(--accent));
        }

        .hero-subtitle {
            color: hsl(var(--muted-foreground));
            font-size: 18px;
            max-width: 672px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Stats Section */
        .stats {
            padding: 64px 24px;
            background: white;
            border-top: 1px solid hsl(var(--border) / 0.4);
            border-bottom: 1px solid hsl(var(--border) / 0.4);
        }

        .stats-content {
            max-width: 1024px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-family: var(--font-playfair);
            font-size: 36px;
            font-weight: 700;
            color: hsl(var(--accent));
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: hsl(var(--muted-foreground));
            letter-spacing: 0.05em;
        }

        /* Story Section */
        .story {
            padding: 112px 24px;
            background: #f8f6f1;
        }

        .story-content {
            max-width: 1152px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 64px;
            align-items: center;
        }

        .story-label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: hsl(var(--accent));
            margin-bottom: 16px;
        }

        .story-title {
            font-family: var(--font-playfair);
            font-size: 40px;
            font-weight: 700;
            color: #131d34;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .story-title .italic {
            font-style: italic;
            color: hsl(var(--accent));
        }

        .story-text {
            color: hsl(var(--muted-foreground));
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .story-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .story-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid hsl(var(--border) / 0.4);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .story-card-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: hsl(var(--accent) / 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .story-card-icon svg {
            width: 20px;
            height: 20px;
            color: hsl(var(--accent));
        }

        .story-card-label {
            font-size: 11px;
            color: hsl(var(--muted-foreground));
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 4px;
        }

        .story-card-value {
            font-weight: 600;
            color: #131d34;
            font-size: 14px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 20px 32px;
            border-radius: 9999px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            text-decoration: none;
            font-family: var(--font-inter);
        }

        .btn-primary {
            background: #131d34;
            color: #fffaeb;
        }

        .btn-primary:hover {
            background:#fffaeb; 
            color: #131d34;
        }

        .btn-primary svg {
            width: 16px;
            height: 16px;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid hsl(var(--border));
            color: #131d34;
        }

        .btn-outline:hover {
            background: hsl(var(--secondary));
        }

        /* Values Section */
        .values {
            padding: 96px 24px;
            background: white;
            border-top: 1px solid hsl(var(--border) / 0.4);
            border-bottom: 1px solid hsl(var(--border) / 0.4);
        }

        .values-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .values-label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: hsl(var(--accent));
            margin-bottom: 16px;
        }

        .values-title {
            font-family: var(--font-playfair);
            font-size: 40px;
            font-weight: 700;
            color: #131d34;
        }

        .values-grid {
            max-width: 1152px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .value-card {
            border-radius: 16px;
            padding: 24px;
            border: 1px solid hsl(var(--border) / 0.4);
            background: #f8f6f1;
            transition: box-shadow 0.3s;
        }

        .value-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .value-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: hsl(var(--accent) / 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .value-icon svg {
            width: 20px;
            height: 20px;
            color: hsl(var(--accent));
        }

        .value-title {
            font-weight: 600;
            color: #131d34;
            margin-bottom: 8px;
            font-size: 16px;
        }

        .value-desc {
            font-size: 14px;
            color: hsl(var(--muted-foreground));
            line-height: 1.6;
        }

        /* CTA Section */
        .cta {
            padding: 96px 24px;
            background: white;
            border-top: 1px solid hsl(var(--border) / 0.4);
        }

        .cta-content {
            max-width: 672px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: hsl(var(--accent));
            margin-bottom: 16px;
        }

        .cta-title {
            font-family: var(--font-playfair);
            font-size: 48px;
            font-weight: 700;
            color: #131d34;
            margin-bottom: 24px;
        }

        .cta-title .italic {
            font-style: italic;
            color: hsl(var(--accent));
        }

        .cta-subtitle {
            color: hsl(var(--muted-foreground));
            font-size: 18px;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
        }

        .btn-lg {
            padding: 24px 40px;
            font-size: 16px;
        }

        /* Responsive */
        @media (max-width: 768px) {

            .navbar-links,
            .navbar-btn {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-title {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .stats-content {
                grid-template-columns: 1fr;
            }

            .story-content {
                grid-template-columns: 1fr;
            }

            .story-title {
                font-size: 32px;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .cta-title {
                font-size: 32px;
            }

            .cta-buttons {
                flex-direction: column;
            }
        } 