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

        body {
            font-family: 'Inter', sans-serif;
            color: #1a1a1a;
           background: #FFF;
            padding-bottom: 0;
        }

        h1, h2, h3 {
            font-family: 'Albert Sans', sans-serif;
        }

        header {
            background-color: #1a1a1a;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            font-family: 'Albert Sans', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
        }

        .logo-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #a855f7, #ec4899);
            border-radius: 6px;
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: opacity 0.3s;
        }

        nav a:hover {
            opacity: 0.7;
        }

        .cta-button {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white;
            padding: 0.625rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
        }

        .hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-image {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .color-threads {
            width: 100%;
            height: 250px;
            background: linear-gradient(to right,
                #06b6d4 0%, #06b6d4 8%,
                #3b82f6 8%, #3b82f6 16%,
                #8b5cf6 16%, #8b5cf6 24%,
                #ec4899 24%, #ec4899 32%,
                #ef4444 32%, #ef4444 40%,
                #f97316 40%, #f97316 48%,
                #fbbf24 48%, #fbbf24 56%,
                #fde047 56%, #fde047 64%,
                #fef3c7 64%, #fef3c7 72%,
                #fef08a 72%, #fef08a 80%,
                #22c55e 80%, #22c55e 88%,
                #10b981 88%, #10b981 100%
            );
            border-radius: 12px;
            position: relative;
            margin-bottom: 1.5rem;
        }

        .stats {
            display: flex;
            gap: 1rem;
        }

        .stat-box {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            flex: 1;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .stat-number {
            font-family: 'Albert Sans', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
        }

        .hero-side {
            /*background: white;*/
            padding: 2rem;
            /*border-radius: 20px;*/
            /*box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);*/
        }

        .hero-side h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .hero-side p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .discover-button {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: transform 0.3s;
        }

        .discover-button:hover {
            transform: scale(1.05);
        }

        .section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 3rem;
        }

        .color-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .color-card {
            text-align: left;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .color-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            border: 3px solid #1a1a1a;
            margin-left: 0;
        }

        .pink { background-color: #ec4899; }
        .purple { background-color: #a855f7; }
        .white { background-color: white; }

        .color-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .color-card p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .cta-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .cta-content {
            background-image: url("./image/p2.png");
            background-size: cover;
            background-position: center;
            border-radius: 24px;
            padding: 4rem;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 3rem;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .cta-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:    rgba(6, 6, 7, 0.3);
            pointer-events: none;
        }

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

        .cta-text h2 {
            color: white;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .cta-text p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .join-button {
            background: white;
            color: #a855f7;
            padding: 0.875rem 2.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            transition: transform 0.3s, box-shadow 0.3s;
            font-size: 1rem;
        }

        .join-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
        }

        .cta-stat {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 2.5rem 3rem;
            border-radius: 16px;
            text-align: center;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-stat .stat-number {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .cta-stat .stat-label {
            color: #1a1a1a;
            font-size: 0.95rem;
            font-weight: 600;
        }

        .blog-section {
            max-width: 1200px;
            margin: 5rem auto;
            padding: 0 2rem;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .blog-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: white;
            border: 2px solid #ec4899;
            border-radius: 25px;
            color: #ec4899;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .blog-subtitle {
            color: #666;
            max-width: 700px;
            margin: 1rem auto 0;
            line-height: 1.6;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .blog-featured {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        .blog-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .blog-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .blog-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .blog-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .pink-icon {
            background: linear-gradient(135deg, #ec4899, #f472b6);
        }

        .purple-icon {
            background: linear-gradient(135deg, #a855f7, #c084fc);
        }

        .blog-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .blog-card p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .read-more {
            color: #a855f7;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s;
        }

        .read-more:hover {
            gap: 0.75rem;
        }

        .read-more::after {
            content: '→';
        }

        .contact-section {
            max-width: 600px;
            margin: 5rem auto;
            padding: 0 2rem;
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

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

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #a855f7;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #999;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-button {
            width: 100%;
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
        }

        .intro-section {
            max-width: 1200px;
            margin: 5rem auto;
            padding: 0 2rem;
        }

        .intro-content {
            margin-bottom: 3rem;
        }

        .intro-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .intro-description {
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
        }

        .offer-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .offer-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .offer-card {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .offer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .offer-card h4 {
            font-family: 'Albert Sans', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .offer-card p {
            color: #666;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .faq-section {
            max-width: 900px;
            margin: 5rem auto;
            padding: 0 2rem;
        }

        .faq-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 3rem;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .faq-item {
            background: #f5f5f5;
            padding: 2rem;
            border-radius: 12px;
            transition: background-color 0.3s;
        }

        .faq-item:hover {
            background: #ebebeb;
        }

        .faq-item h3 {
            font-family: 'Albert Sans', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #1a1a1a;
        }

        .faq-item p {
            color: #555;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        footer {
            background-color: #2a2a2a;
            color: white;
            padding: 4rem 2rem 2rem;
            margin-top: 5rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Albert Sans', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .footer-logo-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #a855f7, #ec4899);
            border-radius: 8px;
        }

        .footer-description {
            color: #ccc;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .footer-subscribe {
            display: flex;
            gap: 0.5rem;
        }

        .footer-subscribe input {
            flex: 1;
            padding: 0.875rem 1.25rem;
            border: none;
            border-radius: 25px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
        }

        .footer-subscribe input::placeholder {
            color: #999;
        }

        .footer-subscribe button {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white;
            padding: 0.875rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s;
            white-space: nowrap;
        }

        .footer-subscribe button:hover {
            transform: scale(1.05);
        }

        .footer-links h4 {
            font-family: 'Albert Sans', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

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

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: #a855f7;
        }

        .footer-links a::before {
            content: '▸';
            font-size: 0.8rem;
        }

        .footer-contact h4 {
            font-family: 'Albert Sans', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: #ccc;
            font-size: 0.95rem;
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .social-icons {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #a855f7, #ec4899);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
            cursor: pointer;
        }

        .social-icon:hover {
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #999;
            font-size: 0.9rem;
        }

        .cookie-popup {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            right: 2rem;
            max-width: 500px;
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transform: translateY(150%);
            transition: transform 0.5s;
        }

        .cookie-popup.show {
            transform: translateY(0);
        }

        .cookie-popup h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cookie-popup p {
            color: #666;
            line-height: 1.6;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .cookie-popup a {
            color: #a855f7;
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }

        .cookie-accept {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s;
            flex: 1;
        }

        .cookie-accept:hover {
            transform: scale(1.05);
        }

        .cookie-learn {
            background: white;
            color: #1a1a1a;
            padding: 0.75rem 2rem;
            border: 2px solid #e5e5e5;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .cookie-learn:hover {
            border-color: #a855f7;
            color: #a855f7;
        }

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

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

            .color-cards {
                grid-template-columns: 1fr;
            }

            .cta-content {
                grid-template-columns: 1fr;
                padding: 3rem 2rem;
                gap: 2rem;
            }

            .cta-text h2 {
                font-size: 2rem;
            }

            .cta-stat {
                padding: 2rem;
            }

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

            .blog-cards {
                grid-template-columns: 1fr;
            }

            .offer-cards {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            nav {
                gap: 1rem;
            }

            nav a:not(.cta-button) {
                display: none;
            }
        }

        @media (max-width: 640px) {
            header {
                padding: 1rem;
            }

            .hero {
                padding: 2rem 1rem;
            }

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

            .section h2 {
                font-size: 2rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .color-threads {
                height: 180px;
            }

            .cta-content {
                padding: 2rem 1.5rem;
            }

            .cta-text h2 {
                font-size: 1.75rem;
            }

            .cta-stat .stat-number {
                font-size: 2.5rem;
            }

            .contact-form {
                padding: 2rem 1.5rem;
            }

            .blog-header h2 {
                font-size: 1.75rem;
            }

            .intro-content h2 {
                font-size: 1.75rem;
            }

            .offer-section h3 {
                font-size: 1.25rem;
            }

            .faq-section h2 {
                font-size: 1.75rem;
            }

            .faq-item {
                padding: 1.5rem;
            }

            .footer-subscribe {
                flex-direction: column;
            }

            .cookie-popup {
                left: 1rem;
                right: 1rem;
                bottom: 1rem;
            }

            .cookie-buttons {
                flex-direction: column;
            }
        }

        footer {
            background-color: #2d2d2d;
            border-radius: 24px;
            padding: 3.5rem 4rem 2.5rem;
            color: white;
            /*max-width: 1200px;*/
            margin: 0 auto;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 4rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid #444;
            margin-bottom: 2rem;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: 'Albert Sans', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #a855f7, #ec4899);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 20px;
            height: 20px;
        }

        .footer-description {
            color: #d1d1d1;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .footer-subscribe {
            display: flex;
            gap: 0.5rem;
        }

        .footer-subscribe input {
            flex: 1;
            padding: 0.875rem 1.25rem;
            border: none;
            border-radius: 30px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            background: white;
        }

        .footer-subscribe input::placeholder {
            color: #999;
        }

        .footer-subscribe input:focus {
            outline: none;
        }

        .subscribe-btn {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white;
            padding: 0.875rem 2.25rem;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            white-space: nowrap;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
        }

        .subscribe-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
        }

        .footer-links h4 {
            font-family: 'Albert Sans', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

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

        .footer-links li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links li::before {
            content: '▸';
            color: #888;
            font-size: 0.8rem;
        }

        .footer-links a {
            color: #d1d1d1;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: #a855f7;
        }

        .footer-contact h4 {
            font-family: 'Albert Sans', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: #d1d1d1;
            font-size: 0.95rem;
        }

        .contact-icon {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .social-icons {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #a855f7, #ec4899);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
            cursor: pointer;
        }

        .social-icon:hover {
            transform: translateY(-3px);
        }

        .social-icon svg {
            width: 18px;
            height: 18px;
        }

        .footer-bottom {
            text-align: center;
            color: #999;
            font-size: 0.9rem;
        }

        @media (max-width: 968px) {
            footer {
                padding: 3rem 2rem 2rem;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }

        @media (max-width: 640px) {


            footer {
                padding: 2rem 1.5rem 1.5rem;
            }

            .footer-subscribe {
                flex-direction: column;
            }

            .footer-main {
                gap: 2rem;
            }
        }

        .cookie-popup {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            max-width: 550px;
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            opacity: 0;
            transform: translateY(150%);
            transition: all 0.5s ease;
        }

        .cookie-popup.show {
            opacity: 1;
            transform: translateY(0);
        }

        .cookie-popup h3 {
            font-family: 'Albert Sans', sans-serif;
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .cookie-popup p {
            color: #666;
            line-height: 1.7;
            font-size: 0.95rem;
            margin-bottom: 1.75rem;
        }

        .cookie-popup a {
            color: #a855f7;
            text-decoration: underline;
            transition: color 0.3s;
        }

        .cookie-popup a:hover {
            color: #ec4899;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }

        .cookie-accept {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white;
            padding: 0.875rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: transform 0.3s, box-shadow 0.3s;
            flex: 1;
        }

        .cookie-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
        }

        .cookie-learn {
            background: white;
            color: #1a1a1a;
            padding: 0.875rem 2rem;
            border: 2px solid #e5e5e5;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .cookie-learn:hover {
            border-color: #a855f7;
            color: #a855f7;
        }

        .cookie-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .cookie-overlay.show {
            opacity: 1;
            pointer-events: all;
        }

        @media (max-width: 640px) {
            .cookie-popup {
                left: 1rem;
                right: 1rem;
                bottom: 1rem;
                padding: 2rem;
                max-width: none;
            }

            .cookie-popup h3 {
                font-size: 1.15rem;
            }

            .cookie-buttons {
                flex-direction: column;
            }

            .demo-content h1 {
                font-size: 2rem;
            }


        }


        header {
            background-color: #1a1a1a;
            padding: 1.25rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            font-family: 'Albert Sans', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #a855f7, #ec4899);
            border-radius: 6px;
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: opacity 0.3s;
        }

        nav a:hover {
            opacity: 0.7;
        }

        .cta-button {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white;
            padding: 0.625rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .hamburger {
            width: 28px;
            height: 20px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s;
        }

        .mobile-menu-btn.active .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .mobile-menu-btn.active .hamburger span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: #1a1a1a;
            padding: 2rem;
            flex-direction: column;
            gap: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.open {
            transform: translateY(0);
        }

        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 0.75rem 0;
            border-bottom: 1px solid #333;
            transition: color 0.3s;
        }

        .mobile-menu a:hover {
            color: #a855f7;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        .mobile-menu .cta-button {
            display: inline-block;
            text-align: center;
            margin-top: 1rem;
            border-bottom: none;
        }

        /* Demo content */
        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .content h1 {
            font-family: 'Albert Sans', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .content p {
            line-height: 1.6;
            color: #666;
        }

        @media (max-width: 968px) {
            nav {
                display: none;
            }

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

            .mobile-menu {
                display: flex;
            }
        }

        @media (max-width: 640px) {
            header {
                padding: 1rem;
            }

            .logo {
                font-size: 1.1rem;
            }

            .logo-icon {
                width: 24px;
                height: 24px;
            }
        }
