    :root {
        --burgundy: #800020;
        --burgundy-dark: #5c0017;
        --blush: #FDF2F5;
        --blush-light: #FFFAFB;
        --text-dark: #1a1a1a;
        --text-gray: #666666;
        --white: #ffffff;
        --border: #e5e5e5;
        
        --font-main: 'Outfit', sans-serif;
        --font-serif: 'Playfair Display', serif;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-main);
        color: var(--text-dark);
        line-height: 1.6;
        background-color: var(--white);
        -webkit-font-smoothing: antialiased;
    }

    /* Typography */
    h1, h2, h3, h4 {
        font-weight: 500;
        line-height: 1.2;
        color: var(--text-dark);
    }

    .headline {
        font-family: var(--font-serif);
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1rem;
    }

    .eyebrow {
        display: inline-block;
        font-size: 0.875rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--burgundy);
        margin-bottom: 1rem;
    }

    /* Layout */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .section {
        padding: 6rem 0;
    }

    .bg-blush {
        background-color: var(--blush);
    }

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.875rem 2rem;
        border-radius: 4px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 1px solid transparent;
    }

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

    .btn-primary:hover {
        background-color: var(--burgundy-dark);
        transform: translateY(-2px);
    }

    .btn-outline {
        background-color: transparent;
        border-color: var(--burgundy);
        color: var(--burgundy);
    }

    .btn-outline:hover {
        background-color: var(--burgundy);
        color: var(--white);
    }

    .btn-text {
        background: none;
        color: var(--text-dark);
        padding: 0.875rem 0;
        border-bottom: 1px solid var(--text-dark);
    }

    .btn-text:hover {
        color: var(--burgundy);
        border-color: var(--burgundy);
    }

    .full-width {
        width: 100%;
    }

    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border);
        z-index: 1000;
        padding: 1rem 0;
    }

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

    .logo {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-dark);
        text-decoration: none;
        letter-spacing: -0.02em;
    }

    .logo span {
        color: var(--burgundy);
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
        align-items: center;
    }

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

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

    .mobile-menu-btn {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        background-color: var(--text-dark);
        transition: all 0.3s ease;
    }

    .mobile-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem;
        display: none;
        flex-direction: column;
        gap: 1rem;
        z-index: 999;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        text-decoration: none;
        color: var(--text-dark);
        font-size: 1.1rem;
    }

    /* Hero */
    .hero {
        padding: 8rem 0 6rem;
        min-height: 90vh;
        display: flex;
        align-items: center;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .hero-content {
        max-width: 540px;
    }

    .subheadline {
        font-size: 1.125rem;
        color: var(--text-gray);
        margin-bottom: 2.5rem;
        max-width: 480px;
    }

    .hero-actions {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .hero-visual {
        position: relative;
        height: 600px;
    }

    .hero-image-wrapper {
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 8px;
    }

    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Floating Cards */
    .float-card {
        position: absolute;
        background: var(--white);
        padding: 1.25rem 1.5rem;
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 1rem;
        animation: float 3s ease-in-out infinite;
    }

    .card-1 {
        top: 10%;
        left: -10%;
        animation-delay: 0s;
    }

    .card-2 {
        bottom: 15%;
        right: -10%;
        animation-delay: 1.5s;
    }

    .float-icon {
        width: 48px;
        height: 48px;
        background: var(--blush);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--burgundy);
    }

    .float-text {
        display: flex;
        flex-direction: column;
    }

    .stat-number {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-dark);
    }

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

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

    /* Section Header */
    .section-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 4rem;
    }

    .section-desc {
        font-size: 1.125rem;
        color: var(--text-gray);
    }

    /* Steps Grid */
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .step-card {
        padding: 2.5rem;
        border: 1px solid var(--border);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .step-card:hover {
        border-color: var(--burgundy);
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(128, 0, 32, 0.1);
    }

    .step-number {
        font-size: 3rem;
        font-weight: 600;
        color: var(--blush);
        margin-bottom: 1rem;
        font-family: var(--font-serif);
    }

    .step-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .step-card p {
        color: var(--text-gray);
        font-size: 0.95rem;
    }

    /* Split Layout */
    .split-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .split-image {
        overflow: hidden;
        border-radius: 8px;
    }

    .feature-img {
        width: 100%;
        height: auto;
        display: block;
    }

    .split-content h2 {
        margin-bottom: 1.5rem;
    }

    .split-content p {
        color: var(--text-gray);
        margin-bottom: 2rem;
    }

    .feature-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--text-dark);
    }

    .feature-list svg {
        color: var(--burgundy);
        flex-shrink: 0;
    }

    /* Info Grid */
    .info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .contact-card, .details-card {
        padding: 3rem;
        border: 1px solid var(--border);
        border-radius: 8px;
    }

    .contact-card h3, .details-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .form-intro {
        color: var(--text-gray);
        margin-bottom: 2rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        font-size: 0.875rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.875rem;
        border: 1px solid var(--border);
        border-radius: 4px;
        font-family: var(--font-main);
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--burgundy);
    }

    .form-success {
        margin-top: 1rem;
        padding: 1rem;
        background: var(--blush);
        color: var(--burgundy);
        border-radius: 4px;
        text-align: center;
    }

    .form-success.hidden {
        display: none;
    }

    /* Details Card */
    .detail-item {
        display: flex;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .detail-item:last-child {
        margin-bottom: 0;
    }

    .detail-icon {
        width: 48px;
        height: 48px;
        background: var(--blush);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--burgundy);
        flex-shrink: 0;
    }

    .detail-item h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .detail-item p {
        color: var(--text-gray);
        font-size: 0.95rem;
    }

    .detail-item a {
        color: var(--text-gray);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .detail-item a:hover {
        color: var(--burgundy);
    }

    /* Footer */
    footer {
        background: var(--text-dark);
        color: var(--white);
        padding: 3rem 0;
    }

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

    .footer-brand .logo {
        color: var(--white);
    }

    .footer-brand p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }

    .footer-links {
        display: flex;
        gap: 2rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--white);
    }

    /* Responsive */
    @media (max-width: 968px) {
        .hero-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .hero-visual {
            height: 400px;
            order: -1;
        }

        .card-1 {
            left: 5%;
        }

        .card-2 {
            right: 5%;
        }

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

        .split-layout {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

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

        .nav-links {
            display: none;
        }

        .mobile-menu-btn {
            display: flex;
        }
    }

    @media (max-width: 640px) {
        .hero {
            padding: 6rem 0 4rem;
            min-height: auto;
        }

        .section {
            padding: 4rem 0;
        }

        .hero-actions {
            flex-direction: column;
            align-items: flex-start;
        }

        .float-card {
            position: relative;
            top: auto;
            left: auto;
            right: auto;
            bottom: auto;
            margin-top: 1rem;
        }

        .hero-visual {
            height: auto;
            display: flex;
            flex-direction: column;
        }

        .hero-image-wrapper {
            height: 300px;
        }

        .footer-content {
            flex-direction: column;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-links {
            flex-wrap: wrap;
            justify-content: center;
        }
    }
