:root {
            --vh-primary: #16A085;
            --vh-accent: #8E44AD;
            --vh-bg: #F4ECF7;
            --vh-text: #4A235A;
            --vh-radius-lg: 18px;
        }
        body {
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--vh-text);
            background-color: var(--vh-bg);
            scroll-behavior: smooth;
        }
        h1,h2,h3,h4,h5,h6 {
            font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        }
        .btn-primary {
            background: var(--vh-primary);
            border-color: var(--vh-primary);
            border-radius: 999px;
            font-weight: 500;
        }
        .btn-primary:hover,
        .btn-primary:focus {
            background: #138671;
            border-color: #138671;
        }
        .btn-outline-accent {
            color: var(--vh-accent);
            border-color: var(--vh-accent);
            border-radius: 999px;
            font-weight: 500;
        }
        .btn-outline-accent:hover,
        .btn-outline-accent:focus {
            background: var(--vh-accent);
            color: #fff;
        }
        .vh-section {
            padding: 80px 0;
        }
        @media (min-width: 992px) {
            .vh-section {
                padding: 100px 0;
            }
        }
        .vh-card {
            background: #ffffff;
            border-radius: var(--vh-radius-lg);
            border: none;
            box-shadow: 0 18px 40px rgba(74,35,90,0.08);
        }
        .vh-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 999px;
            background: rgba(22,160,133,0.1);
            color: var(--vh-primary);
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .vh-gradient-bg {
            background: radial-gradient(circle at top left, #E8DAEF 0, #F4ECF7 40%, #D1F2EB 100%);
        }

        /* Navbar */
        .navbar {
            background: rgba(244,236,247,0.92);
            backdrop-filter: blur(14px);
        }
        .navbar-brand {
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--vh-text);
        }
        .navbar-brand span {
            color: var(--vh-primary);
        }
        .nav-link {
            font-weight: 500;
            color: var(--vh-text);
        }
        .nav-link:hover,
        .nav-link:focus {
            color: var(--vh-primary);
        }

        /* Hero */
        #hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            background: url("img/image_694dbc1d73704.png") center/cover no-repeat;
        }
        #hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(244,236,247,0.96), rgba(244,236,247,0.9), rgba(244,236,247,0.75));
        }
        #hero .container {
            position: relative;
        }

        /* About */
        #about {
            background: #ffffff;
        }

        /* Services */
        #services .service-item {
            border-radius: var(--vh-radius-lg);
            padding: 24px 22px;
            background: #fff;
            border: 1px solid rgba(142,68,173,0.08);
            height: 100%;
        }
        #services .service-item h5 {
            color: var(--vh-primary);
            font-weight: 600;
        }

        /* FAQ */
        #faq {
            background: #F9F1FB;
        }
        #faq .accordion-button {
            font-weight: 500;
            color: var(--vh-text);
            background: #fff;
        }
        #faq .accordion-button:not(.collapsed) {
            color: var(--vh-primary);
            background: #F4ECF7;
        }
        #faq .accordion-item {
            border-radius: var(--vh-radius-lg);
            overflow: hidden;
            border: none;
            box-shadow: 0 10px 26px rgba(74,35,90,0.06);
            margin-bottom: 12px;
        }

        /* Testimonials */
        #testimonials {
            background: linear-gradient(130deg, #E8DAEF, #D1F2EB);
        }
        #testimonials .vh-card {
            background: rgba(255,255,255,0.96);
        }

        /* Pricing */
        #pricing .price-card {
            border-radius: var(--vh-radius-lg);
            border: 1px solid rgba(142,68,173,0.18);
            padding: 32px 26px;
            background: #fff;
            position: relative;
            height: 100%;
        }
        #pricing .price-card.highlight {
            border-width: 2px;
            border-color: var(--vh-primary);
            box-shadow: 0 24px 50px rgba(22,160,133,0.28);
            transform: translateY(-6px);
        }
        #pricing .price-label {
            font-size: 2rem;
            font-weight: 700;
            color: var(--vh-primary);
        }
        #pricing .feature-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        #pricing .feature-list li::before {
            content: "•";
            color: var(--vh-accent);
            font-weight: 700;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

        /* Portfolio */
        #portfolio {
            background: url("img/image_694dbc25920b9.png") center/cover no-repeat;
            position: relative;
            color: var(--vh-text);
        }
        #portfolio::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(244,236,247,0.96);
        }
        #portfolio .container {
            position: relative;
        }
        #portfolio .portfolio-item {
            background: #fff;
            border-radius: var(--vh-radius-lg);
            padding: 20px 20px 18px;
            box-shadow: 0 16px 34px rgba(74,35,90,0.12);
            height: 100%;
        }
        #portfolio .portfolio-thumb {
            border-radius: var(--vh-radius-lg);
            height: 180px;
            background-size: cover;
            background-position: center;
            margin-bottom: 16px;
        }

        /* Footer */
        #footer {
            background: #2C1B3A;
            color: #f7f3fc;
        }
        #footer a {
            color: #D1F2EB;
            text-decoration: none;
        }
        #footer a:hover {
            color: #fff;
            text-decoration: underline;
        }

        /* Cookie notice */
        #cookie-notice {
            position: fixed;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            max-width: 520px;
            width: calc(100% - 32px);
            background: #ffffff;
            border-radius: 999px;
            box-shadow: 0 18px 40px rgba(0,0,0,0.18);
            padding: 10px 18px;
            font-size: 0.85rem;
            z-index: 1080;
            display: none;
        }
        #cookie-notice button {
            border-radius: 999px;
        }
