


.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-how-works {
    background: var(--light-purple);
    color: var(--primary-purple);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-how-works:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

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

.purple-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
    border-radius: 50%;
    z-index: 1;
}

.floating-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.bubble {
    position: absolute;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    opacity: 0.6;
}

.bubble-1 { width: 20px; height: 20px; top: 20%; left: 15%; }
.bubble-2 { width: 30px; height: 30px; top: 30%; right: 20%; }
.bubble-3 { width: 15px; height: 15px; bottom: 30%; left: 25%; }
.bubble-4 { width: 25px; height: 25px; bottom: 20%; right: 15%; }
.bubble-5 { width: 40px; height: 40px; top: 50%; left: 10%; }
.bubble-6 { width: 18px; height: 18px; top: 15%; right: 35%; }

.washing-machine {
    position: relative;
    z-index: 3;
    width: 200px;
    height: 250px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.machine-top {
    width: 180px;
    height: 30px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 10px 10px 0 0;
    margin: 10px auto 0;
    position: relative;
}

.machine-controls {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    padding: 0 15px;
}

.control-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.8;
}

.machine-door {
    width: 140px;
    height: 140px;
    background: #1e40af;
    border: 8px solid #1d4ed8;
    border-radius: 50%;
    margin: 20px auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.machine-inner {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
}

.stats-section {
    background: var(--primary-purple);
    padding: 40px 0;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.experience-stats {
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    margin-bottom: 20px;
}

.stat-big {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-small {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.stat-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .purple-blob {
        width: 300px;
        height: 300px;
    }
    
    .washing-machine {
        width: 150px;
        height: 180px;
    }
    
    .machine-top {
        width: 130px;
        height: 25px;
    }
    
    .machine-door {
        width: 100px;
        height: 100px;
    }
    
    .machine-inner {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-big {
        font-size: 2rem;
    }
    
    .stat-small {
        font-size: 1.2rem;
    }
}


/* Services Section */
.services-section {
    background: white;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.featured {
    background: linear-gradient(135deg, #c7d2fe 0%, #a5b4fc 100%);
    border: 2px solid var(--primary-purple);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.service-icon i {
    color: white;
    font-size: 1.2rem;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.service-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

.service-features {
    margin-bottom: 30px;
}

.service-features h6 {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.feature-list li::before {
    content: "✓";
    color: var(--primary-purple);
    font-weight: bold;
    width: 20px;
    margin-right: 10px;
}

.price-section {
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
}

.btn-choose {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-choose.primary {
    background: var(--primary-purple);
    color: white;
}

.btn-choose.primary:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
}

.btn-choose.secondary {
    background: var(--light-purple);
    color: var(--primary-purple);
}

.btn-choose.secondary:hover {
    background: var(--medium-purple);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .step-card {
        margin-bottom: 20px;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-card {
        padding: 20px;
    }
}

:root {
    --primary-purple: #6366f1;
    --light-purple: #e0e7ff;
    --medium-purple: #c7d2fe;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --background-light: #f8fafc;
    --teal-color: #06b6d4;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding-top: 40px;
}



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

.ls-hero-content {
    padding-right: 40px;
}

.ls-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.ls-hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.ls-btn-register {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.ls-btn-register:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    color: white;
}

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

.ls-illustration-container {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3);
}

.ls-service-person {
    position: relative;
    z-index: 2;
}

.ls-person-head {
    width: 40px;
    height: 40px;
    background: #fbbf24;
    border-radius: 50%;
    margin: 0 auto 5px;
    position: relative;
}

.ls-person-cap {
    width: 50px;
    height: 25px;
    background: var(--teal-color);
    border-radius: 25px 25px 5px 5px;
    position: absolute;
    top: -15px;
    left: -5px;
}

.ls-person-body {
    width: 60px;
    height: 40px;
    background: #3b82f6;
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
}

.ls-washing-machine-mini {
    width: 80px;
    height: 60px;
    background: white;
    border-radius: 8px;
    margin-top: 10px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ls-machine-door-mini {
    width: 35px;
    height: 35px;
    background: #e5e7eb;
    border: 3px solid #d1d5db;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 22px;
}

.ls-machine-door-mini::after {
    content: '';
    width: 15px;
    height: 15px;
    background: var(--teal-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ls-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.ls-bubble-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ls-float 3s ease-in-out infinite;
}

.ls-bubble-1 {
    width: 10px;
    height: 10px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.ls-bubble-2 {
    width: 8px;
    height: 8px;
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.ls-bubble-3 {
    width: 12px;
    height: 12px;
    top: 80%;
    left: 20%;
    animation-delay: 2s;
}

.ls-bubble-4 {
    width: 6px;
    height: 6px;
    top: 30%;
    left: 70%;
    animation-delay: 1.5s;
}

.ls-bubble-5 {
    width: 9px;
    height: 9px;
    top: 70%;
    left: 50%;
    animation-delay: 0.5s;
}

@keyframes ls-float {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ls-hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .ls-hero-title {
        font-size: 2.2rem;
    }

    .ls-illustration-container {
        width: 160px;
        height: 160px;
    }

    .ls-registration-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .ls-hero-title {
        font-size: 1.9rem;
    }

    .ls-hero-subtitle {
        font-size: 1rem;
    }

    .ls-illustration-container {
        width: 140px;
        height: 140px;
    }
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 20px;
    }

    .illustration-container {
        width: 160px;
        height: 160px;
    }

    .washing-machine-mini {
        width: 60px;
        height: 45px;
    }

    .machine-door-mini {
        width: 25px;
        height: 25px;
        top: 8px;
        left: 17px;
    }

    .machine-door-mini::after {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .registration-section,
    .locations-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .location-tag {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .location-tags {
        gap: 10px;
        padding: 0 15px;
    }
}





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

.hero-content {
    padding-right: 40px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-register {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    color: white;
}

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

.illustration-container {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3);
}

.service-person {
    position: relative;
    z-index: 2;
}

.person-head {
    width: 40px;
    height: 40px;
    background: #fbbf24;
    border-radius: 50%;
    margin: 0 auto 5px;
    position: relative;
}

.person-cap {
    width: 50px;
    height: 25px;
    background: var(--teal-color);
    border-radius: 25px 25px 5px 5px;
    position: absolute;
    top: -15px;
    left: -5px;
}

.person-body {
    width: 60px;
    height: 40px;
    background: #3b82f6;
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
}

.washing-machine-mini {
    width: 80px;
    height: 60px;
    background: white;
    border-radius: 8px;
    margin-top: 10px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.machine-door-mini {
    width: 35px;
    height: 35px;
    background: #e5e7eb;
    border: 3px solid #d1d5db;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 22px;
}

.machine-door-mini::after {
    content: '';
    width: 15px;
    height: 15px;
    background: var(--teal-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.floating-elements {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.bubble-float {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.bubble-1 { top: 20%; left: 15%; width: 6px; height: 6px; }
.bubble-2 { top: 30%; right: 20%; width: 10px; height: 10px; }
.bubble-3 { bottom: 30%; left: 25%; width: 4px; height: 4px; }
.bubble-4 { bottom: 40%; right: 15%; width: 8px; height: 8px; }
.bubble-5 { top: 60%; left: 10%; width: 12px; height: 12px; }

.locations-section {
    padding: 80px 0;
    background: white;
}
 
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.3;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 20px;
    }

    .illustration-container {
        width: 160px;
        height: 160px;
    }

    .washing-machine-mini {
        width: 60px;
        height: 45px;
    }

    .machine-door-mini {
        width: 25px;
        height: 25px;
        top: 8px;
        left: 17px;
    }

    .machine-door-mini::after {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .registration-section,
    .locations-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .location-tag {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .location-tags {
        gap: 10px;
        padding: 0 15px;
    }
}


        .registration-section {
            padding: 80px 0;
            color: var(--text-dark);
            background: var(--background-light);
        }

        .hero-content {
            padding-right: 40px;
        }

        .hero-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .btn-register {
            background: var(--primary-purple);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .btn-register:hover {
            background: #4f46e5;
            transform: translateY(-2px);
            color: white;
        }

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

        .illustration-container {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3);
        }

        .service-person {
            position: relative;
            z-index: 2;
        }

        .person-head {
            width: 40px;
            height: 40px;
            background: #fbbf24;
            border-radius: 50%;
            margin: 0 auto 5px;
            position: relative;
        }

        .person-cap {
            width: 50px;
            height: 25px;
            background: var(--teal-color);
            border-radius: 25px 25px 5px 5px;
            position: absolute;
            top: -15px;
            left: -5px;
        }

        .person-body {
            width: 60px;
            height: 40px;
            background: #3b82f6;
            border-radius: 10px;
            margin: 0 auto;
            position: relative;
        }

        .washing-machine-mini {
            width: 80px;
            height: 60px;
            background: white;
            border-radius: 8px;
            margin-top: 10px;
            position: relative;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .machine-door-mini {
            width: 35px;
            height: 35px;
            background: #e5e7eb;
            border: 3px solid #d1d5db;
            border-radius: 50%;
            position: absolute;
            top: 10px;
            left: 22px;
        }

        .machine-door-mini::after {
            content: '';
            width: 15px;
            height: 15px;
            background: var(--teal-color);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .floating-elements {
            position: absolute;
            width: 300px;
            height: 300px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .bubble-float {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
        }

        .bubble-1 { top: 20%; left: 15%; width: 6px; height: 6px; }
        .bubble-2 { top: 30%; right: 20%; width: 10px; height: 10px; }
        .bubble-3 { bottom: 30%; left: 25%; width: 4px; height: 4px; }
        .bubble-4 { bottom: 40%; right: 15%; width: 8px; height: 8px; }
        .bubble-5 { top: 60%; left: 10%; width: 12px; height: 12px; }

        .locations-section {
            padding: 80px 0;
            background: white;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 50px;
            line-height: 1.3;
        }


        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-content {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
            }

            .section-title {
                font-size: 1.8rem;
                padding: 0 20px;
            }

            .illustration-container {
                width: 160px;
                height: 160px;
            }

            .washing-machine-mini {
                width: 60px;
                height: 45px;
            }

            .machine-door-mini {
                width: 25px;
                height: 25px;
                top: 8px;
                left: 17px;
            }

            .machine-door-mini::after {
                width: 10px;
                height: 10px;
            }
        }

        @media (max-width: 576px) {
            .registration-section,
            .locations-section {
                padding: 40px 0;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .location-tag {
                font-size: 0.85rem;
                padding: 8px 16px;
            }

            .location-tags {
                gap: 10px;
                padding: 0 15px;
            }
        }



      

        .sv-stat-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .sv-cta-banner {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            padding: 30px 0;
            position: relative;
            overflow: hidden;
        }

        .sv-cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        }

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

        .sv-cta-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .sv-cta-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 0;
            line-height: 1.5;
        }

        .sv-cta-image {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sv-person-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 4px solid rgba(255, 255, 255, 0.3);
            object-fit: cover;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .sv-video-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 15px;
            }

            .sv-video-thumbnail {
                height: 180px;
            }

            .sv-cta-title {
                font-size: 1.5rem;
            }

            .sv-cta-subtitle {
                font-size: 0.9rem;
            }

            .sv-person-avatar {
                width: 100px;
                height: 100px;
            }
        }

        @media (max-width: 576px) {
            .sv-video-grid {
                grid-template-columns: 1fr;
            }

            .sv-section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .sv-cta-title {
                font-size: 1.3rem;
                text-align: center;
            }

            .sv-cta-subtitle {
                text-align: center;
            }
        }








        