        /* Random color scheme: Deep teal, coral, mustard */
        :root {
            --primary: #0a5c5f;
            --secondary: #ff7f50;
            --accent: #ffdb58;
            --text: #333333;
            --light: #f8f8f8;
            --dark: #1a1a1a;
        }

        /* Random font combination: Rubik + Playfair Display */
        @import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&family=Playfair+Display:wght@700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Rubik', sans-serif;
            color: var(--text);
            background-color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
        }

        /* Asymmetric grid layout */
        .container {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 20px;
            padding: 0 15px;
            max-width: 1200px;
            margin: 0 auto;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            color: white;
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--accent);
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s ease;
        }

        /* Hero section with parallax effect */
        .hero {
            grid-column: 1 / -1;
            height: 80vh;
            background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1534957753291-64d667ce2927?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
            margin-bottom: 50px;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn:hover {
            background-color: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Dynamic grid sections */
        .section {
            grid-column: 1 / -1;
            margin-bottom: 60px;
            padding: 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .section h2 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 32px;
            position: relative;
            padding-bottom: 10px;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
        }

        /* Benefits section with swiper effect */
        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .benefit-card {
            background-color: var(--light);
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .benefit-card img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 15px;
        }

        .benefit-card h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        /* Testimonials */
        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .testimonial {
            background-color: var(--light);
            padding: 20px;
            border-radius: 8px;
            position: relative;
        }

        .testimonial::before {
            content: '"';
            font-family: 'Playfair Display', serif;
            font-size: 60px;
            color: var(--secondary);
            position: absolute;
            top: 10px;
            left: 10px;
            line-height: 1;
            opacity: 0.3;
        }

        .testimonial p {
            padding-left: 30px;
            margin-bottom: 15px;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 500;
            color: var(--primary);
            text-align: right;
        }

        /* Form styles */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 16px;
        }

        /* Price table */
        .pricing {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .price-card {
            background-color: var(--light);
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
            transition: all 0.3s;
        }

        .price-card:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .price-header {
            background-color: var(--primary);
            color: white;
            padding: 15px;
        }

        .price-header h3 {
            font-size: 22px;
            margin-bottom: 5px;
        }

        .price {
            font-size: 32px;
            font-weight: 700;
            margin: 15px 0;
        }

        .price span {
            font-size: 16px;
            font-weight: normal;
        }

        .price-body {
            padding: 20px;
        }

        .price-body ul {
            list-style: none;
            margin-bottom: 20px;
        }

        .price-body ul li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }

        /* FAQ */
        .faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }

        .faq-question {
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 10px;
            cursor: pointer;
            position: relative;
            padding-right: 30px;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 0;
            top: 0;
            font-size: 20px;
            color: var(--secondary);
        }

        .faq-question.active::after {
            content: '-';
        }

        .faq-answer {
            display: none;
            padding: 10px 0;
        }

        /* Cookie notice */
        .cookie-notice {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            color: white;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
        }

        .cookie-notice p {
            margin-right: 20px;
        }

        /* Popup */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .popup {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
        }

        .popup h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 24px;
        }

        .popup p {
            margin-bottom: 20px;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
            grid-column: 1 / -1;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-col h3 {
            font-family: 'Playfair Display', serif;
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 20px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            color: #aaa;
        }

        /* Responsive styles */
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }

            nav ul {
                position: fixed;
                top: 69px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease-in-out;
                z-index: 999;
            }

            nav ul.active {
                transform: translateY(0);
            }

            nav ul li {
                margin: 15px 0;
            }

            .burger {
                display: block;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .section {
                padding: 20px;
            }
        }

        /* Random animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .floating {
            animation: float 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .pulse {
            animation: pulse 3s ease-in-out infinite;
        }

        /* Random decorative elements */
        .decoration {
            position: absolute;
            z-index: -1;
            opacity: 0.1;
        }

        @media (max-width:850px) {
            .qfr{
                display: flex !important;
                flex-direction: column !important;
            }
        }