:root {
    --lh-primary: #6e45e2;
    --lh-secondary: #88d3ce;
    --lh-accent: #ff7e5f;
    --lh-dark: #2a2d3b;
    --lh-light: #f8f9fa;
    --lh-gradient: linear-gradient(135deg, var(--lh-primary) 0%, var(--lh-accent) 100%);
    --lh-text-heading: 'Playfair Display', serif;
    --lh-text-body: 'Source Sans Pro', sans-serif;
    --lh-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --lh-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    font-family: var(--lh-text-body);
    color: var(--lh-dark);
    background-color: var(--lh-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.lh-age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    .lh-age-content {
        background-color: var(--lh-light);
        padding: 2rem;
        border-radius: 10px;
        text-align: center;
        max-width: 500px;
        width: 90%;
        h2 {
            font-family: var(--lh-text-heading);
            color: var(--lh-primary);
            margin-bottom: 1rem;
        }
        p {
            margin-bottom: 2rem;
        }
        .lh-age-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            button {
                padding: 0.75rem 1.5rem;
                border: none;
                border-radius: 5px;
                font-weight: 600;
                cursor: pointer;
                transition: var(--lh-transition);
                &:first-child {
                    background-color: var(--lh-primary);
                    color: white;
                    &:hover {
                        background-color: darken(#6e45e2, 10%);
                    }
                }
                &:last-child {
                    background-color: var(--lh-light);
                    border: 1px solid var(--lh-dark);
                    &:hover {
                        background-color: var(--lh-dark);
                        color: white;
                    }
                }
            }
        }
    }
}

.lh-header-section {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--lh-transition);
    .lh-header-container {
        max-width: 1391px;
        margin: 0 auto;
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        .lh-header-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            .lh-logo-icon {
                font-size: 2rem;
                color: var(--lh-primary);
            }
            h1 {
                font-family: var(--lh-text-heading);
                font-size: 1.5rem;
                background: var(--lh-gradient);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
        }
        .lh-header-nav {
            display: flex;
            align-items: center;
            gap: 2rem;
            .lh-nav-list {
                display: flex;
                list-style: none;
                gap: 1.5rem;
                .lh-nav-link {
                    text-decoration: none;
                    color: var(--lh-dark);
                    font-weight: 600;
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                    transition: var(--lh-transition);
                    &:hover {
                        color: var(--lh-primary);
                    }
                    i {
                        font-size: 1.1rem;
                    }
                }
                .lh-active {
                    color: var(--lh-primary);
                }
            }
            .lh-header-buy {
                background: var(--lh-gradient);
                color: white;
                border: none;
                padding: 0.75rem 1.5rem;
                border-radius: 5px;
                font-weight: 600;
                cursor: pointer;
                display: flex;
                align-items: center;
                gap: 0.5rem;
                transition: var(--lh-transition);
                &:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
                }
                i {
                    font-size: 1.1rem;
                }
            }
            .lh-mobile-menu {
                display: none;
                font-size: 1.5rem;
                cursor: pointer;
            }
        }
    }
}

.lh-welcome-section {
    position: relative;
    height: 100%;
    min-height: 800px;
    display: flex;
    align-items: center;
    background: url('../lh-img/lh-bg-img-1.jpg') no-repeat center center;
    background-size: cover;
    padding-top: 4rem;
    padding-bottom: 2rem;
    .lh-welcome-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(42, 45, 59, 0.6);
    }
    .lh-welcome-content {
        position: relative;
        z-index: 1;
        max-width: 1391px;
        width: 90%;
        margin: 0 auto;
        color: white;
        text-align: center;
        h1 {
            font-family: var(--lh-text-heading);
            font-size: 4rem;
            margin-bottom: 1.5rem;
            animation: fadeInDown 1s ease;
        }
        p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            animation: fadeIn 1.5s ease;
        }
        .lh-welcome-button {
            background: var(--lh-gradient);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: var(--lh-transition);
            animation: fadeInUp 1s ease;
            &:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 25px rgba(110, 69, 226, 0.5);
            }
            i {
                font-size: 1.25rem;
            }
        }
        .lh-welcome-features {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 4rem;
            flex-wrap: wrap;
            .lh-feature-card {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 10px;
                padding: 2rem;
                width: 220px;
                transition: var(--lh-transition);
                animation: fadeInUp 0.5s ease;
                &:hover {
                    transform: translateY(-10px);
                    background: rgba(255, 255, 255, 0.2);
                }
                i {
                    font-size: 2.5rem;
                    margin-bottom: 1rem;
                    color: var(--lh-secondary);
                }
                h3 {
                    font-family: var(--lh-text-heading);
                    margin-bottom: 0.75rem;
                }
                p {
                    font-size: 0.9rem;
                    margin: 0;
                }
            }
        }
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lh-jackpot-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;

    .lh-jackpot-container {
        max-width: 1391px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        align-items: center;
        gap: 3rem;

        .lh-jackpot-content {
            flex: 1;
            h2 {
                font-family: var(--lh-text-heading);
                font-size: 2.5rem;
                margin-bottom: 1rem;
                color: var(--lh-primary);
                animation: fadeInLeft 1s ease;
            }
            .lh-jackpot-amount {
                font-family: var(--lh-text-heading);
                font-size: 3.5rem;
                color: var(--lh-accent);
                margin-bottom: 1.5rem;
                background: var(--lh-gradient);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                animation: pulse 2s infinite;
            }
            .lh-timer-display {
                display: flex;
                gap: 1.5rem;
                margin-bottom: 2rem;
                .lh-timer-unit {
                    text-align: center;
                    background: white;
                    padding: 1rem;
                    border-radius: 10px;
                    box-shadow: var(--lh-shadow);
                    min-width: 80px;
                    .lh-timer-value {
                        font-family: var(--lh-text-heading);
                        font-size: 2rem;
                        color: var(--lh-primary);
                        display: block;
                        margin-bottom: 0.25rem;
                    }
                    .lh-timer-label {
                        font-size: 0.9rem;
                        color: var(--lh-dark);
                        opacity: 0.8;
                    }
                }
            }
            p {
                margin-bottom: 2rem;
                font-size: 1.1rem;
                max-width: 500px;
            }
            .lh-jackpot-button {
                background: var(--lh-gradient);
                color: white;
                border: none;
                padding: 1rem 2rem;
                border-radius: 5px;
                font-weight: 600;
                cursor: pointer;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                transition: var(--lh-transition);
                &:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.3);
                }
                i {
                    font-size: 1.2rem;
                }
            }
        }
        .lh-jackpot-image {
            flex: 1;
            animation: fadeInRight 1s ease;
            img {
                width: 100%;
                height: auto;
                border-radius: 10px;
                box-shadow: var(--lh-shadow);
            }
        }
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lh-about-section {
    padding: 5rem 0;
    background-color: white;

    .lh-about-container {
        max-width: 1391px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        align-items: center;
        gap: 4rem;

        .lh-about-image {
            flex: 1;
            position: relative;
            animation: float 6s ease-in-out infinite;
            img {
                width: 100%;
                height: auto;
                border-radius: 10px;
                box-shadow: var(--lh-shadow);
            }
            &::before {
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                border: 5px solid var(--lh-secondary);
                border-radius: 10px;
                top: -20px;
                left: -20px;
                z-index: -1;
                animation: float 6s ease-in-out infinite 0.5s;
            }
        }
        .lh-about-content {
            flex: 1;
            h2 {
                font-family: var(--lh-text-heading);
                font-size: 2.5rem;
                margin-bottom: 1.5rem;
                color: var(--lh-primary);
            }
            p {
                margin-bottom: 1.5rem;
                font-size: 1.1rem;
                &:last-of-type {
                    margin-bottom: 2.5rem;
                }
            }
            .lh-about-stats {
                display: flex;
                gap: 1.5rem;
                .lh-stat-item {
                    text-align: center;
                    background: #f8f9fa;
                    padding: 1.5rem 1rem;
                    border-radius: 10px;
                    flex: 1;
                    i {
                        font-size: 2rem;
                        color: var(--lh-primary);
                        margin-bottom: 0.5rem;
                    }
                    span {
                        font-family: var(--lh-text-heading);
                        font-size: 1.5rem;
                        color: var(--lh-accent);
                        display: block;
                        margin-bottom: 0.25rem;
                    }
                    p {
                        font-size: 0.9rem;
                        margin: 0;
                        color: var(--lh-dark);
                        opacity: 0.8;
                    }
                }
            }
        }
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.lh-howto-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(110, 69, 226, 0.05) 0%, rgba(136, 211, 206, 0.05) 100%);

    .lh-howto-container {
        max-width: 1391px;
        margin: 0 auto;
        padding: 0 2rem;
        text-align: center;
        h2 {
            font-family: var(--lh-text-heading);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--lh-primary);
        }
        p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            color: var(--lh-dark);
        }
        .lh-howto-steps {
            display: flex;
            gap: 2rem;
            justify-content: center;
            .lh-step-card {
                background: white;
                border-radius: 10px;
                padding: 2rem;
                box-shadow: var(--lh-shadow);
                position: relative;
                overflow: hidden;
                transition: var(--lh-transition);
                flex: 1;
                max-width: 280px;
                &:hover {
                    transform: translateY(-10px);
                    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
                }
                .lh-step-number {
                    position: absolute;
                    top: 1rem;
                    right: 1rem;
                    font-family: var(--lh-text-heading);
                    font-size: 2rem;
                    color: rgba(110, 69, 226, 0.1);
                }
                i {
                    font-size: 2.5rem;
                    color: var(--lh-primary);
                    margin-bottom: 1.5rem;
                    display: inline-block;
                }
                h3 {
                    font-family: var(--lh-text-heading);
                    font-size: 1.5rem;
                    margin-bottom: 1rem;
                    color: var(--lh-dark);
                }
                p {
                    font-size: 1rem;
                    margin-bottom: 1.5rem;
                    color: var(--lh-dark);
                    opacity: 0.8;
                }
                .lh-step-button {
                    background: var(--lh-gradient);
                    color: white;
                    border: none;
                    padding: 0.75rem 1.5rem;
                    border-radius: 5px;
                    font-weight: 600;
                    cursor: pointer;
                    display: inline-flex;
                    align-items: center;
                    gap: 0.5rem;
                    transition: var(--lh-transition);
                    &:hover {
                        transform: translateY(-3px);
                        box-shadow: 0 5px 15px rgba(110, 69, 226, 0.3);
                    }
                    i {
                        font-size: 1rem;
                        color: white;
                        margin: 0;
                    }
                }
            }
        }
    }
}

.lh-testimonials-section {
    padding: 5rem 0;
    position: relative;
    
    .lh-testimonials-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(110, 69, 226, 0.8) 0%, rgba(255, 126, 95, 0.8) 100%);
        z-index: 0;
    }
    
    .lh-testimonials-container {
        position: relative;
        z-index: 1;
        max-width: 1391px;
        margin: 0 auto;
        padding: 0 2rem;
        text-align: center;
        
        h2 {
            font-family: var(--lh-text-heading);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: white;
        }
        
        p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .lh-testimonials-slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            margin: 2rem 0;
            padding: 0 1rem;

            #testimonials-slider {
                position: relative;
                width: 100%;
                overflow: hidden;
                margin: 2rem 0;
            }

            #testimonials-slider .lh-testimonials-slider {
                display: flex;
                transition: transform 0.5s ease;
            }

            #testimonials-slider .lh-testimonial-card {
                flex: 0 0 calc(33.333% - 20px);
                min-width: calc(33.333% - 20px);
                margin: 0 10px;
                box-sizing: border-box;
                background: white;
                border-radius: 10px;
                padding: 2rem;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                transition: all 0.3s ease;
            }
            
            .lh-testimonials-slider {
                display: flex;
                transition: transform 0.5s ease;
                will-change: transform;
                padding-bottom: 1rem;
                
                .lh-testimonial-card {
                    flex: 0 0 calc(33.333% - 1rem);
                    min-width: calc(33.333% - 1rem);
                    margin: 0 0.5rem;
                    background: white;
                    border-radius: 10px;
                    padding: 2rem;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                    transition: all 0.3s ease;
                    
                    &:hover {
                        transform: translateY(-5px);
                        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
                    }
                    
                    .lh-testimonial-header {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        margin-bottom: 1.5rem;
                        
                        img {
                            width: 60px;
                            height: 60px;
                            border-radius: 50%;
                            object-fit: cover;
                            border: 3px solid #88d3ce;
                        }
                        
                        .lh-testimonial-rating {
                            i {
                                color: #ffc107;
                                font-size: 1.2rem;
                            }
                        }
                    }
                    
                    h3 {
                        font-family: 'Playfair Display', serif;
                        font-size: 1.3rem;
                        margin-bottom: 1rem;
                        color: #6e45e2;
                    }
                    
                    p {
                        font-style: italic;
                        color: #2a2d3b;
                        margin-bottom: 1rem;
                        text-align: left;
                        font-family: 'Source Sans Pro', sans-serif;
                        line-height: 1.5;
                    }
                    
                    .lh-testimonial-date {
                        display: block;
                        font-size: 0.8rem;
                        color: #2a2d3b;
                        opacity: 0.6;
                        text-align: right;
                        font-family: 'Source Sans Pro', sans-serif;
                    }
                }
            }
        }
        .lh-testimonials-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .lh-testimonial-prev, 
        .lh-testimonial-next {
            background: #6e45e2;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lh-testimonial-prev:disabled, 
        .lh-testimonial-next:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
    }
}

.lh-faq-section {
    padding: 5rem 0;
    background-color: white;
    .lh-faq-container {
        max-width: 1391px;
        margin: 0 auto;
        padding: 0 2rem;
        h2 {
            font-family: var(--lh-text-heading);
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--lh-primary);
            text-align: center;
        }
        .lh-faq-columns {
            display: flex;
            gap: 3rem;
            .lh-faq-column {
                flex: 1;
                h3 {
                    font-family: var(--lh-text-heading);
                    font-size: 1.5rem;
                    margin-bottom: 1.5rem;
                    color: var(--lh-dark);
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                    i {
                        color: var(--lh-primary);
                    }
                }
                .lh-faq-item {
                    margin-bottom: 1rem;
                    border-radius: 8px;
                    overflow: hidden;
                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                    .lh-faq-question {
                        background: #f8f9fa;
                        padding: 1.25rem 1.5rem;
                        cursor: pointer;
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        transition: var(--lh-transition);
                        &:hover {
                            background: rgba(110, 69, 226, 0.1);
                        }
                        span {
                            font-weight: 600;
                            color: var(--lh-dark);
                        }
                        i {
                            color: var(--lh-primary);
                            transition: var(--lh-transition);
                        }
                    }
                    .lh-faq-answer {
                        padding: 0 1.5rem;
                        max-height: 0;
                        overflow: hidden;
                        transition: max-height 0.3s ease;
                        p {
                            padding: 1.5rem 0;
                            margin: 0;
                            border-top: 1px solid rgba(0, 0, 0, 0.05);
                        }
                    }
                }
            }
        }
        .lh-faq-contact {
            margin-top: 3rem;
            text-align: center;
            p {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
                color: var(--lh-dark);
            }
            .lh-faq-button {
                background: var(--lh-gradient);
                color: white;
                border: none;
                padding: 1rem 2rem;
                border-radius: 5px;
                font-weight: 600;
                cursor: pointer;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                transition: var(--lh-transition);
                &:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.3);
                }
                i {
                    font-size: 1.2rem;
                }
            }
        }
    }
}

.lh-subscribe-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(110, 69, 226, 0.05) 0%, rgba(136, 211, 206, 0.05) 100%);
    .lh-subscribe-container {
        max-width: 1391px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        align-items: center;
        gap: 3rem;
        .lh-subscribe-content {
            flex: 1;
            h2 {
                font-family: var(--lh-text-heading);
                font-size: 2.5rem;
                margin-bottom: 1rem;
                color: var(--lh-primary);
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
                color: var(--lh-dark);
            }
            .lh-subscribe-form {
                .lh-form-group {
                    position: relative;
                    margin-bottom: 1.5rem;
                    i {
                        position: absolute;
                        left: 1rem;
                        top: 50%;
                        transform: translateY(-50%);
                        color: var(--lh-dark);
                        opacity: 0.6;
                    }
                    input {
                        width: 100%;
                        padding: 0.75rem 1rem 0.75rem 2.5rem;
                        border: 1px solid #ddd;
                        border-radius: 5px;
                        font-family: var(--lh-text-body);
                        transition: var(--lh-transition);
                        &:focus {
                            outline: none;
                            border-color: var(--lh-primary);
                            box-shadow: 0 0 0 3px rgba(110, 69, 226, 0.2);
                        }
                    }
                    .lh-error-message {
                        color: #e74c3c;
                        font-size: 0.8rem;
                        margin-top: 0.25rem;
                        display: none;
                    }
                    &.lh-error {
                        input {
                            border-color: #e74c3c;
                        }
                        .lh-error-message {
                            display: block;
                        }
                    }
                }
                .lh-form-check {
                    margin-bottom: 1.5rem;
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                    input {
                        width: auto;
                    }
                    label {
                        margin: 0;
                        font-size: 0.9rem;
                        a {
                            color: var(--lh-primary);
                            text-decoration: none;
                            &:hover {
                                text-decoration: underline;
                            }
                        }
                    }
                }
                .lh-subscribe-button {
                    background: var(--lh-gradient);
                    color: white;
                    border: none;
                    padding: 1rem 2rem;
                    border-radius: 5px;
                    font-weight: 600;
                    cursor: pointer;
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 0.5rem;
                    transition: var(--lh-transition);
                    &:disabled {
                        background: #ddd;
                        cursor: not-allowed;
                    }
                    &:hover:not(:disabled) {
                        transform: translateY(-3px);
                        box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
                    }
                    i {
                        font-size: 1.1rem;
                    }
                }
            }
        }
        .lh-subscribe-image {
            flex: 1;
            animation: bounce 3s ease infinite;
            img {
                width: 100%;
                height: auto;
            }
        }
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.lh-responsibility-section {
    padding: 5rem 0;
    background-color: white;
    .lh-responsibility-container {
        max-width: 1391px;
        margin: 0 auto;
        padding: 0 2rem;
        h2 {
            font-family: var(--lh-text-heading);
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--lh-primary);
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.75rem;
            i {
                color: var(--lh-accent);
            }
        }
        .lh-responsibility-content {
            max-width: 900px;
            margin: 0 auto;
            p {
                margin-bottom: 1.5rem;
                font-size: 1.1rem;
                color: var(--lh-dark);
            }
            ul {
                margin-bottom: 2rem;
                li {
                    margin-bottom: 0.75rem;
                    display: flex;
                    align-items: flex-start;
                    gap: 0.5rem;
                    i {
                        color: var(--lh-primary);
                        margin-top: 0.2rem;
                    }
                }
            }
            .lh-support-links {
                display: flex;
                flex-wrap: wrap;
                gap: 1.5rem;
                justify-content: center;
                margin-bottom: 2rem;
                .lh-support-link {
                    img {
                        height: 50px;
                        width: auto;
                        opacity: 0.8;
                        transition: var(--lh-transition);
                        &:hover {
                            opacity: 1;
                            transform: translateY(-3px);
                        }
                    }
                }
            }
            .lh-read-more {
                background: none;
                border: none;
                color: var(--lh-primary);
                font-weight: 600;
                cursor: pointer;
                display: flex;
                align-items: center;
                gap: 0.5rem;
                margin: 0 auto;
                i {
                    transition: var(--lh-transition);
                }
            }
            .lh-more-content {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
                p {
                    &:last-of-type {
                        margin-bottom: 1.5rem;
                    }
                }
                .lh-full-link {
                    color: var(--lh-primary);
                    text-decoration: none;
                    font-weight: 600;
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                    transition: var(--lh-transition);
                    &:hover {
                        gap: 1rem;
                        i {
                            transform: translateX(5px);
                        }
                    }
                    i {
                        transition: var(--lh-transition);
                    }
                }
            }
        }
    }
}

.lh-ticket-section {
    padding: 5rem 0;
    position: relative;
    .lh-ticket-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(110, 69, 226, 0.9) 0%, rgba(255, 126, 95, 0.9) 100%);
        z-index: 0;
    }
    .lh-ticket-container {
        position: relative;
        z-index: 1;
        max-width: 1391px;
        margin: 0 auto;
        padding: 0 2rem;
        text-align: center;
        h2 {
            font-family: var(--lh-text-heading);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: white;
        }
        p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            color: rgba(255, 255, 255, 0.9);
        }
        .lh-ticket-button {
            background: white;
            color: var(--lh-primary);
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: var(--lh-transition);
            &:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
            }
            i {
                font-size: 1.25rem;
            }
        }
    }
}

@media (max-width: 1024px) {
    .lh-jackpot-section {
        .lh-jackpot-container {
            flex-direction: column;
            gap: 2rem;
            .lh-jackpot-content {
                text-align: center;
                .lh-jackpot-amount {
                    font-size: 3rem;
                }
                p {
                    margin-left: auto;
                    margin-right: auto;
                }
            }
        }
    }
    .lh-about-section {
        .lh-about-container {
            gap: 2rem;
            .lh-about-stats {
                flex-wrap: wrap;
                .lh-stat-item {
                    min-width: calc(50% - 0.75rem);
                }
            }
        }
    }
    .lh-howto-section {
        .lh-howto-steps {
            flex-wrap: wrap;
            .lh-step-card {
                min-width: calc(50% - 1rem);
            }
        }
    }
    #testimonials-slider .lh-testimonial-card {
        flex: 0 0 calc(50% - 20px);
        min-width: calc(50% - 20px);
    }
    .lh-faq-section {
        .lh-faq-columns {
            flex-direction: column;
        }
    }
    .lh-subscribe-section {
        .lh-subscribe-container {
            flex-direction: column;
            .lh-subscribe-content {
                text-align: center;
                .lh-subscribe-form {
                    max-width: 500px;
                    margin: 0 auto;
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .lh-jackpot-section {
        padding: 3rem 0;
        .lh-jackpot-container {
            .lh-jackpot-content {
                h2 {
                    font-size: 2rem;
                }
                .lh-jackpot-amount {
                    font-size: 2.5rem;
                }
                .lh-timer-display {
                    gap: 1rem;
                    .lh-timer-unit {
                        min-width: 70px;
                        .lh-timer-value {
                            font-size: 1.5rem;
                        }
                    }
                }
            }
        }
    }
    .lh-about-section {
        padding: 3rem 0;
        .lh-about-container {
            flex-direction: column;
            .lh-about-image {
                margin-bottom: 2rem;
                &::before {
                    top: -10px;
                    left: -10px;
                }
            }
            .lh-about-content {
                h2 {
                    font-size: 2rem;
                }
            }
        }
    }
    .lh-howto-section {
        padding: 3rem 0;
        .lh-howto-steps {
            .lh-step-card {
                min-width: 100%;
                max-width: 100%;
            }
        }
    }
    .lh-testimonials-section {
        padding: 3rem 0;        
        .lh-testimonials-container {
            p {
                margin-bottom: 2rem;
            }
            #testimonials-slider .lh-testimonial-card {
                flex: 0 0 calc(100% - -10px);
                min-width: calc(100% - 12px);
            }
        }
    }
    .lh-subscribe-section {
        padding: 3rem 0;
    }
    .lh-responsibility-section {
        padding: 3rem 0;
        .lh-responsibility-container {
            h2 {
                font-size: 2rem;
            }
        }
    }
    .lh-ticket-section {
        padding: 3rem 0;
        .lh-ticket-container {
            h2 {
                font-size: 2rem;
            }
        }
    }
}

@media (max-width: 480px) {
    .lh-jackpot-section {
        .lh-jackpot-container {
            .lh-jackpot-content {
                h2 {
                    font-size: 1.8rem;
                }
                .lh-jackpot-amount {
                    font-size: 2rem;
                }
                .lh-timer-display {
                    flex-wrap: wrap;
                    justify-content: center;
                    .lh-timer-unit {
                        min-width: calc(50% - 0.5rem);
                    }
                }
            }
        }
    }
    .lh-about-section {
        .lh-about-container {
            .lh-about-content {
                .lh-about-stats {
                    .lh-stat-item {
                        min-width: 100%;
                    }
                }
            }
        }
    }
    .lh-testimonials-section {
        .lh-testimonials-container {
            .lh-testimonial-card {
                .lh-testimonial-header {
                    flex-direction: column;
                    gap: 1rem;
                    text-align: center;
                    
                    .lh-testimonial-rating {
                        margin-top: 0.5rem;
                    }
                }
                
                p {
                    text-align: center;
                }
                
                .lh-testimonial-date {
                    text-align: center;
                }
            }
        }
    }
    .lh-responsibility-section {
        .lh-responsibility-container {
            .lh-responsibility-content {
                .lh-support-links {
                    flex-direction: column;
                    align-items: center;
                    .lh-support-link {
                        width: 100%;
                        text-align: center;
                        img {
                            height: 40px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 320px) {
    .lh-jackpot-section {
        .lh-jackpot-container {
            .lh-jackpot-content {
                h2 {
                    font-size: 1.5rem;
                }
            }
        }
    }
    .lh-howto-section {
        .lh-howto-container {
            h2 {
                font-size: 2rem;
            }
        }
    }
    .lh-testimonials-section {
        .lh-testimonials-slider-container {
            .lh-testimonials-slider {
                .lh-testimonial-card {
                    flex: 0 0 calc(16% - .5rem);
                }
            }
        }
    }
}

.lh-footer-section {
    background-color: var(--lh-dark);
    color: white;
    padding: 4rem 0 0;
    .lh-footer-container {
        max-width: 1391px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        .lh-footer-logo {
            flex: 1;
            min-width: 250px;
            .lh-logo-icon {
                font-size: 2.5rem;
                color: var(--lh-secondary);
                margin-bottom: 1rem;
            }
            h3 {
                font-family: var(--lh-text-heading);
                font-size: 1.75rem;
                margin-bottom: 0.5rem;
                background: linear-gradient(to right, var(--lh-secondary), var(--lh-accent));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
            p {
                margin-bottom: 0.5rem;
                opacity: 0.8;
                font-size: 0.9rem;
            }
        }
        .lh-footer-links {
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            .lh-link-group {
                min-width: 180px;
                h4 {
                    font-family: var(--lh-text-heading);
                    margin-bottom: 1.5rem;
                    font-size: 1.2rem;
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                    i {
                        font-size: 1.1rem;
                    }
                }
                ul {
                    list-style: none;
                    li {
                        margin-bottom: 0.75rem;
                        a {
                            color: rgba(255, 255, 255, 0.7);
                            text-decoration: none;
                            transition: var(--lh-transition);
                            display: flex;
                            align-items: center;
                            gap: 0.5rem;
                            cursor: pointer;
                            &:hover {
                                color: white;
                                padding-left: 5px;
                            }
                            i {
                                font-size: 1rem;
                            }
                        }
                    }
                }
                .lh-contact-info {
                    p {
                        margin-bottom: 0.75rem;
                        display: flex;
                        align-items: center;
                        gap: 0.5rem;
                        i {
                            font-size: 1.1rem;
                        }
                    }
                }
            }
        }
    }
    .lh-footer-bottom {
        text-align: center;
        padding: 1.5rem;
        margin-top: 3rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        p {
            font-size: 0.8rem;
            opacity: 0.7;
        }
    }
}

.lh-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(42, 45, 59, 0.9);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transform: translateY(100%);
    transition: var(--lh-transition);
    &.lh-show {
        transform: translateY(0);
    }
    p {
        margin-right: 1rem;
        a {
            color: var(--lh-secondary);
            text-decoration: none;
            &:hover {
                text-decoration: underline;
            }
        }
    }
    .lh-cookie-accept {
        background-color: var(--lh-secondary);
        color: var(--lh-dark);
        border: none;
        padding: 0.5rem 1.5rem;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: var(--lh-transition);
        &:hover {
            background-color: darken(#88d3ce, 10%);
        }
        i {
            font-size: 1.1rem;
        }
    }
}

.lh-ticket-modal, .lh-contact-modal, .lh-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--lh-transition);
    &.lh-active {
        opacity: 1;
        visibility: visible;
        .lh-modal-content {
            transform: translateY(0);
        }
    }
    .lh-modal-content {
        background-color: white;
        border-radius: 10px;
        box-shadow: var(--lh-shadow);
        max-width: 800px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        padding: 2rem;
        position: relative;
        transform: translateY(-50px);
        transition: var(--lh-transition);
        .lh-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--lh-dark);
            transition: var(--lh-transition);
            &:hover {
                color: var(--lh-accent);
                transform: rotate(90deg);
            }
        }
        h2 {
            font-family: var(--lh-text-heading);
            margin-bottom: 1.5rem;
            color: var(--lh-primary);
            text-align: center;
        }
        .lh-modal-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
            button {
                padding: 0.75rem 1.5rem;
                background: none;
                border: none;
                border-bottom: 3px solid transparent;
                font-weight: 600;
                cursor: pointer;
                transition: var(--lh-transition);
                &.lh-tab-active {
                    color: var(--lh-primary);
                    border-bottom-color: var(--lh-primary);
                }
                &:hover:not(.lh-tab-active) {
                    color: var(--lh-accent);
                }
            }
        }
        .lh-tab-content {
            display: none;
            &.lh-active-tab {
                display: block;
            }
        }
        .lh-form-group {
            margin-bottom: 1.5rem;
            position: relative;
            label {
                display: block;
                margin-bottom: 0.5rem;
                font-weight: 600;
            }
            input, select, textarea {
                width: 100%;
                padding: 0.75rem 1rem 0.75rem 2.5rem;
                border: 1px solid #ddd;
                border-radius: 5px;
                font-family: var(--lh-text-body);
                transition: var(--lh-transition);
                &:focus {
                    outline: none;
                    border-color: var(--lh-primary);
                    box-shadow: 0 0 0 3px rgba(110, 69, 226, 0.2);
                }
            }
            i {
                position: absolute;
                left: 1rem;
                top: 2.6rem;
                color: var(--lh-dark);
                opacity: 0.7;
            }
            .lh-error-message {
                color: #e74c3c;
                font-size: 0.8rem;
                margin-top: 0.25rem;
                display: none;
            }
            &.lh-error {
                input, select, textarea {
                    border-color: #e74c3c;
                }
                .lh-error-message {
                    display: block;
                }
            }
        }
        .lh-form-check {
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            input {
                width: auto;
            }
            label {
                margin: 0;
                font-weight: normal;
                a {
                    color: var(--lh-primary);
                    text-decoration: none;
                    &:hover {
                        text-decoration: underline;
                    }
                }
            }
        }
        .lh-form-submit {
            background: var(--lh-gradient);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            transition: var(--lh-transition);
            &:disabled {
                background: #ddd;
                cursor: not-allowed;
            }
            &:hover:not(:disabled) {
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
            }
            i {
                font-size: 1.1rem;
            }
        }
        .lh-number-selector {
            margin-bottom: 2rem;
            h3 {
                margin-bottom: 1rem;
                font-size: 1.1rem;
            }
            .lh-number-grid {
                display: flex;
                flex-wrap: wrap;
                gap: 0.5rem;
                margin-bottom: 1.5rem;
                .lh-number-btn {
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    border: 2px solid var(--lh-primary);
                    background: none;
                    font-weight: 600;
                    cursor: pointer;
                    transition: var(--lh-transition);
                    &:hover {
                        background-color: rgba(110, 69, 226, 0.1);
                    }
                    &.lh-selected {
                        background-color: var(--lh-primary);
                        color: white;
                    }
                }
            }
            .lh-number-controls {
                display: flex;
                gap: 1rem;
                margin-bottom: 1.5rem;
                button {
                    padding: 0.5rem 1rem;
                    background: none;
                    border: 1px solid var(--lh-dark);
                    border-radius: 5px;
                    cursor: pointer;
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                    transition: var(--lh-transition);
                    &:hover {
                        background-color: var(--lh-dark);
                        color: white;
                    }
                    i {
                        font-size: 1rem;
                    }
                }
            }
            .lh-selected-numbers {
                background-color: #f8f9fa;
                padding: 1rem;
                border-radius: 5px;
                h4 {
                    margin-bottom: 0.5rem;
                }
                .lh-numbers-display {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 0.5rem;
                    span {
                        background-color: var(--lh-primary);
                        color: white;
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-weight: 600;
                    }
                }
            }
        }
    }
}

.lh-success-modal {
    .lh-modal-content {
        text-align: center;
        .lh-success-icon {
            font-size: 4rem;
            color: #2ecc71;
            margin-bottom: 1.5rem;
        }
        .lh-success-message {
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }
        .lh-success-button {
            background: var(--lh-primary);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--lh-transition);
            &:hover {
                background-color: darken(#6e45e2, 10%);
            }
        }
    }
}

.lh-back-to-top {
    position: fixed;
    bottom: 11.2rem;
    right: 1.4rem;
    width: 50px;
    height: 50px;
    border-radius: 5%;
    background: var(--lh-gradient);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--lh-transition);
    z-index: 999;
    &:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
    }
    &.lh-show {
        opacity: 1;
        visibility: visible;
    }
}

.lh-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--lh-transition);
    &.lh-active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 1024px) {
    .lh-header-section {
        .lh-header-container {
            .lh-header-nav {
                .lh-nav-list {
                    gap: 1rem;
                }
            }
        }
    }
    .lh-welcome-section {
        .lh-welcome-content {
            h1 {
                font-size: 3rem;
            }
            .lh-welcome-features {
                .lh-feature-card {
                    width: 180px;
                    padding: 1.5rem;
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .lh-header-section {
        .lh-header-container {
            flex-wrap: wrap;
            .lh-header-nav {
                .lh-nav-list {
                    position: fixed;
                    top: 80px;
                    left: 0;
                    width: 100%;
                    background-color: white;
                    flex-direction: column;
                    align-items: center;
                    padding: 2rem;
                    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                    transform: translateY(-150%);
                    transition: var(--lh-transition);
                    &.lh-active {
                        transform: translateY(0);
                    }
                }
                .lh-mobile-menu {
                    display: block;
                }
            }
        }
    }
    .lh-welcome-section {
        min-height: 800px;
        .lh-welcome-content {
            h1 {
                font-size: 2.5rem;
            }
            p {
                font-size: 1.1rem;
            }
            .lh-welcome-features {
                .lh-feature-card {
                    width: 100%;
                    max-width: 300px;
                }
            }
        }
    }
    .lh-footer-section {
        .lh-footer-container {
            flex-direction: column;
            .lh-footer-links {
                flex-direction: column;
                gap: 2rem;
            }
        }
    }
}

@media (max-width: 480px) {
    .lh-header-section {
        .lh-header-container {
            padding: 1rem;
        }
    }
    .lh-welcome-section {
        .lh-welcome-content {
            h1 {
                font-size: 2rem;
            }
        }
    }
    .lh-cookie-consent {
        flex-direction: column;
        text-align: center;
        p {
            margin-right: 0;
            margin-bottom: 1rem;
        }
    }
}

@media (max-width: 320px) {
    .lh-welcome-section {
        .lh-welcome-content {
            h1 {
                font-size: 1.8rem;
            }
        }
    }
    .lh-header-section {
        .lh-header-container {
            flex-wrap: wrap;
            .lh-header-nav {
                .lh-nav-list {
                    top: 126px;
                    transform: translateY(-250%);
                }

            }
        }
    }
}

:root {
    --lhpg-privacy-primary: #6e45e2;
    --lhpg-privacy-secondary: #88d3ce;
    --lhpg-privacy-dark: #2a2d3b;
    --lhpg-privacy-light: #f8f9fa;
}

.lhpg-privacy-main {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--lhpg-privacy-dark);
    max-width: 1391px;
    margin: 0 auto;
    padding-top: 100px;
}

.lhpg-privacy-header {
    background: linear-gradient(135deg, rgba(110, 69, 226, 0.8), rgba(255, 126, 95, 0.8));
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    margin-bottom: 2rem;

    &-container {
        max-width: 800px;
        margin: 0 auto;
    }

    h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    p {
        font-size: 1.1rem;
        opacity: 0.9;
    }
}

.lhpg-privacy-content {
    padding: 0 1rem;

    &-container {
        max-width: 800px;
        margin: 0 auto;
    }
}

.lhpg-privacy-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;

    &:hover {
        transform: translateY(-5px);
    }

    h2 {
        font-family: 'Playfair Display', serif;
        color: var(--lhpg-privacy-primary);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.5rem;
    }

    p {
        line-height: 1.6;
        margin-bottom: 0;
    }
}

@media (max-width: 1024px) {
    .lhpg-privacy-main {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    .lhpg-privacy-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .lhpg-privacy-header {
        padding: 2rem 1rem;

        h1 {
            font-size: 1.8rem;
            flex-direction: column;
        }
    }

    .lhpg-privacy-item {
        padding: 1rem;
    }
}

@media (max-width: 320px) {
    .lhpg-privacy-header h2 {
        font-size: 1.5rem;
    }
}

:root {
    --lhpg-tos-primary: #ff7e5f;
    --lhpg-tos-secondary: #6e45e2;
    --lhpg-tos-dark: #2a2d3b;
}

.lhpg-tos-main {
    font-family: 'Source Sans Pro', sans-serif;
    max-width: 1391px;
    margin: 0 auto;
    padding-top: 100px;
}

.lhpg-tos-header {
    background: linear-gradient(135deg, var(--lhpg-tos-primary), var(--lhpg-tos-secondary));
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    margin-bottom: 2rem;

    &-container {
        max-width: 800px;
        margin: 0 auto;
    }

    h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
}

.lhpg-tos-content {
    padding: 0 1rem;

    &-container {
        max-width: 800px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 1.5rem;
    }
}

.lhpg-tos-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;

    &:hover {
        transform: translateY(-5px);
    }

    h2 {
        font-family: 'Playfair Display', serif;
        color: var(--lhpg-tos-primary);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 1024px) {
    .lhpg-tos-content-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .lhpg-tos-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .lhpg-tos-content-container {
        grid-template-columns: 1fr;
    }

    .lhpg-tos-header {
        padding: 2rem 1rem;
    }
}

@media (max-width: 320px) {
    .lhpg-tos-header h2 {
        font-size: 1.5rem;
    }
}

:root {
    --lhpg-cookie-primary: #6e45e2;
    --lhpg-cookie-secondary: #88d3ce;
    --lhpg-cookie-dark: #2a2d3b;
}

.lhpg-cookie-main {
    font-family: 'Source Sans Pro', sans-serif;
    max-width: 1391px;
    margin: 0 auto;
    padding-top: 100px;
}

.lhpg-cookie-header {
    background: linear-gradient(135deg, var(--lhpg-cookie-primary), var(--lhpg-cookie-secondary));
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    margin-bottom: 2rem;

    &-container {
        max-width: 800px;
        margin: 0 auto;
    }

    h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
}

.lhpg-cookie-content {
    padding: 0 1rem;

    &-container {
        max-width: 800px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 1.5rem;
    }
}

.lhpg-cookie-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;

    &:hover {
        transform: translateY(-5px);
    }

    h2 {
        font-family: 'Playfair Display', serif;
        color: var(--lhpg-cookie-primary);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .lhpg-cookie-content-container {
        grid-template-columns: 1fr;
    }
}

:root {
    --lhpg-404-primary: #6e45e2;
    --lhpg-404-secondary: #ff7e5f;
}

.lhpg-404-main {
    font-family: 'Source Sans Pro', sans-serif;
    max-width: 1391px;
    margin: 0 auto;
    padding-top: 100px;
    text-align: center;
}

.lhpg-404-header {
    background: linear-gradient(135deg, var(--lhpg-404-primary), var(--lhpg-404-secondary));
    color: white;
    padding: 4rem 1rem;

    h2 {
        font-family: 'Playfair Display', serif;
        font-size: 5rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    p {
        font-size: 1.5rem;
    }
}

.lhpg-404-content {
    padding: 2rem 1rem;

    p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
}

.lhpg-404-button {
    background: var(--lhpg-404-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;

    &:hover {
        transform: scale(1.05);
    }
}

:root {
    --lhpg-responsible-primary: #ff7e5f;
    --lhpg-responsible-secondary: #6e45e2;
    --lhpg-responsible-dark: #2a2d3b;
}

.lhpg-responsible-main {
    font-family: 'Source Sans Pro', sans-serif;
    max-width: 1391px;
    margin: 0 auto;
    padding-top: 100px;
}

.lhpg-responsible-header {
    background: linear-gradient(135deg, var(--lhpg-responsible-primary), var(--lhpg-responsible-secondary));
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    margin-bottom: 2rem;

    h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    p {
        font-size: 1.2rem;
        opacity: 0.9;
    }
}

.lhpg-responsible-content {
    padding: 0 1rem;

    &-container {
        max-width: 800px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 1.5rem;
    }
}

.lhpg-responsible-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;

    &:hover {
        transform: translateY(-5px);
    }

    h2 {
        font-family: 'Playfair Display', serif;
        color: var(--lhpg-responsible-primary);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    a {
        color: var(--lhpg-responsible-secondary);
        text-decoration: underline;
    }
}

@media (max-width: 768px) {
    .lhpg-responsible-content-container {
        grid-template-columns: 1fr;
    }

    .lhpg-responsible-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .lhpg-responsible-header {
        padding: 2rem 1rem;
    }
}