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

        body {
            font-family: 'Nunito', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

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

        .logo {
            font-family: 'Amatic SC', cursive;
            font-size: 2.2em;
            font-weight: 700;
            color: #FF1493;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .phone {
            background: linear-gradient(135deg, #FF1493, #FF69B4);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(255,20,147,0.3);
            transition: all 0.3s ease;
        }

        .phone:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,20,147,0.4);
        }

        /* Helper Classes */
        .section-divider {
            height: 40px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 40"><path fill="%23FF1493" d="M0,0 Q600,40 1200,0 L1200,40 L0,40 Z"/></svg>') no-repeat;
            background-size: cover;
        }

        .creative-title {
            font-family: 'Amatic SC', cursive;
            font-size: 3em;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
        }

        .creative-title::after {
            content: '★ ★ ★';
            display: block;
            font-size: 0.3em;
            color: #FF1493;
            margin-top: 10px;
        }

        .handwritten-text {
            font-family: 'Caveat', cursive;
            font-size: 1.4em;
            color: #8A2BE2;
            text-align: center;
            margin-bottom: 30px;
        }

        /* Background Elements */
        .bg-element {
            position: absolute;
            opacity: 0.1;
            pointer-events: none;
        }

        .puzzle-piece {
            width: 80px;
            height: 80px;
            background: #FF1493;
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #FAFAFA 0%, #FFF 50%, #FFF0F5 100%);
            position: relative;
            display: flex;
            align-items: center;
            padding-top: 80px;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255, 20, 147, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 69, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 20, 147, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        .hero-floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(255, 20, 147, 0.1), rgba(255, 69, 0, 0.1));
            animation: float 6s ease-in-out infinite;
        }

        .floating-shape:nth-child(1) {
            width: 60px;
            height: 60px;
            top: 15%;
            left: 5%;
            animation-delay: -2s;
        }

        .floating-shape:nth-child(2) {
            width: 40px;
            height: 40px;
            top: 70%;
            right: 10%;
            animation-delay: -4s;
        }

        .floating-shape:nth-child(3) {
            width: 30px;
            height: 30px;
            top: 30%;
            right: 20%;
            animation-delay: -1s;
        }

        .floating-shape:nth-child(4) {
            width: 50px;
            height: 50px;
            bottom: 20%;
            left: 15%;
            animation-delay: -3s;
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
                opacity: 0.6;
            }
            50% { 
                transform: translateY(-20px) rotate(180deg); 
                opacity: 0.8;
            }
        }

        .puzzle-piece-1 {
            top: 15%;
            left: 10%;
            transform: rotate(15deg);
        }

        .puzzle-piece-2 {
            top: 60%;
            right: 15%;
            width: 100px;
            height: 100px;
            background: #9370DB;
            clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
            transform: rotate(-20deg);
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            position: relative;
        }

        .urgency-badge {
            background: linear-gradient(135deg, #FF1493, #FF69B4);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
            transform: rotate(-2deg);
            animation: pulse 2s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .urgency-badge::before {
            content: '';
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 12px solid #FFD700;
            position: relative;
            animation: lightning 0.5s ease-in-out infinite alternate;
        }

        .urgency-badge::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shine 2s ease-in-out infinite;
        }

        @keyframes lightning {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }

        @keyframes shine {
            0% { left: -100%; }
            50% { left: -100%; }
            100% { left: 100%; }
        }

        @keyframes pulse {
            0%, 100% { transform: rotate(-2deg) scale(1); }
            50% { transform: rotate(-2deg) scale(1.05); }
        }

        .hero-title {
            font-family: 'Amatic SC', cursive;
            font-size: 4.5rem;
            font-weight: 700;
            color: #333;
            line-height: 1.1;
            margin-bottom: 20px;
            position: relative;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .hero-title::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, rgba(255, 20, 147, 0.02), rgba(255, 69, 0, 0.02));
            border-radius: 15px;
            z-index: -1;
        }

        .title-highlight {
            color: #FF1493;
            position: relative;
        }

        .title-highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 15px;
            background: linear-gradient(45deg, rgba(255, 20, 147, 0.3), rgba(255, 69, 0, 0.3));
            z-index: -1;
            transform: rotate(-1deg);
        }

        .hero-subtitle {
            font-family: 'Caveat', cursive;
            font-size: 1.8rem;
            color: #FF1493;
            margin-bottom: 20px;
            font-weight: 500;
            position: relative;
            padding: 15px 0;
        }

        .hero-subtitle::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #FF1493, #FF69B4);
            transform: translateY(-50%);
            border-radius: 2px;
        }

        .hero-subtitle::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #FF69B4, #FF1493);
            transform: translateY(-50%);
            border-radius: 2px;
        }

        .hero-benefits {
            list-style: none;
            margin-bottom: 35px;
            padding: 20px 0;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 20, 147, 0.1);
        }

        .hero-benefits li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 0 20px;
            font-size: 1.1rem;
            color: #444;
            position: relative;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .hero-benefits li:hover {
            color: #FF1493;
            transform: translateX(5px);
        }

        .hero-benefits li:last-child {
            margin-bottom: 0;
        }

        .hero-benefits li::before {
            content: '';
            margin-right: 12px;
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #FF1493, #FF69B4);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
        }

        .hero-benefits li::after {
            content: '';
            position: absolute;
            left: 7px;
            top: 3px;
            width: 6px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
            z-index: 1;
        }

        .hero-benefits li {
            position: relative;
        }

        .cta-button {
            background: linear-gradient(135deg, #FF1493, #FF69B4);
            color: white;
            padding: 20px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            margin-top: 10px;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button::after {
            content: '➤';
            font-size: 1.1em;
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover::after {
            transform: translateX(5px);
        }

        .hero-social-proof {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 20, 147, 0.2);
        }

        .social-stats-mini {
            display: flex;
            gap: 25px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .stat-mini {
            text-align: center;
        }

        .stat-number-mini {
            font-family: 'Amatic SC', cursive;
            font-size: 2.2rem;
            font-weight: 700;
            color: #FF1493;
            display: block;
            line-height: 1;
        }

        .stat-text-mini {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
            display: block;
            margin-top: 5px;
        }

        .trust-badges {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: #666;
            font-weight: 500;
        }

        .trust-icon {
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 20, 147, 0.5);
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .main-image {
            width: 100%;
            max-width: 450px;
            height: 350px;
            object-fit: cover;
            object-position: center;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transform: rotate(2deg);
            transition: all 0.3s ease;
            position: relative;
        }

        .main-image:hover {
            transform: rotate(0deg) scale(1.02);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
        }

        .hero-visual::before {
            content: '✨ Популярный размер!';
            position: absolute;
            top: -10px;
            right: -10px;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #333;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            transform: rotate(15deg);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
            z-index: 3;
            animation: badge-bounce 2s ease-in-out infinite;
        }

        @keyframes badge-bounce {
            0%, 100% { transform: rotate(15deg) scale(1); }
            50% { transform: rotate(15deg) scale(1.05); }
        }

        /* Social Proof Section */
        .social-proof {
            padding: 80px 0;
            background: linear-gradient(135deg, #FF1493, #FF69B4);
            position: relative;
            overflow: hidden;
        }

        .social-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .stat-item {
            text-align: center;
            background: rgba(255, 255, 255, 0.9);
            padding: 30px 20px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: rotate(-2deg);
            transition: all 0.3s ease;
        }

        .stat-item:nth-child(even) {
            transform: rotate(2deg);
        }

        .stat-item:hover {
            transform: rotate(0deg) scale(1.05);
        }

        .stat-number {
            font-family: 'Amatic SC', cursive;
            font-size: 3.5rem;
            font-weight: 700;
            color: #FF1493;
            display: block;
            line-height: 1;
        }

        .stat-text {
            font-size: 1.1rem;
            color: #333;
            font-weight: 600;
            margin-top: 10px;
        }

        /* Products Section */
        .products {
            padding: 80px 0;
            background: white;
            position: relative;
        }

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

        .product-card {
            background: white;
            border-radius: 25px;
            padding: 0;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.4s;
            overflow: hidden;
            position: relative;
            border: 3px solid transparent;
            transform: rotate(-1deg);
        }

        .product-card:nth-child(even) {
            transform: rotate(1deg);
        }

        .product-card:hover {
            transform: translateY(-15px) scale(1.02) rotate(0deg);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
            border-color: #FF1493;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #FF1493, #FF69B4, #FF7F7F);
        }

        .product-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.3s;
        }

        .product-info {
            padding: 30px;
        }

        .product-badge {
            background: linear-gradient(45deg, #FF1493, #FF69B4);
            color: white;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.9em;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 15px;
            transform: rotate(-3deg);
        }

        .product-title {
            font-family: 'Caveat', cursive;
            font-size: 2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .product-description {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .product-price {
            font-family: 'Amatic SC', cursive;
            font-size: 2.8rem;
            font-weight: 700;
            color: #FF1493;
            margin-bottom: 20px;
        }

        .product-details {
            background: #FFF0F5;
            padding: 15px;
            border-radius: 15px;
            margin-bottom: 25px;
            font-size: 0.9rem;
            color: #666;
        }

        .order-button {
            background: linear-gradient(135deg, #FF1493, #FF69B4);
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            box-shadow: 0 8px 20px rgba(255,20,147,0.4);
            width: 100%;
        }

        .order-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(255,20,147,0.6);
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background: linear-gradient(135deg, #F8F9FA, #E9ECEF) !important;
            color: #2C3E50 !important;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: #FFFFFF !important;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #E1E8ED !important;
            box-shadow: 0 4px 12px rgba(44, 62, 80, 0.1) !important;
            transition: all 0.3s ease;
            position: relative;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #FF1493, #FF69B4);
            border-radius: 12px 12px 0 0;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(44, 62, 80, 0.15);
            border-color: #FF1493;
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
            opacity: 0.8;
        }

        .feature-title {
            font-family: 'Nunito', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2C3E50;
        }

        .feature-description {
            color: #5A6C7D;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Live Visitors Counter - Minimalistic Design */
        .live-visitors {
            display: inline-flex;
            align-items: center;
            background: none;
            border: 1px solid rgba(255, 20, 147, 0.15);
            border-radius: 6px;
            padding: 2px 6px;
            font-size: 0.7rem;
            color: #666;
            font-weight: 400;
            margin: 12px 0 20px 0;
            opacity: 0.7;
        }

        .live-visitors .visitor-icon {
            margin-right: 2px;
            font-size: 0.65rem;
            opacity: 0.6;
        }

        .live-counter-urgency {
            display: inline-flex;
            align-items: center;
            background: none;
            border: 1px solid rgba(44, 62, 80, 0.15);
            border-radius: 4px;
            padding: 2px 5px;
            font-size: 0.65rem;
            color: #5A6C7D;
            font-weight: 400;
            margin-bottom: 15px;
            opacity: 0.6;
        }

        .live-counter-urgency .counter-icon {
            margin-right: 2px;
            font-size: 0.6rem;
            opacity: 0.5;
        }

        /* Process Section */
        .process {
            padding: 80px 0;
            background: white;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .step-card {
            background: linear-gradient(135deg, #FFF0F5, #FFF);
            padding: 40px 30px;
            border-radius: 25px;
            text-align: center;
            position: relative;
            border: 3px dashed #FF1493;
            transform: rotate(1deg);
        }

        .step-card:nth-child(even) {
            transform: rotate(-1deg);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, #FF1493, #FF69B4);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Amatic SC', cursive;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .step-title {
            font-family: 'Caveat', cursive;
            font-size: 1.6rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
            margin-top: 10px;
        }

        .step-description {
            color: #666;
            line-height: 1.6;
        }

        /* Gallery Section */
        .gallery {
            padding: 80px 0;
            background: linear-gradient(135deg, #FF69B4, #FF1493);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            transition: all 0.3s;
            transform: rotate(-2deg);
        }

        .gallery-item:nth-child(even) {
            transform: rotate(2deg);
        }

        .gallery-item:hover {
            transform: scale(1.05) rotate(0deg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 30px 20px 20px;
            font-weight: bold;
            text-align: center;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: white;
        }

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

        .testimonial-card {
            background: linear-gradient(135deg, #FFF0F5, #FFF);
            padding: 30px;
            border-radius: 20px;
            position: relative;
            border-left: 5px solid #FF1493;
            transform: rotate(-1deg);
        }

        .testimonial-card:nth-child(even) {
            transform: rotate(1deg);
        }

        .testimonial-text {
            font-family: 'Caveat', cursive;
            font-size: 1.3rem;
            line-height: 1.6;
            color: #333;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: bold;
            color: #FF1493;
            text-align: right;
        }

        .testimonial-stars {
            color: #FF1493;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        /* Final CTA Section - Professional Business Style */
        .urgency {
            padding: 80px 0;
            background: linear-gradient(135deg, #F8F9FA, #FFFFFF);
            color: #2C3E50;
            text-align: center;
        }

        .urgency-content {
            background: #FFFFFF;
            padding: 50px 40px;
            border-radius: 12px;
            border: 1px solid #E1E8ED;
            box-shadow: 0 8px 24px rgba(44, 62, 80, 0.1);
            max-width: 600px;
            margin: 0 auto;
        }

        .urgency-badge {
            background: linear-gradient(90deg, #FF1493, #FF69B4);
            color: white;
            padding: 6px 16px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 20px;
        }

        .urgency-title {
            font-family: 'Nunito', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #2C3E50;
        }

        .urgency-text {
            font-size: 1.1rem;
            margin-bottom: 35px;
            opacity: 0.8;
            line-height: 1.6;
            color: #5A6C7D;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background: white;
        }

        .faq-grid {
            display: grid;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: linear-gradient(135deg, #FFF0F5, #FFF);
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid #FF1493;
        }

        .faq-question {
            font-family: 'Caveat', cursive;
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 20px 20px;
            color: #666;
            line-height: 1.6;
            display: none;
        }

        /* Delivery Section */
        .delivery {
            padding: 80px 0;
            background: linear-gradient(135deg, #FF69B4, #FF1493);
        }

        .delivery-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .delivery-method {
            background: rgba(255, 255, 255, 0.9);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transform: rotate(-2deg);
        }

        .delivery-method:nth-child(even) {
            transform: rotate(2deg);
        }

        .delivery-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .delivery-title {
            font-family: 'Caveat', cursive;
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #2d3436, #636e72);
            color: white;
            padding: 60px 0 40px;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-family: 'Caveat', cursive;
            font-size: 1.8rem;
            color: #FF1493;
            margin-bottom: 20px;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: #FF1493;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.6);
        }

        .whatsapp-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(45deg, #25d366, #20b858);
            color: white;
            padding: 20px 25px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 15px 40px rgba(37,211,102,0.4);
            z-index: 1000;
            font-weight: bold;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .whatsapp-widget:hover {
            transform: scale(1.1);
            box-shadow: 0 20px 50px rgba(37,211,102,0.6);
        }

        /* Reviews Button Styles */
        .reviews-button-container {
            text-align: center;
            margin-top: 40px;
        }

        .reviews-dropdown {
            position: relative;
            display: inline-block;
        }

        .reviews-button {
            background: linear-gradient(135deg, #25d366, #20c75a);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .reviews-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .reviews-dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 250px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-radius: 15px;
            z-index: 1;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 10px;
        }

        .reviews-dropdown-content a {
            color: #333;
            padding: 12px 20px;
            text-decoration: none;
            display: block;
            border-radius: 15px;
            transition: background-color 0.3s;
        }

        .reviews-dropdown-content a:hover {
            background-color: #f8f9fa;
            color: #25d366;
        }

        .reviews-dropdown:hover .reviews-dropdown-content {
            display: block;
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
            to { opacity: 1; transform: translateX(-50%) translateY(0); }
        }
        
        /* Modal styles for review images */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
        }
        .modal-backdrop {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        .modal-content {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border-radius: 10px;
            cursor: default;
        }
        .modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .modal-close:hover {
            opacity: 0.7;
        }
        .expand-icon {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            color: white;
            text-shadow: 0 0 10px rgba(0,0,0,0.8);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .review-item:hover .expand-icon {
            opacity: 1;
        }
        .review-item {
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero { 
                padding-top: 100px !important; 
            }
            .hero-content { 
                grid-template-columns: 1fr; 
                gap: 40px; 
                text-align: center; 
            }
            .hero-title { 
                font-size: 2.8rem;
                margin-top: 20px; 
            }
            .hero-subtitle {
                font-size: 1.4rem;
                line-height: 1.8;
                padding: 20px 10px;
            }
            .hero-subtitle::before,
            .hero-subtitle::after {
                display: none;
            }
            .products-grid, 
            .features-grid, 
            .process-steps { 
                grid-template-columns: 1fr; 
            }
            .gallery-grid { 
                grid-template-columns: repeat(2, 1fr); 
            }
            .bg-element { 
                display: none; 
            }
            .urgency-badge {
                position: relative;
                animation: none;
            }
            .social-stats-mini {
                justify-content: center;
                gap: 15px;
            }
            .hero-visual::before {
                font-size: 0.8rem;
                padding: 6px 12px;
            }
            .floating-shape {
                display: none;
            }
            .live-visitors {
                margin: 12px 0 20px 0;
                font-size: 0.7rem;
                padding: 6px 10px;
            }
            .cta-button {
                margin-top: 8px;
                padding: 18px 35px;
                font-size: 1.2rem;
            }
        }