    :root {
        --coral: #FF6B6B;
        --coral-dark: #E05252;
        --charcoal: #2D3436;
        --charcoal-light: #434A4D;
        --off-white: #F9F9F9;
        --white: #FFFFFF;
        --gray-bg: #F4F4F4;
        
        --font-heading: 'Fredoka', sans-serif;
        --font-body: 'Inter', sans-serif;
        
        --radius-sm: 8px;
        --radius-md: 16px;
        --radius-lg: 32px;
        
        --shadow: 0 10px 30px -10px rgba(45, 52, 54, 0.15);
        --shadow-hover: 0 20px 40px -10px rgba(45, 52, 54, 0.25);
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        color: var(--charcoal);
        background-color: var(--off-white);
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
    }

    /* Geometric Blobs */
    .blob {
        position: fixed;
        border-radius: 50%;
        filter: blur(60px);
        z-index: -1;
        opacity: 0.6;
    }

    .blob-1 {
        top: -10%;
        right: -5%;
        width: 500px;
        height: 500px;
        background: rgba(255, 107, 107, 0.15);
    }

    .blob-2 {
        bottom: 10%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: rgba(45, 52, 54, 0.05);
    }

    /* Typography & Utilities */
    h1, h2, h3 {
        font-family: var(--font-heading);
        font-weight: 600;
        line-height: 1.2;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: all 0.3s ease;
    }

    ul {
        list-style: none;
    }

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

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .dot {
        color: var(--coral);
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 14px 28px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-primary {
        background-color: var(--coral);
        color: var(--white);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }

    .btn-primary:hover {
        background-color: var(--coral-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
    }

    .btn-secondary {
        background-color: transparent;
        color: var(--charcoal);
        border: 2px solid var(--charcoal);
    }

    .btn-secondary:hover {
        background-color: var(--charcoal);
        color: var(--white);
    }

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(249, 249, 249, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 20px 0;
    }

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

    .logo {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--charcoal);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .nav-links a {
        font-weight: 500;
        font-size: 1rem;
    }

    .nav-links a:not(.btn):hover {
        color: var(--coral);
    }

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

    .mobile-menu-btn span {
        display: block;
        width: 28px;
        height: 3px;
        background-color: var(--charcoal);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Hero Section */
    .hero {
        padding: 160px 0 100px;
        min-height: 90vh;
        display: flex;
        align-items: center;
        position: relative;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero-content .badge {
        display: inline-block;
        background: rgba(255, 107, 107, 0.1);
        color: var(--coral);
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.875rem;
        margin-bottom: 24px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 24px;
        color: var(--charcoal);
    }

    .hero-sub {
        font-size: 1.25rem;
        color: var(--charcoal-light);
        margin-bottom: 40px;
        max-width: 480px;
    }

    .hero-actions {
        display: flex;
        gap: 16px;
    }

    .hero-image-wrapper {
        position: relative;
    }

    .hero-img-box {
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow);
        transform: rotate(2deg);
        background: var(--gray-bg);
    }

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

    .hero-float-card {
        position: absolute;
        bottom: -30px;
        left: -30px;
        background: var(--white);
        padding: 20px 28px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow);
        display: flex;
        align-items: center;
        gap: 16px;
        animation: float 4s ease-in-out infinite;
    }

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

    .float-icon {
        font-size: 2rem;
    }

    .hero-float-card strong {
        display: block;
        color: var(--charcoal);
    }

    .hero-float-card span {
        font-size: 0.875rem;
        color: var(--charcoal-light);
    }

    /* Offerings Section */
    .offerings {
        padding: 100px 0;
        background: var(--white);
    }

    .section-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 60px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .section-header p {
        font-size: 1.125rem;
        color: var(--charcoal-light);
    }

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

    .offer-card {
        background: var(--off-white);
        border-radius: var(--radius-md);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .offer-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
    }

    .card-img {
        position: relative;
        height: 240px;
        overflow: hidden;
    }

    .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .offer-card:hover .card-img img {
        transform: scale(1.05);
    }

    .card-tag {
        position: absolute;
        top: 16px;
        right: 16px;
        background: var(--white);
        color: var(--coral);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .offer-card h3 {
        font-size: 1.5rem;
        margin: 24px 24px 12px;
    }

    .offer-card p {
        padding: 0 24px 24px;
        color: var(--charcoal-light);
    }

    /* About Section */
    .about {
        padding: 100px 0;
        background: var(--off-white);
    }

    .about-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-image {
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow);
        transform: rotate(-2deg);
        background: var(--gray-bg);
    }

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

    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }

    .about-content p {
        margin-bottom: 20px;
        color: var(--charcoal-light);
        font-size: 1.1rem;
    }

    .feature-list {
        margin-top: 32px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 500;
    }

    .feature-list svg {
        color: var(--coral);
    }

    /* Location Section */
    .location {
        padding: 100px 0;
        background: var(--charcoal);
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .location::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: rgba(255, 107, 107, 0.1);
        border-radius: 50%;
    }

    .location-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        position: relative;
        z-index: 1;
    }

    .location-info h2 {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .location-info .lead {
        font-size: 1.25rem;
        color: rgba(255,255,255,0.8);
        margin-bottom: 40px;
    }

    .info-block {
        display: flex;
        gap: 20px;
        margin-bottom: 32px;
    }

    .icon-box {
        width: 48px;
        height: 48px;
        background: rgba(255,255,255,0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .info-block strong {
        display: block;
        margin-bottom: 4px;
        font-size: 1.1rem;
    }

    .info-block p {
        color: rgba(255,255,255,0.7);
        margin: 0;
    }

    .info-block a {
        color: var(--coral);
    }

    .info-block a:hover {
        text-decoration: underline;
    }

    .location-map {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .map-placeholder {
        background: var(--charcoal-light);
        border-radius: var(--radius-md);
        padding: 60px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        min-height: 200px;
    }

    .map-pin {
        animation: bounce 2s infinite;
    }

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

    .map-placeholder p {
        color: rgba(255,255,255,0.6);
        font-size: 0.9rem;
    }

    .full-width {
        width: 100%;
        text-align: center;
    }

    /* Footer */
    .footer {
        background: #1a1e1f;
        color: var(--white);
        padding: 60px 0 30px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .footer-brand h3 {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }

    .footer-brand p {
        color: rgba(255,255,255,0.6);
    }

    .footer-links {
        display: flex;
        gap: 32px;
    }

    .footer-links a {
        color: rgba(255,255,255,0.8);
    }

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

    .footer-copy {
        color: rgba(255,255,255,0.4);
        font-size: 0.875rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        padding-top: 24px;
        text-align: center;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .hero-container,
        .about-container,
        .location-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .hero-content {
            text-align: center;
        }

        .hero-sub {
            margin: 0 auto 40px;
        }

        .hero-actions {
            justify-content: center;
        }

        .hero-image-wrapper {
            max-width: 500px;
            margin: 0 auto;
        }

        .hero-img-box,
        .about-image {
            transform: rotate(0);
        }

        .hero-float-card {
            left: 50%;
            transform: translateX(-50%);
            bottom: -20px;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--white);
            flex-direction: column;
            padding: 40px;
            gap: 24px;
            box-shadow: var(--shadow);
            transform: translateY(-150%);
            transition: transform 0.3s ease;
        }

        .nav-links.active {
            transform: translateY(0);
        }

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

        .hero-content h1 {
            font-size: 2.5rem;
        }

        .section-header h2,
        .about-content h2,
        .location-info h2 {
            font-size: 2rem;
        }
    }
