:root {
            --primary: #ff7675;
            --accent: #d63031;
            --bg: #fab1a0;
            --text: #2d3436;
            --radius-lg: 18px;
        }

        body {
            font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--text);
            background-color: #fffaf6;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5 {
            font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        }

        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            border-radius: 999px;
            font-weight: 600;
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background-color: var(--accent);
            border-color: var(--accent);
        }

        .btn-outline-primary {
            color: var(--accent);
            border-color: var(--accent);
            border-radius: 999px;
            font-weight: 500;
        }

        .btn-outline-primary:hover,
        .btn-outline-primary:focus {
            background-color: var(--accent);
            color: #fff;
        }

        .section-padding {
            padding: 80px 0;
        }

        /* HERO */
        .hero-section {
            min-height: 90vh;
            background: center/cover no-repeat img/image_694dc7b80d10d.png;
            position: relative;
            color: #fff;
            display: flex;
            align-items: center;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(0,0,0,0.75), rgba(0,0,0,0.35));
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.08);
            border-radius: 999px;
            padding: 6px 14px;
            font-size: 13px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #55efc4;
        }

        .hero-title {
            font-size: 40px;
            font-weight: 800;
        }

        @media (min-width: 992px) {
            .hero-title {
                font-size: 52px;
            }
        }

        .hero-subtitle {
            font-size: 18px;
            max-width: 640px;
        }

        .hero-text {
            max-width: 640px;
        }

        /* ABOUT */
        .about-section {
            background-color: #fff5ec;
        }

        .about-card {
            background-color: #ffffff;
            border-radius: var(--radius-lg);
            border: none;
            box-shadow: 0 22px 45px rgba(0,0,0,0.06);
            padding: 32px;
        }

        /* NEWSLETTER */
        .newsletter-section {
            background-image: linear-gradient(120deg, #ff7675, #fab1a0);
            color: #2d3436;
            min-height: 320px;
            display: flex;
            align-items: center;
        }

        .newsletter-card {
            background: rgba(255,255,255,0.9);
            border-radius: var(--radius-lg);
            padding: 28px 26px;
        }

        .form-control,
        .form-select {
            border-radius: 999px;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(255,118,117,0.2);
        }

        /* TESTIMONIALS */
        .testimonials-section {
            background-color: #ffffff;
        }

        .testimonial-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 12px 30px rgba(0,0,0,0.05);
            padding: 24px 22px;
            height: 100%;
        }

        .testimonial-name {
            font-weight: 600;
        }

        .testimonial-meta {
            font-size: 14px;
            color: #636e72;
        }

        .testimonial-rating {
            color: #fdcb6e;
        }

        /* CONTACTS */
        .contacts-section {
            background-color: #fff5ec;
        }

        .contacts-card {
            background-color: #ffffff;
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: 0 18px 40px rgba(0,0,0,0.06);
            border: none;
        }

        .contacts-info-item {
            display: flex;
            gap: 12px;
            margin-bottom: 10px;
            font-size: 15px;
        }

        .contacts-info-label {
            min-width: 70px;
            font-weight: 600;
        }

        /* CTA */
        .cta-section {
            min-height: 360px;
            background: center/cover no-repeat img/image_694dc7bf6e27e.png;
            position: relative;
            display: flex;
            align-items: center;
            color: #fff;
        }

        .cta-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(0,0,0,0.8), rgba(0,0,0,0.45));
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        /* FOOTER */
        .footer-section {
            background-color: #2d3436;
            color: #dfe6e9;
            padding: 32px 0 20px;
            font-size: 14px;
        }

        .footer-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .footer-link {
            color: #ffeaa7;
            text-decoration: none;
        }

        .footer-link:hover {
            text-decoration: underline;
        }

        /* COOKIE NOTICE */
        .cookie-notice {
            position: fixed;
            left: 16px;
            right: 16px;
            bottom: 16px;
            z-index: 9999;
            background: #2d3436;
            color: #dfe6e9;
            border-radius: 999px;
            padding: 10px 18px;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 18px 40px rgba(0,0,0,0.45);
        }

        .cookie-notice button {
            white-space: nowrap;
        }

        @media (min-width: 768px) {
            .cookie-notice {
                left: auto;
                right: 24px;
                bottom: 24px;
                max-width: 420px;
                border-radius: 999px;
            }
        }
