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

:root {
    --hqh-primary-gradient: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
    --hqh-secondary-gradient: linear-gradient(45deg, #1e293b 0%, #0f172a 100%);
    --hqh-accent-gradient: linear-gradient(120deg, #0ea5e9 0%, #7c3aed 100%);
    --hqh-dark-text: #e2f0ef;
    --hqh-light-text: #34af9f;
    --hqh-background: #0b1220;
    --hqh-card-bg: #111827;
    --hqh-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    --hqh-border-radius: 20px;
    --hqh-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--hqh-background);
    color: var(--hqh-dark-text);
    line-height: 1.6;
}

.hqh_header-navigation {
    background: var(--hqh-primary-gradient);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--hqh-shadow);
    position: relative;
    z-index: 1000;
}

.hqh_header-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hqh_header-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: var(--hqh-transition);
}

.hqh_header-logo:hover img {
    transform: rotate(15deg) scale(1.1);
}

.hqh_header-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--hqh-light-text);
    font-weight: 400;
}

.hqh_nav-toggle {
    display: none;
    font-size: 2rem;
    color: var(--hqh-light-text);
    cursor: pointer;
    transition: var(--hqh-transition);
}

.hqh_nav-toggle:hover {
    transform: scale(1.2);
}

.hqh_nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.hqh_nav-link {
    color: var(--hqh-light-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--hqh-transition);
    font-weight: 300;
}

.hqh_nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hqh_entertainment-showcase {
    background: var(--hqh-secondary-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hqh_entertainment-showcase {
    position: relative;
    overflow: hidden;
}

.hqh_entertainment-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqh_raindropFall 20s linear infinite;
    opacity: 0.3;
}

@keyframes hqh_raindropFall {
    0% {
        background: 
            radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 20% 35%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
            radial-gradient(circle at 35% 15%, rgba(255, 255, 255, 0.4) 3px, transparent 3px),
            radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 65% 40%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
            radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.4) 3px, transparent 3px),
            radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
        background-size: 200px 200px, 150px 150px, 250px 250px, 200px 200px, 150px 150px, 250px 250px, 200px 200px;
        background-position: 
            0% 0%, 
            20% 10%, 
            40% 5%, 
            60% 15%, 
            80% 8%, 
            100% 12%, 
            120% 3%;
    }
    25% {
        background: 
            radial-gradient(circle at 15% 45%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
            radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.4) 3px, transparent 3px),
            radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
            radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.4) 3px, transparent 3px),
            radial-gradient(circle at 105% 55%, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
        background-size: 200px 200px, 150px 150px, 250px 250px, 200px 200px, 150px 150px, 250px 250px, 200px 200px;
        background-position: 
            0% 25%, 
            20% 35%, 
            40% 30%, 
            60% 40%, 
            80% 33%, 
            100% 37%, 
            120% 28%;
    }
    50% {
        background: 
            radial-gradient(circle at 5% 70%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 25% 85%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
            radial-gradient(circle at 40% 65%, rgba(255, 255, 255, 0.4) 3px, transparent 3px),
            radial-gradient(circle at 55% 75%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 70% 90%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
            radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.4) 3px, transparent 3px),
            radial-gradient(circle at 95% 85%, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
        background-size: 200px 200px, 150px 150px, 250px 250px, 200px 200px, 150px 150px, 250px 250px, 200px 200px;
        background-position: 
            0% 50%, 
            20% 60%, 
            40% 55%, 
            60% 65%, 
            80% 58%, 
            100% 62%, 
            120% 53%;
    }
    75% {
        background: 
            radial-gradient(circle at 12% 95%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 28% 110%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
            radial-gradient(circle at 42% 95%, rgba(255, 255, 255, 0.4) 3px, transparent 3px),
            radial-gradient(circle at 58% 100%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 72% 115%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
            radial-gradient(circle at 88% 100%, rgba(255, 255, 255, 0.4) 3px, transparent 3px),
            radial-gradient(circle at 98% 115%, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
        background-size: 200px 200px, 150px 150px, 250px 250px, 200px 200px, 150px 150px, 250px 250px, 200px 200px;
        background-position: 
            0% 75%, 
            20% 85%, 
            40% 80%, 
            60% 90%, 
            80% 83%, 
            100% 87%, 
            120% 78%;
    }
    100% {
        background: 
            radial-gradient(circle at 8% 120%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 24% 135%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
            radial-gradient(circle at 38% 125%, rgba(255, 255, 255, 0.4) 3px, transparent 3px),
            radial-gradient(circle at 54% 125%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 68% 140%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
            radial-gradient(circle at 84% 130%, rgba(255, 255, 255, 0.4) 3px, transparent 3px),
            radial-gradient(circle at 94% 145%, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
        background-size: 200px 200px, 150px 150px, 250px 250px, 200px 200px, 150px 150px, 250px 250px, 200px 200px;
        background-position: 
            0% 100%, 
            20% 110%, 
            40% 105%, 
            60% 115%, 
            80% 108%, 
            100% 112%, 
            120% 103%;
    }
}

.hqh_entertainment-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqh_raindropFallSecondary 15s linear infinite;
    opacity: 0.2;
}

@keyframes hqh_raindropFallSecondary {
    0% {
        background: 
            radial-gradient(circle at 5% 5%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
            radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
            radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
            radial-gradient(circle at 45% 10%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
            radial-gradient(circle at 55% 35%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
            radial-gradient(circle at 65% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
            radial-gradient(circle at 75% 40%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 85% 5%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
            radial-gradient(circle at 95% 45%, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
        background-size: 100px 100px;
        background-position: 
            0% 0%, 
            10% 5%, 
            20% 3%, 
            30% 8%, 
            40% 2%, 
            50% 9%, 
            60% 4%, 
            70% 10%, 
            80% 1%, 
            90% 11%;
    }
    100% {
        background: 
            radial-gradient(circle at 5% 105%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
            radial-gradient(circle at 15% 125%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 25% 115%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
            radial-gradient(circle at 35% 130%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
            radial-gradient(circle at 45% 110%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
            radial-gradient(circle at 55% 135%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
            radial-gradient(circle at 65% 120%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
            radial-gradient(circle at 75% 140%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
            radial-gradient(circle at 85% 105%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
            radial-gradient(circle at 95% 145%, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
        background-size: 100px 100px;
        background-position: 
            0% 100%, 
            10% 105%, 
            20% 103%, 
            30% 108%, 
            40% 102%, 
            50% 109%, 
            60% 104%, 
            70% 110%, 
            80% 101%, 
            90% 111%;
    }
}

@media (max-width: 480px) {
    .hqh_entertainment-showcase::before,
    .hqh_entertainment-showcase::after {
        animation: none;
        opacity: 0.1;
    }
}

.hqh_showcase-content {
    text-align: center;
    color: var(--hqh-light-text);
    z-index: 2;
    position: relative;
    max-width: 800px;
}

.hqh_entertainment-showcase h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: hqh_textGlow 3s ease-in-out infinite alternate;
}

@keyframes hqh_textGlow {
    from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8); }
}

.hqh_showcase-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hqh_entertainment-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--hqh-border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
    display: inline-block;
    animation: hqh_statsPulse 4s ease-in-out infinite;
}

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

.hqh_stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
}

.hqh_stat-item i {
    font-size: 2rem;
    animation: hqh_iconFloat 3s ease-in-out infinite;
}

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

.hqh_countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: hqh_timerSlide 1s ease-out;
}

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

.hqh_timer-segment {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 100px;
    backdrop-filter: blur(10px);
    transition: var(--hqh-transition);
}

.hqh_timer-segment:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.hqh_timer-value {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    font-family: 'Cormorant Garamond', serif;
}

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

.hqh_showcase-actions {
    margin-top: 2rem;
}

.hqh_action-button {
    background: var(--hqh-accent-gradient);
    color: var(--hqh-dark-text);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-weight: bold;
    transition: var(--hqh-transition);
    animation: hqh_buttonPulse 2s ease-in-out infinite;
}

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

.hqh_action-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hqh_package-selection {
    padding: 6rem 2rem;
    background: var(--hqh-background);
}

.hqh_package-selection h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--hqh-dark-text);
}

.hqh_package-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hqh_package-card {
    background: var(--hqh-card-bg);
    border-radius: var(--hqh-border-radius);
    padding: 3rem;
    box-shadow: var(--hqh-shadow);
    transition: var(--hqh-transition);
    position: relative;
    overflow: hidden;
}

.hqh_package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--hqh-primary-gradient);
    opacity: 0.1;
    transition: var(--hqh-transition);
}

.hqh_package-card:hover::before {
    left: 0;
}

.hqh_package-card:hover {
    transform: translateY(-10px) rotate(1deg);
}

.hqh_package-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hqh_package-header i {
    font-size: 2.5rem;
    color: #7dd3fc;
    animation: hqh_iconSpin 8s linear infinite;
}

@keyframes hqh_iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hqh_package-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--hqh-dark-text);
}

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

.hqh_package-offer {
    font-size: 1.5rem;
    font-weight: bold;
    color: #7dd3fc;
    margin-bottom: 1rem;
}

.hqh_package-price {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--hqh-dark-text);
    margin-bottom: 1.5rem;
}

.hqh_package-description {
    margin-bottom: 2rem;
    min-height: 60px;
}

.hqh_package-button {
    background: var(--hqh-primary-gradient);
    color: var(--hqh-light-text);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--hqh-transition);
}

.hqh_package-button:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.hqh_responsible-engagement {
    padding: 6rem 2rem;
    background: var(--hqh-accent-gradient);
    text-align: center;
}

.hqh_responsible-engagement h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--hqh-dark-text);
}

.hqh_responsible-engagement > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hqh_partner-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hqh_partner-item {
    background: #fff;
    padding: 2rem;
    border-radius: var(--hqh-border-radius);
    transition: var(--hqh-transition);
    box-shadow: var(--hqh-shadow);
}

.hqh_partner-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.hqh_partner-item img {
    width: 120px;
    height: 60px;
    transition: var(--hqh-transition);
}

.hqh_site-footer {
    background: var(--hqh-dark-text);
    color: var(--hqh-light-text);
    padding: 4rem 2rem 2rem;
}

.hqh_footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hqh_footer-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.hqh_footer-brand .hqh_footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.hqh_footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hqh_footer-links a {
    color: var(--hqh-light-text);
    text-decoration: none;
    transition: var(--hqh-transition);
    opacity: 0.8;
}

.hqh_footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.hqh_responsible-content {
    flex: 1;
    max-width: 400px;
}

.hqh_responsible-content p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.hqh_age-restriction {
    background: var(--hqh-secondary-gradient);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.hqh_footer-copyright {
    opacity: 0.7;
}

.hqh_footer-social {
    display: flex;
    gap: 1rem;
}

.hqh_social-link {
    color: var(--hqh-light-text);
    font-size: 1.5rem;
    transition: var(--hqh-transition);
    opacity: 0.8;
}

.hqh_social-link:hover {
    opacity: 1;
    transform: scale(1.2);
}

.hqh_cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--hqh-dark-text);
    color: var(--hqh-light-text);
    padding: 1.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
}

.hqh_cookie-consent-bar.show {
    transform: translateY(0);
}

.hqh_cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hqh_cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hqh_cookie-learn {
    color: var(--hqh-light-text);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--hqh-transition);
}

.hqh_cookie-learn:hover {
    opacity: 1;
}

.hqh_cookie-accept {
    background: var(--hqh-primary-gradient);
    color: var(--hqh-light-text);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--hqh-transition);
}

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

.hqh_age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.hqh_age-confirmation-dialog {
    background: var(--hqh-card-bg);
    padding: 3rem;
    border-radius: var(--hqh-border-radius);
    text-align: center;
    max-width: 500px;
    margin: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: hqh_modalAppear 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes hqh_modalAppear {
    from { transform: scale(0.8) translateY(50px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.hqh_age-header {
    margin-bottom: 2rem;
}

.hqh_age-header i {
    font-size: 4rem;
    color: #7dd3fc;
    margin-bottom: 1rem;
}

.hqh_age-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--hqh-dark-text);
}

.hqh_age-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hqh_age-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hqh_age-confirm {
    background: var(--hqh-primary-gradient);
    color: var(--hqh-light-text);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--hqh-transition);
    font-weight: bold;
}

.hqh_age-confirm:hover {
    transform: scale(1.05);
}

.hqh_age-deny {
    background: transparent;
    color: var(--hqh-dark-text);
    border: 2px solid var(--hqh-dark-text);
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--hqh-transition);
}

.hqh_age-deny:hover {
    background: var(--hqh-dark-text);
    color: var(--hqh-light-text);
}

@media (max-width: 1024px) {
    .hqh_entertainment-showcase h1 {
        font-size: 3rem;
    }
    
    .hqh_countdown-timer {
        gap: 1rem;
    }
    
    .hqh_timer-segment {
        min-width: 80px;
        padding: 1rem;
    }
    
    .hqh_timer-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hqh_header-navigation {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .hqh_nav-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .hqh_nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .hqh_nav-menu.active {
        display: flex;
    }
    
    .hqh_entertainment-showcase h1 {
        font-size: 2.5rem;
    }
    
    .hqh_showcase-subtitle {
        font-size: 1.2rem;
    }
    
    .hqh_countdown-timer {
        flex-wrap: wrap;
    }
    
    .hqh_package-card {
        padding: 2rem;
    }
    
    .hqh_footer-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hqh_footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hqh_header-navigation {
        padding: 0.5rem;
    }
    
    .hqh_header-title {
        font-size: 1.5rem;
    }
    
    .hqh_entertainment-showcase {
        padding: 2rem 1rem;
    }
    
    .hqh_entertainment-showcase h1 {
        font-size: 2rem;
    }
    
    .hqh_showcase-subtitle {
        font-size: 1rem;
    }
    
    .hqh_countdown-timer {
        gap: 0.5rem;
    }
    
    .hqh_timer-segment {
        min-width: 70px;
        padding: 0.8rem;
    }
    
    .hqh_timer-value {
        font-size: 1.5rem;
    }
    
    .hqh_package-selection,
    .hqh_responsible-engagement {
        padding: 3rem 1rem;
    }
    
    .hqh_package-selection h2,
    .hqh_responsible-engagement h2 {
        font-size: 2rem;
    }
    
    .hqh_package-card {
        padding: 1.5rem;
    }
    
    .hqh_partner-links {
        flex-direction: column;
        align-items: center;
    }
    
    .hqh_cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hqh_age-confirmation-dialog {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .hqh_age-actions {
        flex-direction: column;
    }
    
    .hqh_age-confirm,
    .hqh_age-deny {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hqh_entertainment-showcase::before {
        animation: none;
    }
    
    .hqh_entertainment-showcase h1,
    .hqh_package-card,
    .hqh_timer-segment,
    .hqh_action-button,
    .hqh_package-button {
        transform: none !important;
        animation: none !important;
    }
    
    .hqh_stat-item i,
    .hqh_package-header i {
        animation: none;
    }
}

@media (max-width: 320px) {
    .hqh_header-branding {
        flex-direction: column;
        text-align: center;
    }
    
    .hqh_entertainment-showcase h1 {
        font-size: 1.8rem;
    }
    
    .hqh_timer-segment {
        min-width: 60px;
        padding: 0.5rem;
    }
    
    .hqh_timer-value {
        font-size: 1.3rem;
    }
}

.hqhpg_registration-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
}

.hqhpg_registration-hero {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.hqhpg_registration-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqhpg_patternFloat 20s linear infinite;
    opacity: 0.3;
}

@keyframes hqhpg_patternFloat {
    0% {
        background: 
            radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 60% 45%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 80% 35%, rgba(255, 255, 255, 0.2) 5px, transparent 5px);
        background-size: 150px 150px;
        background-position: 
            0% -100px,
            15% -80px,
            30% -120px,
            45% -90px,
            60% -110px,
            75% -95px,
            90% -105px,
            25% -115px,
            85% -85px;
        transform: rotate(0deg);
    }
    25% {
        background: 
            radial-gradient(circle at 15% 35%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 35% 50%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 55% 40%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 75% 55%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 95% 45%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 25% 65%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 45% 75%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 65% 70%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 85% 60%, rgba(255, 255, 255, 0.2) 5px, transparent 5px);
        background-size: 150px 150px;
        background-position: 
            5% 0px,
            20% 20px,
            35% -10px,
            50% 10px,
            65% -5px,
            80% 15px,
            95% 5px,
            30% -15px,
            90% 25px;
        transform: rotate(90deg);
    }
    50% {
        background: 
            radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 40% 75%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 60% 65%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 100% 70%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 30% 90%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 70% 95%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 90% 85%, rgba(255, 255, 255, 0.2) 5px, transparent 5px);
        background-size: 150px 150px;
        background-position: 
            10% 100px,
            25% 120px,
            40% 80px,
            55% 110px,
            70% 90px,
            85% 105px,
            100% 95px,
            35% 85px,
            95% 115px;
        transform: rotate(180deg);
    }
    75% {
        background: 
            radial-gradient(circle at 5% 85%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 25% 100%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 45% 90%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 65% 105%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 85% 95%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 15% 115%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 35% 125%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 55% 120%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 75% 110%, rgba(255, 255, 255, 0.2) 5px, transparent 5px);
        background-size: 150px 150px;
        background-position: 
            -5% 200px,
            10% 220px,
            25% 180px,
            40% 210px,
            55% 190px,
            70% 205px,
            85% 195px,
            20% 185px,
            80% 215px;
        transform: rotate(270deg);
    }
    100% {
        background: 
            radial-gradient(circle at 10% 110%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 30% 125%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 50% 115%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 70% 130%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 90% 120%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 20% 140%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 40% 150%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 60% 145%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 80% 135%, rgba(255, 255, 255, 0.2) 5px, transparent 5px);
        background-size: 150px 150px;
        background-position: 
            0% 300px,
            15% 320px,
            30% 280px,
            45% 310px,
            60% 290px,
            75% 305px,
            90% 295px,
            25% 285px,
            85% 315px;
        transform: rotate(360deg);
    }
}

.hqhpg_registration-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqhpg_patternFloatSecondary 25s linear infinite reverse;
    opacity: 0.2;
}

@keyframes hqhpg_patternFloatSecondary {
    0% {
        background: 
            radial-gradient(ellipse at 20% 15%, rgba(255, 255, 255, 0.3) 8px 4px, transparent 8px),
            radial-gradient(ellipse at 45% 25%, rgba(255, 255, 255, 0.2) 6px 3px, transparent 6px),
            radial-gradient(ellipse at 65% 10%, rgba(255, 255, 255, 0.4) 10px 5px, transparent 10px),
            radial-gradient(ellipse at 85% 30%, rgba(255, 255, 255, 0.3) 7px 4px, transparent 7px),
            radial-gradient(ellipse at 30% 40%, rgba(255, 255, 255, 0.2) 5px 3px, transparent 5px),
            radial-gradient(ellipse at 55% 35%, rgba(255, 255, 255, 0.4) 9px 5px, transparent 9px),
            radial-gradient(ellipse at 75% 45%, rgba(255, 255, 255, 0.3) 6px 4px, transparent 6px);
        background-size: 200px 200px;
        background-position: 
            -50px -50px,
            50px -30px,
            150px -70px,
            250px -40px,
            100px 20px,
            200px 10px,
            300px 30px;
        transform: rotate(0deg) scale(1);
    }
    50% {
        background: 
            radial-gradient(ellipse at 25% 65%, rgba(255, 255, 255, 0.3) 8px 4px, transparent 8px),
            radial-gradient(ellipse at 50% 75%, rgba(255, 255, 255, 0.2) 6px 3px, transparent 6px),
            radial-gradient(ellipse at 70% 60%, rgba(255, 255, 255, 0.4) 10px 5px, transparent 10px),
            radial-gradient(ellipse at 90% 80%, rgba(255, 255, 255, 0.3) 7px 4px, transparent 7px),
            radial-gradient(ellipse at 35% 90%, rgba(255, 255, 255, 0.2) 5px 3px, transparent 5px),
            radial-gradient(ellipse at 60% 85%, rgba(255, 255, 255, 0.4) 9px 5px, transparent 9px),
            radial-gradient(ellipse at 80% 95%, rgba(255, 255, 255, 0.3) 6px 4px, transparent 6px);
        background-size: 200px 200px;
        background-position: 
            0px 150px,
            100px 170px,
            200px 130px,
            300px 160px,
            150px 220px,
            250px 210px,
            350px 230px;
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        background: 
            radial-gradient(ellipse at 15% 115%, rgba(255, 255, 255, 0.3) 8px 4px, transparent 8px),
            radial-gradient(ellipse at 40% 125%, rgba(255, 255, 255, 0.2) 6px 3px, transparent 6px),
            radial-gradient(ellipse at 60% 110%, rgba(255, 255, 255, 0.4) 10px 5px, transparent 10px),
            radial-gradient(ellipse at 80% 130%, rgba(255, 255, 255, 0.3) 7px 4px, transparent 7px),
            radial-gradient(ellipse at 25% 140%, rgba(255, 255, 255, 0.2) 5px 3px, transparent 5px),
            radial-gradient(ellipse at 50% 135%, rgba(255, 255, 255, 0.4) 9px 5px, transparent 9px),
            radial-gradient(ellipse at 70% 145%, rgba(255, 255, 255, 0.3) 6px 4px, transparent 6px);
        background-size: 200px 200px;
        background-position: 
            -100px 350px,
            0px 370px,
            100px 330px,
            200px 360px,
            50px 420px,
            150px 410px,
            250px 430px;
        transform: rotate(360deg) scale(1);
    }
}

@media (max-width: 480px) {
    .hqhpg_registration-hero::before,
    .hqhpg_registration-hero::after {
        animation: none;
        opacity: 0.1;
    }
}

.hqhpg_hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: hqhpg_textGlow 3s ease-in-out infinite alternate;
}

.hqhpg_hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.hqhpg_registration-form-section {
    padding: 4rem 2rem;
    background: #0b1220;
}

.hqhpg_form-container {
    max-width: 500px;
    margin: 0 auto;
    background: #111827;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hqhpg_form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hqhpg_form-header i {
    font-size: 3rem;
    color: #7dd3fc;
    margin-bottom: 1rem;
    display: block;
}

.hqhpg_form-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.hqhpg_form-header p {
    color: #cbd5e1;
    line-height: 1.6;
}

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

.hqhpg_input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.hqhpg_input-wrapper i:first-child {
    position: absolute;
    left: 1rem;
    color: #94a3b8;
    font-size: 1.2rem;
    z-index: 2;
}

.hqhpg_input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #1f2937;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #111827;
    color: #fff;
}

.hqhpg_input-wrapper input:focus {
    outline: none;
    border-color: #7dd3fc;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.hqhpg_password-toggle {
    position: absolute;
    right: 1rem;
    cursor: pointer;
    color: #94a3b8;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.hqhpg_password-toggle:hover {
    color: #7dd3fc;
}

.hqhpg_error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hqhpg_error-message.show {
    opacity: 1;
}

.hqhpg_checkbox-group {
    margin: 2rem 0;
}

.hqhpg_checkbox-label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.hqhpg_checkbox-label input {
    display: none;
}

.hqhpg_checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #1f2937;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.hqhpg_checkbox-label input:checked + .hqhpg_checkbox-custom {
    background: #2563eb;
    border-color: #7dd3fc;
}

.hqhpg_checkbox-label input:checked + .hqhpg_checkbox-custom::after {
    content: '✓';
    position: absolute;
    color: #ffffff;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hqhpg_checkbox-label a {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 600;
}

.hqhpg_checkbox-label a:hover {
    text-decoration: underline;
}

.hqhpg_submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hqhpg_submit-button:enabled {
    opacity: 1;
    transform: translateY(0);
}

.hqhpg_submit-button:enabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.hqhpg_submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.hqhpg_form-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
}

.hqhpg_form-links p {
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.hqhpg_form-links a {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 600;
}

.hqhpg_form-links a:hover {
    text-decoration: underline;
}

.hqhpg_success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.hqhpg_success-modal.show {
    display: flex;
}

.hqhpg_modal-content {
    background: #111827;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    animation: hqhpg_modalAppear 0.5s ease-out;
}

@keyframes hqhpg_modalAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hqhpg_modal-content i {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 1.5rem;
    display: block;
}

.hqhpg_modal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.hqhpg_modal-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hqhpg_modal-close {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hqhpg_modal-close:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hqhpg_registration-hero {
        padding: 4rem 1.5rem;
    }
    
    .hqhpg_hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hqhpg_form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hqhpg_registration-hero {
        padding: 3rem 0.5rem;
    }
    
    .hqhpg_hero-content h1 {
        font-size: 2rem;
        font-size: 0.9rem;
    }
    
    .hqhpg_hero-content p {
        font-size: 1rem;
        font-size: 0.8rem;
    }
    
    .hqhpg_registration-form-section {
        padding: 2rem 0.3rem;
    }
    
    .hqhpg_form-container {
        padding: 1.5rem;
        margin: 0 0.3rem;
    }
    
    .hqhpg_form-header h2 {
        font-size: 1.8rem;
    }
    
    .hqhpg_input-wrapper input {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .hqhpg_submit-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .hqhpg_modal-content {
        padding: 2rem 1rem;
        margin: 0 0.5rem;
    }
    
    .hqhpg_form-links a,
    .hqhpg_checkbox-label a {
        font-size: 0.8rem;
    }
}

.hqhpg_login-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
}

.hqhpg_login-hero {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.hqhpg_login-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqhpg_loginPatternFloat 25s linear infinite;
    opacity: 0.3;
}

@keyframes hqhpg_loginPatternFloat {
    0% {
        background: 
            radial-gradient(circle at 5% 20%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.3) 3px, transparent 3px),
            radial-gradient(circle at 45% 15%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 65% 40%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 35% 60%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 55% 45%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 75% 55%, rgba(255, 255, 255, 0.2) 6px, transparent 6px),
            radial-gradient(circle at 95% 65%, rgba(255, 255, 255, 0.4) 3px, transparent 3px);
        background-size: 120px 120px;
        background-position: 
            -100px 10%,
            -80px 25%,
            -120px 5%,
            -90px 30%,
            -110px 15%,
            -95px 40%,
            -105px 50%,
            -115px 35%,
            -85px 45%,
            -125px 55%;
        transform: rotate(0deg);
    }
    25% {
        background: 
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 40% 45%, rgba(255, 255, 255, 0.3) 3px, transparent 3px),
            radial-gradient(circle at 60% 25%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 100% 35%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 70% 55%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 90% 65%, rgba(255, 255, 255, 0.2) 6px, transparent 6px),
            radial-gradient(circle at 110% 75%, rgba(255, 255, 255, 0.4) 3px, transparent 3px);
        background-size: 120px 120px;
        background-position: 
            0px 20%,
            20px 35%,
            -20px 15%,
            10px 40%,
            -10px 25%,
            5px 50%,
            -5px 60%,
            -15px 45%,
            15px 55%,
            -25px 65%;
        transform: rotate(90deg);
    }
    50% {
        background: 
            radial-gradient(circle at 35% 40%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 55% 55%, rgba(255, 255, 255, 0.3) 3px, transparent 3px),
            radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 95% 60%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 115% 45%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 45% 70%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 65% 80%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 85% 65%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 105% 75%, rgba(255, 255, 255, 0.2) 6px, transparent 6px),
            radial-gradient(circle at 125% 85%, rgba(255, 255, 255, 0.4) 3px, transparent 3px);
        background-size: 120px 120px;
        background-position: 
            100px 30%,
            120px 45%,
            80px 25%,
            110px 50%,
            90px 35%,
            105px 60%,
            95px 70%,
            85px 55%,
            115px 65%,
            75px 75%;
        transform: rotate(180deg);
    }
    75% {
        background: 
            radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 70% 65%, rgba(255, 255, 255, 0.3) 3px, transparent 3px),
            radial-gradient(circle at 90% 45%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 110% 70%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 130% 55%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 80% 90%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 100% 75%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 120% 85%, rgba(255, 255, 255, 0.2) 6px, transparent 6px),
            radial-gradient(circle at 140% 95%, rgba(255, 255, 255, 0.4) 3px, transparent 3px);
        background-size: 120px 120px;
        background-position: 
            50px 40%,
            70px 55%,
            30px 35%,
            60px 60%,
            40px 45%,
            55px 70%,
            45px 80%,
            35px 65%,
            65px 75%,
            25px 85%;
        transform: rotate(270deg);
    }
    100% {
        background: 
            radial-gradient(circle at 65% 60%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.3) 3px, transparent 3px),
            radial-gradient(circle at 105% 55%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 125% 80%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 145% 65%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 75% 90%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 95% 100%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 115% 85%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 135% 95%, rgba(255, 255, 255, 0.2) 6px, transparent 6px),
            radial-gradient(circle at 155% 105%, rgba(255, 255, 255, 0.4) 3px, transparent 3px);
        background-size: 120px 120px;
        background-position: 
            -100px 50%,
            -80px 65%,
            -120px 45%,
            -90px 70%,
            -110px 55%,
            -95px 80%,
            -105px 90%,
            -115px 75%,
            -85px 85%,
            -125px 95%;
        transform: rotate(360deg);
    }
}

.hqhpg_login-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqhpg_loginPatternFloatSecondary 30s linear infinite;
    opacity: 0.2;
}

@keyframes hqhpg_loginPatternFloatSecondary {
    0% {
        background: 
            conic-gradient(from 0deg at 10% 25%, rgba(255, 255, 255, 0.3) 0deg 90deg, transparent 90deg),
            conic-gradient(from 45deg at 35% 40%, rgba(255, 255, 255, 0.2) 0deg 120deg, transparent 120deg),
            conic-gradient(from 90deg at 60% 15%, rgba(255, 255, 255, 0.4) 0deg 60deg, transparent 60deg),
            conic-gradient(from 135deg at 80% 55%, rgba(255, 255, 255, 0.3) 0deg 150deg, transparent 150deg),
            conic-gradient(from 180deg at 25% 70%, rgba(255, 255, 255, 0.2) 0deg 75deg, transparent 75deg),
            conic-gradient(from 225deg at 45% 85%, rgba(255, 255, 255, 0.4) 0deg 100deg, transparent 100deg),
            conic-gradient(from 270deg at 70% 30%, rgba(255, 255, 255, 0.3) 0deg 135deg, transparent 135deg),
            conic-gradient(from 315deg at 90% 65%, rgba(255, 255, 255, 0.2) 0deg 80deg, transparent 80deg);
        background-size: 80px 80px, 100px 100px, 60px 60px, 120px 120px, 70px 70px, 90px 90px, 110px 110px, 65px 65px;
        background-position: 
            -150px 20%,
            -100px 35%,
            -180px 10%,
            -120px 45%,
            -160px 60%,
            -140px 75%,
            -200px 25%,
            -110px 55%;
        transform: scale(0.8) rotate(0deg);
    }
    50% {
        background: 
            conic-gradient(from 180deg at 60% 50%, rgba(255, 255, 255, 0.3) 0deg 90deg, transparent 90deg),
            conic-gradient(from 225deg at 85% 65%, rgba(255, 255, 255, 0.2) 0deg 120deg, transparent 120deg),
            conic-gradient(from 270deg at 40% 40%, rgba(255, 255, 255, 0.4) 0deg 60deg, transparent 60deg),
            conic-gradient(from 315deg at 65% 80%, rgba(255, 255, 255, 0.3) 0deg 150deg, transparent 150deg),
            conic-gradient(from 0deg at 75% 25%, rgba(255, 255, 255, 0.2) 0deg 75deg, transparent 75deg),
            conic-gradient(from 45deg at 30% 90%, rgba(255, 255, 255, 0.4) 0deg 100deg, transparent 100deg),
            conic-gradient(from 90deg at 55% 45%, rgba(255, 255, 255, 0.3) 0deg 135deg, transparent 135deg),
            conic-gradient(from 135deg at 80% 70%, rgba(255, 255, 255, 0.2) 0deg 80deg, transparent 80deg);
        background-size: 80px 80px, 100px 100px, 60px 60px, 120px 120px, 70px 70px, 90px 90px, 110px 110px, 65px 65px;
        background-position: 
            150px 45%,
            200px 60%,
            120px 35%,
            180px 70%,
            140px 25%,
            160px 80%,
            100px 50%,
            190px 65%;
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        background: 
            conic-gradient(from 360deg at 110% 75%, rgba(255, 255, 255, 0.3) 0deg 90deg, transparent 90deg),
            conic-gradient(from 405deg at 135% 90%, rgba(255, 255, 255, 0.2) 0deg 120deg, transparent 120deg),
            conic-gradient(from 450deg at 90% 65%, rgba(255, 255, 255, 0.4) 0deg 60deg, transparent 60deg),
            conic-gradient(from 495deg at 115% 100%, rgba(255, 255, 255, 0.3) 0deg 150deg, transparent 150deg),
            conic-gradient(from 540deg at 125% 50%, rgba(255, 255, 255, 0.2) 0deg 75deg, transparent 75deg),
            conic-gradient(from 585deg at 80% 105%, rgba(255, 255, 255, 0.4) 0deg 100deg, transparent 100deg),
            conic-gradient(from 630deg at 105% 70%, rgba(255, 255, 255, 0.3) 0deg 135deg, transparent 135deg),
            conic-gradient(from 675deg at 130% 85%, rgba(255, 255, 255, 0.2) 0deg 80deg, transparent 80deg);
        background-size: 80px 80px, 100px 100px, 60px 60px, 120px 120px, 70px 70px, 90px 90px, 110px 110px, 65px 65px;
        background-position: 
            -150px 70%,
            -100px 85%,
            -180px 60%,
            -120px 95%,
            -160px 50%,
            -140px 100%,
            -200px 75%,
            -110px 85%;
        transform: scale(0.8) rotate(360deg);
    }
}

@media (max-width: 480px) {
    .hqhpg_login-hero::before,
    .hqhpg_login-hero::after {
        animation: none;
        opacity: 0.1;
    }
}

.hqhpg_hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: hqhpg_textPulse 2s ease-in-out infinite;
}

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

.hqhpg_hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.hqhpg_login-form-section {
    padding: 4rem 2rem;
    background: #0b1220;
}

.hqhpg_form-container {
    max-width: 500px;
    margin: 0 auto;
    background: #111827;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.hqhpg_form-container:hover {
    transform: translateY(-5px);
}

.hqhpg_form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hqhpg_form-header i {
    font-size: 3rem;
    color: #7dd3fc;
    margin-bottom: 1rem;
    display: block;
    animation: hqhpg_iconBounce 2s ease-in-out infinite;
}

@keyframes hqhpg_iconBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hqhpg_form-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.hqhpg_form-header p {
    color: #cbd5e1;
    line-height: 1.6;
}

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

.hqhpg_input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.hqhpg_input-wrapper i:first-child {
    position: absolute;
    left: 1rem;
    color: #94a3b8;
    font-size: 1.2rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.hqhpg_input-wrapper input:focus + i:first-child {
    color: #7dd3fc;
}

.hqhpg_input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #1f2937;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #111827;
}

.hqhpg_input-wrapper input:focus {
    outline: none;
    border-color: #7dd3fc;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.hqhpg_password-toggle {
    position: absolute;
    right: 1rem;
    cursor: pointer;
    color: #94a3b8;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.hqhpg_password-toggle:hover {
    color: #7dd3fc;
}

.hqhpg_error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hqhpg_error-message.show {
    opacity: 1;
}

.hqhpg_checkbox-group {
    margin: 2rem 0;
}

.hqhpg_checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.hqhpg_checkbox-label input {
    display: none;
}

.hqhpg_checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #1f2937;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.hqhpg_checkbox-label input:checked + .hqhpg_checkbox-custom {
    background: #2563eb;
    border-color: #7dd3fc;
}

.hqhpg_checkbox-label input:checked + .hqhpg_checkbox-custom::after {
    content: '✓';
    position: absolute;
    color: #ffffff;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hqhpg_checkbox-label a {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 600;
}

.hqhpg_checkbox-label a:hover {
    text-decoration: underline;
}

.hqhpg_submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hqhpg_submit-button:enabled {
    opacity: 1;
    transform: translateY(0);
}

.hqhpg_submit-button:enabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.hqhpg_submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.hqhpg_form-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
}

.hqhpg_form-links p {
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.hqhpg_form-links a {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 600;
}

.hqhpg_form-links a:hover {
    text-decoration: underline;
}

.hqhpg_success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.hqhpg_success-modal.show {
    display: flex;
}

.hqhpg_modal-content {
    background: #111827;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    animation: hqhpg_modalSlideIn 0.5s ease-out;
}

@keyframes hqhpg_modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hqhpg_modal-content i {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 1.5rem;
    display: block;
}

.hqhpg_modal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.hqhpg_modal-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hqhpg_modal-close {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hqhpg_modal-close:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hqhpg_login-hero {
        padding: 4rem 1.5rem;
    }
    
    .hqhpg_hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hqhpg_form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hqhpg_login-hero {
        padding: 3rem 0.5rem;
    }
    
    .hqhpg_hero-content h1 {
        font-size: 2rem;
        font-size: 0.9rem;
    }
    
    .hqhpg_hero-content p {
        font-size: 1rem;
        font-size: 0.8rem;
    }
    
    .hqhpg_login-form-section {
        padding: 2rem 0.3rem;
    }
    
    .hqhpg_form-container {
        padding: 1.5rem;
        margin: 0 0.3rem;
    }
    
    .hqhpg_form-header h2 {
        font-size: 1.8rem;
    }
    
    .hqhpg_input-wrapper input {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .hqhpg_submit-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .hqhpg_modal-content {
        padding: 2rem 1rem;
        margin: 0 0.5rem;
    }
    
    .hqhpg_form-links a,
    .hqhpg_checkbox-label a {
        font-size: 0.8rem;
    }
}

.hqhpg_contact-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
}

.hqhpg_contact-hero {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.hqhpg_contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqhpg_contactPatternFloat 30s linear infinite;
    opacity: 0.3;
}

@keyframes hqhpg_contactPatternFloat {
    0% {
        background: 
            radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 35% 70%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 55% 95%, rgba(255, 255, 255, 0.2) 8px, transparent 8px),
            radial-gradient(circle at 75% 80%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 95% 90%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 25% 60%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 45% 75%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 65% 65%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 85% 55%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 5% 45%, rgba(255, 255, 255, 0.4) 4px, transparent 4px);
        background-size: 140px 140px;
        background-position: 
            10% 0px,
            30% -20px,
            50% 20px,
            70% -10px,
            90% 10px,
            20% -30px,
            40% 30px,
            60% -15px,
            80% 15px,
            0% -25px;
        transform: rotate(0deg);
    }
    25% {
        background: 
            radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.2) 8px, transparent 8px),
            radial-gradient(circle at 90% 65%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 110% 75%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 40% 45%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 100% 40%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 4px, transparent 4px);
        background-size: 140px 140px;
        background-position: 
            25% -25px,
            45% -45px,
            65% -5px,
            85% -35px,
            105% -15px,
            35% -55px,
            55% 5px,
            75% -40px,
            95% -20px,
            15% -50px;
        transform: rotate(90deg);
    }
    50% {
        background: 
            radial-gradient(circle at 45% 55%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 65% 40%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 85% 65%, rgba(255, 255, 255, 0.2) 8px, transparent 8px),
            radial-gradient(circle at 105% 50%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 125% 60%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 55% 30%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 75% 45%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 95% 35%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 115% 25%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 35% 15%, rgba(255, 255, 255, 0.4) 4px, transparent 4px);
        background-size: 140px 140px;
        background-position: 
            40% -50px,
            60% -70px,
            80% -30px,
            100% -60px,
            120% -40px,
            50% -80px,
            70% -20px,
            90% -65px,
            110% -45px,
            30% -75px;
        transform: rotate(180deg);
    }
    75% {
        background: 
            radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.2) 8px, transparent 8px),
            radial-gradient(circle at 120% 35%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 140% 45%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 70% 15%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 110% 20%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 130% 10%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.4) 4px, transparent 4px);
        background-size: 140px 140px;
        background-position: 
            55% -75px,
            75% -95px,
            95% -55px,
            115% -85px,
            135% -65px,
            65% -105px,
            85% -45px,
            105% -90px,
            125% -70px,
            45% -100px;
        transform: rotate(270deg);
    }
    100% {
        background: 
            radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 95% 10%, rgba(255, 255, 255, 0.3) 4px, transparent 4px),
            radial-gradient(circle at 115% 35%, rgba(255, 255, 255, 0.2) 8px, transparent 8px),
            radial-gradient(circle at 135% 20%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 155% 30%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 105% 15%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 125% 5%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 145% -5%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 65% -15%, rgba(255, 255, 255, 0.4) 4px, transparent 4px);
        background-size: 140px 140px;
        background-position: 
            70% -100px,
            90% -120px,
            110% -80px,
            130% -110px,
            150% -90px,
            80% -130px,
            100% -70px,
            120% -115px,
            140% -95px,
            60% -125px;
        transform: rotate(360deg);
    }
}

.hqhpg_contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqhpg_contactPatternPulse 20s ease-in-out infinite;
    opacity: 0.15;
}

@keyframes hqhpg_contactPatternPulse {
    0%, 100% {
        background: 
            radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0px, transparent 0px),
            radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.2) 0px, transparent 0px),
            radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.4) 0px, transparent 0px),
            radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.3) 0px, transparent 0px),
            radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.2) 0px, transparent 0px),
            radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.4) 0px, transparent 0px),
            radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.3) 0px, transparent 0px),
            radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.2) 0px, transparent 0px);
        background-size: 200px 200px;
        background-position: 
            15% 45%,
            35% 25%,
            55% 65%,
            75% 35%,
            25% 75%,
            45% 15%,
            65% 55%,
            85% 85%;
        transform: scale(0.8);
    }
    25% {
        background: 
            radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 15px, transparent 15px),
            radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.2) 10px, transparent 10px),
            radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.4) 20px, transparent 20px),
            radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.3) 12px, transparent 12px),
            radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.2) 8px, transparent 8px),
            radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.4) 18px, transparent 18px),
            radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.3) 14px, transparent 14px),
            radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.2) 9px, transparent 9px);
        background-size: 200px 200px;
        background-position: 
            15% 45%,
            35% 25%,
            55% 65%,
            75% 35%,
            25% 75%,
            45% 15%,
            65% 55%,
            85% 85%;
        transform: scale(1);
    }
    50% {
        background: 
            radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 25px, transparent 25px),
            radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.2) 18px, transparent 18px),
            radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.4) 30px, transparent 30px),
            radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.3) 20px, transparent 20px),
            radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.2) 15px, transparent 15px),
            radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.4) 28px, transparent 28px),
            radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.3) 22px, transparent 22px),
            radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.2) 16px, transparent 16px);
        background-size: 200px 200px;
        background-position: 
            15% 45%,
            35% 25%,
            55% 65%,
            75% 35%,
            25% 75%,
            45% 15%,
            65% 55%,
            85% 85%;
        transform: scale(1.2);
    }
    75% {
        background: 
            radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 15px, transparent 15px),
            radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.2) 10px, transparent 10px),
            radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.4) 20px, transparent 20px),
            radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.3) 12px, transparent 12px),
            radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.2) 8px, transparent 8px),
            radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.4) 18px, transparent 18px),
            radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.3) 14px, transparent 14px),
            radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.2) 9px, transparent 9px);
        background-size: 200px 200px;
        background-position: 
            15% 45%,
            35% 25%,
            55% 65%,
            75% 35%,
            25% 75%,
            45% 15%,
            65% 55%,
            85% 85%;
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hqhpg_contact-hero::before,
    .hqhpg_contact-hero::after {
        animation: none;
        opacity: 0.1;
    }
}

.hqhpg_hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: hqhpg_textShimmer 3s ease-in-out infinite;
}

@keyframes hqhpg_textShimmer {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
                     0 0 20px rgba(255, 255, 255, 0.3),
                     0 0 30px rgba(255, 255, 255, 0.1);
    }
    50% { 
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                     0 0 30px rgba(255, 255, 255, 0.5),
                     0 0 40px rgba(255, 255, 255, 0.3);
    }
}

.hqhpg_hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.hqhpg_contact-form-section {
    padding: 4rem 2rem;
    background: #0b1220;
}

.hqhpg_form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #111827;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hqhpg_form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hqhpg_form-header i {
    font-size: 3rem;
    color: #7dd3fc;
    margin-bottom: 1rem;
    display: block;
    animation: hqhpg_iconPulse 2s ease-in-out infinite;
}

@keyframes hqhpg_iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hqhpg_form-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.hqhpg_form-header p {
    color: #cbd5e1;
    line-height: 1.6;
}

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

.hqhpg_input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.hqhpg_input-wrapper i:first-child {
    position: absolute;
    left: 1rem;
    color: #94a3b8;
    font-size: 1.2rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.hqhpg_input-wrapper input:focus + i:first-child {
    color: #7dd3fc;
}

.hqhpg_input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #1f2937;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #111827;
}

.hqhpg_textarea-wrapper {
    position: relative;
}

.hqhpg_textarea-wrapper i {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #94a3b8;
    font-size: 1.2rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.hqhpg_textarea-wrapper textarea:focus + i {
    color: #7dd3fc;
}

.hqhpg_textarea-wrapper textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #1f2937;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #111827;
    resize: vertical;
    font-family: 'Manrope', sans-serif;
    line-height: 1.5;
    color: #fff;
}

.hqhpg_input-wrapper input:focus,
.hqhpg_textarea-wrapper textarea:focus {
    outline: none;
    border-color: #7dd3fc;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.hqhpg_error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hqhpg_error-message.show {
    opacity: 1;
}

.hqhpg_checkbox-group {
    margin: 2rem 0;
}

.hqhpg_checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.4;
}

.hqhpg_checkbox-label input {
    display: none;
}

.hqhpg_checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #1f2937;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hqhpg_checkbox-label input:checked + .hqhpg_checkbox-custom {
    background: #2563eb;
    border-color: #7dd3fc;
}

.hqhpg_checkbox-label input:checked + .hqhpg_checkbox-custom::after {
    content: '✓';
    position: absolute;
    color: #ffffff;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hqhpg_checkbox-label a {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 600;
}

.hqhpg_checkbox-label a:hover {
    text-decoration: underline;
}

.hqhpg_submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hqhpg_submit-button:enabled {
    opacity: 1;
    transform: translateY(0);
}

.hqhpg_submit-button:enabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.hqhpg_submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.hqhpg_contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.hqhpg_info-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #0b1220;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hqhpg_info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hqhpg_info-item i {
    font-size: 1.5rem;
    color: #7dd3fc;
    margin-top: 0.25rem;
}

.hqhpg_info-item h3 {
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hqhpg_info-item a,
.hqhpg_info-item p {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
}

.hqhpg_info-item a:hover {
    color: #7dd3fc;
}

.hqhpg_success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.hqhpg_success-modal.show {
    display: flex;
}

.hqhpg_modal-content {
    background: #111827;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 100%;
    animation: hqhpg_modalBounce 0.6s ease-out;
}

@keyframes hqhpg_modalBounce {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hqhpg_modal-content i {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 1.5rem;
    display: block;
}

.hqhpg_modal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.hqhpg_modal-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hqhpg_modal-close {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hqhpg_modal-close:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hqhpg_contact-hero {
        padding: 4rem 1.5rem;
    }
    
    .hqhpg_hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hqhpg_form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .hqhpg_contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hqhpg_contact-hero {
        padding: 3rem 0.5rem;
    }
    
    .hqhpg_hero-content h1 {
        font-size: 2rem;
        font-size: 0.9rem;
    }
    
    .hqhpg_hero-content p {
        font-size: 1rem;
        font-size: 0.8rem;
    }
    
    .hqhpg_contact-form-section {
        padding: 2rem 0.3rem;
    }
    
    .hqhpg_form-container {
        padding: 1.5rem;
        margin: 0 0.3rem;
    }
    
    .hqhpg_form-header h2 {
        font-size: 1.8rem;
    }
    
    .hqhpg_input-wrapper input,
    .hqhpg_textarea-wrapper textarea {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .hqhpg_submit-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .hqhpg_modal-content {
        padding: 2rem 1rem;
        margin: 0 0.5rem;
    }
    
    .hqhpg_checkbox-label a {
        font-size: 0.8rem;
    }
    
    .hqhpg_info-item {
        padding: 1rem;
    }
    
    .hqhpg_info-item a,
    .hqhpg_info-item p {
        font-size: 0.8rem;
    }
}

.hqhpg_privacy-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
}

.hqhpg_privacy-hero {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.hqhpg_privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqhpg_privacyPatternFloat 40s linear infinite;
    opacity: 0.2;
}

@keyframes hqhpg_privacyPatternFloat {
    0% {
        background: 
            radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.3) 8px, transparent 8px),
            radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.2) 5px, transparent 5px),
            radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.4) 12px, transparent 12px),
            radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 90% 25%, rgba(255, 255, 255, 0.2) 10px, transparent 10px),
            radial-gradient(circle at 20% 55%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 40% 65%, rgba(255, 255, 255, 0.3) 9px, transparent 9px),
            radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.4) 11px, transparent 11px),
            radial-gradient(circle at 5% 80%, rgba(255, 255, 255, 0.3) 8px, transparent 8px);
        background-size: 160px 160px;
        background-position: 
            5% 0px,
            25% 15px,
            45% -10px,
            65% 20px,
            85% 5px,
            15% 35px,
            35% 45px,
            55% 30px,
            75% 50px,
            -5% 60px;
        transform: rotate(0deg) scale(1);
    }
    16.67% {
        background: 
            radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.3) 8px, transparent 8px),
            radial-gradient(circle at 45% 45%, rgba(255, 255, 255, 0.2) 5px, transparent 5px),
            radial-gradient(circle at 65% 25%, rgba(255, 255, 255, 0.4) 12px, transparent 12px),
            radial-gradient(circle at 85% 50%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 105% 35%, rgba(255, 255, 255, 0.2) 10px, transparent 10px),
            radial-gradient(circle at 35% 65%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 55% 75%, rgba(255, 255, 255, 0.3) 9px, transparent 9px),
            radial-gradient(circle at 75% 60%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 95% 80%, rgba(255, 255, 255, 0.4) 11px, transparent 11px),
            radial-gradient(circle at 20% 90%, rgba(255, 255, 255, 0.3) 8px, transparent 8px);
        background-size: 160px 160px;
        background-position: 
            20% -10px,
            40% 5px,
            60% -20px,
            80% 10px,
            100% -5px,
            30% 25px,
            50% 35px,
            70% 20px,
            90% 40px,
            10% 50px;
        transform: rotate(60deg) scale(1.02);
    }
    33.33% {
        background: 
            radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.3) 8px, transparent 8px),
            radial-gradient(circle at 60% 55%, rgba(255, 255, 255, 0.2) 5px, transparent 5px),
            radial-gradient(circle at 80% 35%, rgba(255, 255, 255, 0.4) 12px, transparent 12px),
            radial-gradient(circle at 100% 60%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 120% 45%, rgba(255, 255, 255, 0.2) 10px, transparent 10px),
            radial-gradient(circle at 50% 75%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 70% 85%, rgba(255, 255, 255, 0.3) 9px, transparent 9px),
            radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 110% 90%, rgba(255, 255, 255, 0.4) 11px, transparent 11px),
            radial-gradient(circle at 35% 100%, rgba(255, 255, 255, 0.3) 8px, transparent 8px);
        background-size: 160px 160px;
        background-position: 
            35% -20px,
            55% -5px,
            75% -30px,
            95% 0px,
            115% -15px,
            45% 15px,
            65% 25px,
            85% 10px,
            105% 30px,
            25% 40px;
        transform: rotate(120deg) scale(1.05);
    }
    50% {
        background: 
            radial-gradient(circle at 55% 50%, rgba(255, 255, 255, 0.3) 8px, transparent 8px),
            radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.2) 5px, transparent 5px),
            radial-gradient(circle at 95% 45%, rgba(255, 255, 255, 0.4) 12px, transparent 12px),
            radial-gradient(circle at 115% 70%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 135% 55%, rgba(255, 255, 255, 0.2) 10px, transparent 10px),
            radial-gradient(circle at 65% 85%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 85% 95%, rgba(255, 255, 255, 0.3) 9px, transparent 9px),
            radial-gradient(circle at 105% 80%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 125% 100%, rgba(255, 255, 255, 0.4) 11px, transparent 11px),
            radial-gradient(circle at 50% 110%, rgba(255, 255, 255, 0.3) 8px, transparent 8px);
        background-size: 160px 160px;
        background-position: 
            50% -30px,
            70% -15px,
            90% -40px,
            110% -10px,
            130% -25px,
            60% 5px,
            80% 15px,
            100% 0px,
            120% 20px,
            40% 30px;
        transform: rotate(180deg) scale(1.1);
    }
    66.67% {
        background: 
            radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.3) 8px, transparent 8px),
            radial-gradient(circle at 90% 75%, rgba(255, 255, 255, 0.2) 5px, transparent 5px),
            radial-gradient(circle at 110% 55%, rgba(255, 255, 255, 0.4) 12px, transparent 12px),
            radial-gradient(circle at 130% 80%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 150% 65%, rgba(255, 255, 255, 0.2) 10px, transparent 10px),
            radial-gradient(circle at 80% 95%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 100% 105%, rgba(255, 255, 255, 0.3) 9px, transparent 9px),
            radial-gradient(circle at 120% 90%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 140% 110%, rgba(255, 255, 255, 0.4) 11px, transparent 11px),
            radial-gradient(circle at 65% 120%, rgba(255, 255, 255, 0.3) 8px, transparent 8px);
        background-size: 160px 160px;
        background-position: 
            65% -20px,
            85% -5px,
            105% -30px,
            125% 0px,
            145% -15px,
            75% 15px,
            95% 25px,
            115% 10px,
            135% 30px,
            55% 40px;
        transform: rotate(240deg) scale(1.05);
    }
    83.33% {
        background: 
            radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.3) 8px, transparent 8px),
            radial-gradient(circle at 105% 85%, rgba(255, 255, 255, 0.2) 5px, transparent 5px),
            radial-gradient(circle at 125% 65%, rgba(255, 255, 255, 0.4) 12px, transparent 12px),
            radial-gradient(circle at 145% 90%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 165% 75%, rgba(255, 255, 255, 0.2) 10px, transparent 10px),
            radial-gradient(circle at 95% 105%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 115% 115%, rgba(255, 255, 255, 0.3) 9px, transparent 9px),
            radial-gradient(circle at 135% 100%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 155% 120%, rgba(255, 255, 255, 0.4) 11px, transparent 11px),
            radial-gradient(circle at 80% 130%, rgba(255, 255, 255, 0.3) 8px, transparent 8px);
        background-size: 160px 160px;
        background-position: 
            80% -10px,
            100% 5px,
            120% -20px,
            140% 10px,
            160% -5px,
            90% 25px,
            110% 35px,
            130% 20px,
            150% 40px,
            70% 50px;
        transform: rotate(300deg) scale(1.02);
    }
    100% {
        background: 
            radial-gradient(circle at 100% 80%, rgba(255, 255, 255, 0.3) 8px, transparent 8px),
            radial-gradient(circle at 120% 95%, rgba(255, 255, 255, 0.2) 5px, transparent 5px),
            radial-gradient(circle at 140% 75%, rgba(255, 255, 255, 0.4) 12px, transparent 12px),
            radial-gradient(circle at 160% 100%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 180% 85%, rgba(255, 255, 255, 0.2) 10px, transparent 10px),
            radial-gradient(circle at 110% 115%, rgba(255, 255, 255, 0.4) 6px, transparent 6px),
            radial-gradient(circle at 130% 125%, rgba(255, 255, 255, 0.3) 9px, transparent 9px),
            radial-gradient(circle at 150% 110%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 170% 130%, rgba(255, 255, 255, 0.4) 11px, transparent 11px),
            radial-gradient(circle at 95% 140%, rgba(255, 255, 255, 0.3) 8px, transparent 8px);
        background-size: 160px 160px;
        background-position: 
            95% 0px,
            115% 15px,
            135% -10px,
            155% 20px,
            175% 5px,
            105% 35px,
            125% 45px,
            145% 30px,
            165% 50px,
            85% 60px;
        transform: rotate(360deg) scale(1);
    }
}

.hqhpg_privacy-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqhpg_privacyShieldPattern 35s linear infinite;
    opacity: 0.15;
}

@keyframes hqhpg_privacyShieldPattern {
    0% {
        background: 
            conic-gradient(from 0deg at 15% 25%, rgba(255, 255, 255, 0.2) 0deg 45deg, transparent 45deg 360deg),
            conic-gradient(from 90deg at 45% 40%, rgba(255, 255, 255, 0.15) 0deg 60deg, transparent 60deg 360deg),
            conic-gradient(from 180deg at 75% 15%, rgba(255, 255, 255, 0.25) 0deg 30deg, transparent 30deg 360deg),
            conic-gradient(from 270deg at 25% 65%, rgba(255, 255, 255, 0.2) 0deg 75deg, transparent 75deg 360deg),
            conic-gradient(from 45deg at 55% 80%, rgba(255, 255, 255, 0.15) 0deg 50deg, transparent 50deg 360deg),
            conic-gradient(from 135deg at 85% 55%, rgba(255, 255, 255, 0.25) 0deg 40deg, transparent 40deg 360deg);
        background-size: 120px 120px;
        background-position: 
            10% 20%,
            40% 35%,
            70% 10%,
            20% 60%,
            50% 75%,
            80% 50%;
        transform: rotate(0deg) scale(0.9);
    }
    50% {
        background: 
            conic-gradient(from 180deg at 65% 75%, rgba(255, 255, 255, 0.2) 0deg 45deg, transparent 45deg 360deg),
            conic-gradient(from 270deg at 35% 90%, rgba(255, 255, 255, 0.15) 0deg 60deg, transparent 60deg 360deg),
            conic-gradient(from 0deg at 15% 65%, rgba(255, 255, 255, 0.25) 0deg 30deg, transparent 30deg 360deg),
            conic-gradient(from 90deg at 75% 35%, rgba(255, 255, 255, 0.2) 0deg 75deg, transparent 75deg 360deg),
            conic-gradient(from 225deg at 45% 20%, rgba(255, 255, 255, 0.15) 0deg 50deg, transparent 50deg 360deg),
            conic-gradient(from 315deg at 25% 45%, rgba(255, 255, 255, 0.25) 0deg 40deg, transparent 40deg 360deg);
        background-size: 120px 120px;
        background-position: 
            60% 70%,
            30% 85%,
            10% 60%,
            70% 30%,
            40% 15%,
            20% 40%;
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        background: 
            conic-gradient(from 360deg at 115% 125%, rgba(255, 255, 255, 0.2) 0deg 45deg, transparent 45deg 360deg),
            conic-gradient(from 450deg at 85% 140%, rgba(255, 255, 255, 0.15) 0deg 60deg, transparent 60deg 360deg),
            conic-gradient(from 540deg at 65% 115%, rgba(255, 255, 255, 0.25) 0deg 30deg, transparent 30deg 360deg),
            conic-gradient(from 630deg at 125% 85%, rgba(255, 255, 255, 0.2) 0deg 75deg, transparent 75deg 360deg),
            conic-gradient(from 675deg at 95% 70%, rgba(255, 255, 255, 0.15) 0deg 50deg, transparent 50deg 360deg),
            conic-gradient(from 765deg at 75% 95%, rgba(255, 255, 255, 0.25) 0deg 40deg, transparent 40deg 360deg);
        background-size: 120px 120px;
        background-position: 
            110% 120%,
            80% 135%,
            60% 110%,
            120% 80%,
            90% 65%,
            70% 90%;
        transform: rotate(360deg) scale(0.9);
    }
}

@media (max-width: 480px) {
    .hqhpg_privacy-hero::before,
    .hqhpg_privacy-hero::after {
        animation: none;
        opacity: 0.1;
    }
}

.hqhpg_hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: hqhpg_titleGlow 4s ease-in-out infinite;
}

@keyframes hqhpg_titleGlow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
                     0 0 40px rgba(255, 255, 255, 0.4),
                     0 0 60px rgba(255, 255, 255, 0.2);
    }
    50% { 
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8),
                     0 0 60px rgba(255, 255, 255, 0.6),
                     0 0 90px rgba(255, 255, 255, 0.4);
    }
}

.hqhpg_hero-content p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.hqhpg_privacy-content {
    padding: 4rem 2rem;
    background: #0b1220;
}

.hqhpg_content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hqhpg_privacy-intro {
    background: #111827;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 5px solid #0ea5e9;
}

.hqhpg_privacy-intro i {
    font-size: 3rem;
    color: #7dd3fc;
    margin-bottom: 1.5rem;
    display: block;
}

.hqhpg_privacy-intro p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
}

.hqhpg_privacy-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hqhpg_privacy-section {
    background: #111827;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.hqhpg_privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hqhpg_section-header {
    background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
    padding: 2rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hqhpg_section-header i {
    font-size: 2rem;
    flex-shrink: 0;
}

.hqhpg_section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 400;
}

.hqhpg_section-content {
    padding: 2.5rem;
}

.hqhpg_section-content p {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.hqhpg_section-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hqhpg_section-content li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.hqhpg_section-content li:last-child {
    border-bottom: none;
}

.hqhpg_section-content li:hover {
    background: #f8fafc;
    padding-left: 0.5rem;
    border-radius: 5px;
}

.hqhpg_section-content li i {
    color: #7dd3fc;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hqhpg_section-content li:hover i {
    transform: scale(1.2);
}

.hqhpg_section-content a {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hqhpg_section-content a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.hqhpg_privacy-update {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.hqhpg_privacy-update i {
    color: #f39c12;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.hqhpg_privacy-update p {
    margin: 0;
    color: #856404;
    line-height: 1.6;
}

.hqhpg_privacy-update strong {
    color: #664d03;
}

@media (max-width: 768px) {
    .hqhpg_privacy-hero {
        padding: 4rem 1.5rem;
    }
    
    .hqhpg_hero-content h1 {
        font-size: 3rem;
    }
    
    .hqhpg_hero-content p {
        font-size: 1.2rem;
    }
    
    .hqhpg_privacy-content {
        padding: 3rem 1.5rem;
    }
    
    .hqhpg_privacy-intro {
        padding: 2rem;
    }
    
    .hqhpg_section-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hqhpg_section-header h2 {
        font-size: 1.6rem;
    }
    
    .hqhpg_section-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hqhpg_privacy-hero {
        padding: 3rem 0.5rem;
    }
    
    .hqhpg_hero-content h1 {
        font-size: 2.2rem;
        font-size: 0.9rem;
    }
    
    .hqhpg_hero-content p {
        font-size: 1rem;
        font-size: 0.8rem;
    }
    
    .hqhpg_privacy-content {
        padding: 2rem 0.3rem;
    }
    
    .hqhpg_content-container {
        margin: 0 0.3rem;
    }
    
    .hqhpg_privacy-intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hqhpg_privacy-intro p {
        font-size: 1rem;
    }
    
    .hqhpg_section-header {
        padding: 1.2rem;
    }
    
    .hqhpg_section-header h2 {
        font-size: 1.4rem;
    }
    
    .hqhpg_section-content {
        padding: 1.5rem;
    }
    
    .hqhpg_section-content p {
        font-size: 1rem;
    }
    
    .hqhpg_section-content li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .hqhpg_privacy-update {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hqhpg_privacy-update p {
        font-size: 0.9rem;
    }
    
    .hqhpg_section-content a {
        font-size: 0.8rem;
    }
}

.hqhpg_terms-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
}

.hqhpg_terms-hero {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.hqhpg_terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqhpg_termsPatternFloat 35s linear infinite;
    opacity: 0.25;
}

@keyframes hqhpg_termsPatternFloat {
    0% {
        background: 
            radial-gradient(circle at 5% 15%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 45% 10%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 65% 35%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.2) 8px, transparent 8px),
            radial-gradient(circle at 15% 45%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 35% 55%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 55% 40%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 75% 60%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 95% 70%, rgba(255, 255, 255, 0.3) 6px, transparent 6px);
        background-size: 150px 150px;
        background-position: 
            -100px 10%,
            -80px 25%,
            -120px 5%,
            -90px 30%,
            -110px 15%,
            -95px 40%,
            -105px 50%,
            -115px 35%,
            -85px 55%,
            -125px 65%;
        transform: rotate(0deg) scale(1);
    }
    16.67% {
        background: 
            radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 80% 45%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 100% 30%, rgba(255, 255, 255, 0.2) 8px, transparent 8px),
            radial-gradient(circle at 30% 55%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 50% 65%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 110% 80%, rgba(255, 255, 255, 0.3) 6px, transparent 6px);
        background-size: 150px 150px;
        background-position: 
            -50px 15%,
            -30px 30%,
            -70px 10%,
            -40px 35%,
            -60px 20%,
            -45px 45%,
            -55px 55%,
            -65px 40%,
            -35px 60%,
            -75px 70%;
        transform: rotate(60deg) scale(1.01);
    }
    33.33% {
        background: 
            radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 55% 50%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 75% 30%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 95% 55%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 115% 40%, rgba(255, 255, 255, 0.2) 8px, transparent 8px),
            radial-gradient(circle at 45% 65%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 65% 75%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 85% 60%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 105% 80%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 125% 90%, rgba(255, 255, 255, 0.3) 6px, transparent 6px);
        background-size: 150px 150px;
        background-position: 
            0px 20%,
            20px 35%,
            -20px 15%,
            10px 40%,
            -10px 25%,
            5px 50%,
            -5px 60%,
            -15px 45%,
            15px 65%,
            -25px 75%;
        transform: rotate(120deg) scale(1.03);
    }
    50% {
        background: 
            radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 110% 65%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 130% 50%, rgba(255, 255, 255, 0.2) 8px, transparent 8px),
            radial-gradient(circle at 60% 75%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 80% 85%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 100% 70%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 120% 90%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 140% 100%, rgba(255, 255, 255, 0.3) 6px, transparent 6px);
        background-size: 150px 150px;
        background-position: 
            50px 25%,
            70px 40%,
            30px 20%,
            60px 45%,
            40px 30%,
            55px 55%,
            45px 65%,
            35px 50%,
            65px 70%,
            25px 80%;
        transform: rotate(180deg) scale(1.05);
    }
    66.67% {
        background: 
            radial-gradient(circle at 65% 55%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 105% 50%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 125% 75%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 145% 60%, rgba(255, 255, 255, 0.2) 8px, transparent 8px),
            radial-gradient(circle at 75% 85%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 95% 95%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 115% 80%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 135% 100%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 155% 110%, rgba(255, 255, 255, 0.3) 6px, transparent 6px);
        background-size: 150px 150px;
        background-position: 
            100px 30%,
            120px 45%,
            80px 25%,
            110px 50%,
            90px 35%,
            105px 60%,
            95px 70%,
            85px 55%,
            115px 75%,
            75px 85%;
        transform: rotate(240deg) scale(1.03);
    }
    83.33% {
        background: 
            radial-gradient(circle at 80% 65%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 100% 80%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 120% 60%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 140% 85%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 160% 70%, rgba(255, 255, 255, 0.2) 8px, transparent 8px),
            radial-gradient(circle at 90% 95%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 110% 105%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 130% 90%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 150% 110%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 170% 120%, rgba(255, 255, 255, 0.3) 6px, transparent 6px);
        background-size: 150px 150px;
        background-position: 
            150px 35%,
            170px 50%,
            130px 30%,
            160px 55%,
            140px 40%,
            155px 65%,
            145px 75%,
            135px 60%,
            165px 80%,
            125px 90%;
        transform: rotate(300deg) scale(1.01);
    }
    100% {
        background: 
            radial-gradient(circle at 95% 75%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 115% 90%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
            radial-gradient(circle at 135% 70%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 155% 95%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 175% 80%, rgba(255, 255, 255, 0.2) 8px, transparent 8px),
            radial-gradient(circle at 105% 105%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
            radial-gradient(circle at 125% 115%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 145% 100%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 165% 120%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 185% 130%, rgba(255, 255, 255, 0.3) 6px, transparent 6px);
        background-size: 150px 150px;
        background-position: 
            200px 40%,
            220px 55%,
            180px 35%,
            210px 60%,
            190px 45%,
            205px 70%,
            195px 80%,
            185px 65%,
            215px 85%,
            175px 95%;
        transform: rotate(360deg) scale(1);
    }
}

.hqhpg_terms-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqhpg_termsLegalPattern 30s linear infinite reverse;
    opacity: 0.15;
}

@keyframes hqhpg_termsLegalPattern {
    0% {
        background: 
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 20% 30% / 80px 80px,
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 50% 15% / 60px 60px,
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 80% 45% / 100px 100px,
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 30% 65% / 70px 70px,
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 65% 80% / 90px 90px;
        background-color: transparent;
        background-repeat: no-repeat;
        transform: translateX(-150px) rotate(0deg);
    }
    33.33% {
        background: 
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 40% 50% / 80px 80px,
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 70% 35% / 60px 60px,
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 20% 75% / 100px 100px,
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 60% 15% / 70px 70px,
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 85% 60% / 90px 90px;
        background-color: transparent;
        background-repeat: no-repeat;
        transform: translateX(0px) rotate(120deg);
    }
    66.67% {
        background: 
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 60% 70% / 80px 80px,
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 30% 55% / 60px 60px,
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 70% 25% / 100px 100px,
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 90% 85% / 70px 70px,
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 45% 40% / 90px 90px;
        background-color: transparent;
        background-repeat: no-repeat;
        transform: translateX(150px) rotate(240deg);
    }
    100% {
        background: 
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 80% 90% / 80px 80px,
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 50% 75% / 60px 60px,
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 20% 45% / 100px 100px,
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 70% 35% / 70px 70px,
            polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) at 35% 20% / 90px 90px;
        background-color: transparent;
        background-repeat: no-repeat;
        transform: translateX(-150px) rotate(360deg);
    }
}

.hqhpg_terms-hero::after {
    background: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%) at 20% 30% / 80px 80px,
        radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%) at 50% 15% / 60px 60px,
        radial-gradient(circle at center, rgba(255, 255, 255, 0.25) 0%, transparent 70%) at 80% 45% / 100px 100px,
        radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%) at 30% 65% / 70px 70px,
        radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%) at 65% 80% / 90px 90px,
        radial-gradient(circle at center, rgba(255, 255, 255, 0.25) 0%, transparent 70%) at 40% 50% / 80px 80px,
        radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%) at 70% 35% / 60px 60px,
        radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%) at 20% 75% / 100px 100px,
        radial-gradient(circle at center, rgba(255, 255, 255, 0.25) 0%, transparent 70%) at 60% 15% / 70px 70px,
        radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%) at 85% 60% / 90px 90px;
    background-repeat: no-repeat;
}

@media (max-width: 480px) {
    .hqhpg_terms-hero::before,
    .hqhpg_terms-hero::after {
        animation: none;
        opacity: 0.1;
    }
}

.hqhpg_hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: hqhpg_termsTitlePulse 3s ease-in-out infinite;
}

@keyframes hqhpg_termsTitlePulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

.hqhpg_hero-content p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.hqhpg_terms-content {
    padding: 4rem 2rem;
    background: #0b1220;
}

.hqhpg_content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hqhpg_terms-intro {
    background: #111827;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-right: 5px solid #0ea5e9;
    position: relative;
    overflow: hidden;
}

.hqhpg_terms-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #7c3aed);
}

.hqhpg_terms-intro i {
    font-size: 3rem;
    color: #7dd3fc;
    margin-bottom: 1.5rem;
    display: block;
}

.hqhpg_terms-intro p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.hqhpg_terms-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hqhpg_terms-section {
    background: #111827;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.hqhpg_terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0ea5e9, #7c3aed);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hqhpg_terms-section:hover::before {
    opacity: 1;
}

.hqhpg_terms-section:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hqhpg_section-header {
    background: linear-gradient(135deg, #0b1220 0%, #1f2937 100%);
    padding: 2rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.hqhpg_terms-section:hover .hqhpg_section-header {
    background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
}

.hqhpg_section-header i {
    font-size: 2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hqhpg_terms-section:hover .hqhpg_section-header i {
    transform: rotate(15deg) scale(1.1);
}

.hqhpg_section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 400;
}

.hqhpg_section-content {
    padding: 2.5rem;
}

.hqhpg_section-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hqhpg_section-content li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.hqhpg_section-content li:last-child {
    border-bottom: none;
}

.hqhpg_section-content li::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #2563eb;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hqhpg_section-content li:hover {
    background: #f8fafc;
    padding-left: 1rem;
    border-radius: 8px;
}

.hqhpg_section-content li:hover::before {
    opacity: 1;
}

.hqhpg_section-content li i {
    color: #7dd3fc;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    width: 24px;
    text-align: center;
}

.hqhpg_section-content li:hover i {
    transform: scale(1.2);
    color: #7c3aed;
}

.hqhpg_section-content li i[class*="number-"] {
    background: #2563eb;
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.hqhpg_section-content li i[class*="check-line"] {
    color: #48bb78;
}

.hqhpg_section-content li i[class*="close-line"] {
    color: #e53e3e;
}

.hqhpg_terms-acceptance {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.hqhpg_terms-acceptance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #7c3aed);
}

.hqhpg_terms-acceptance i {
    color: #0c5460;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.hqhpg_terms-acceptance p {
    margin: 0;
    color: #0c5460;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hqhpg_terms-hero {
        padding: 4rem 1.5rem;
    }
    
    .hqhpg_hero-content h1 {
        font-size: 3rem;
    }
    
    .hqhpg_hero-content p {
        font-size: 1.2rem;
    }
    
    .hqhpg_terms-content {
        padding: 3rem 1.5rem;
    }
    
    .hqhpg_terms-intro {
        padding: 2rem;
    }
    
    .hqhpg_section-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hqhpg_section-header h2 {
        font-size: 1.6rem;
    }
    
    .hqhpg_section-content {
        padding: 2rem;
    }
    
    .hqhpg_terms-acceptance {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hqhpg_terms-hero {
        padding: 3rem 0.5rem;
    }
    
    .hqhpg_hero-content h1 {
        font-size: 2.2rem;
        font-size: 0.9rem;
    }
    
    .hqhpg_hero-content p {
        font-size: 1rem;
        font-size: 0.8rem;
    }
    
    .hqhpg_terms-content {
        padding: 2rem 0.3rem;
    }
    
    .hqhpg_content-container {
        margin: 0 0.3rem;
    }
    
    .hqhpg_terms-intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hqhpg_terms-intro p {
        font-size: 1rem;
    }
    
    .hqhpg_section-header {
        padding: 1.2rem;
    }
    
    .hqhpg_section-header h2 {
        font-size: 1.4rem;
    }
    
    .hqhpg_section-content {
        padding: 1.5rem;
    }
    
    .hqhpg_section-content li {
        font-size: 0.9rem;
        padding: 0.8rem 0;
    }
    
    .hqhpg_section-content li i {
        font-size: 1.1rem;
    }
    
    .hqhpg_terms-acceptance {
        padding: 1.2rem;
    }
    
    .hqhpg_terms-acceptance p {
        font-size: 1rem;
    }
}

.hqhpg_cookies-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
}

.hqhpg_cookies-hero {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.hqhpg_cookies-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqhpg_cookiesPatternFloat 45s linear infinite;
    opacity: 0.3;
}

@keyframes hqhpg_cookiesPatternFloat {
    0% {
        background: 
            radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.4) 12px, transparent 12px),
            radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.3) 8px, transparent 8px),
            radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.2) 15px, transparent 15px),
            radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 90% 25%, rgba(255, 255, 255, 0.3) 13px, transparent 13px),
            radial-gradient(circle at 20% 55%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 40% 65%, rgba(255, 255, 255, 0.4) 11px, transparent 11px),
            radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 14px, transparent 14px),
            radial-gradient(circle at 5% 80%, rgba(255, 255, 255, 0.4) 9px, transparent 9px);
        background-size: 180px 180px;
        background-position: 
            5% 0px,
            25% 15px,
            45% -20px,
            65% 25px,
            85% 5px,
            15% 40px,
            35% 50px,
            55% 35px,
            75% 55px,
            -5% 65px;
        transform: rotate(0deg) scale(1);
    }
    16.5% {
        background: 
            radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.4) 12px, transparent 12px),
            radial-gradient(circle at 45% 40%, rgba(255, 255, 255, 0.3) 8px, transparent 8px),
            radial-gradient(circle at 65% 20%, rgba(255, 255, 255, 0.2) 15px, transparent 15px),
            radial-gradient(circle at 85% 45%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 105% 30%, rgba(255, 255, 255, 0.3) 13px, transparent 13px),
            radial-gradient(circle at 35% 60%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 55% 70%, rgba(255, 255, 255, 0.4) 11px, transparent 11px),
            radial-gradient(circle at 75% 55%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 95% 75%, rgba(255, 255, 255, 0.2) 14px, transparent 14px),
            radial-gradient(circle at 20% 85%, rgba(255, 255, 255, 0.4) 9px, transparent 9px);
        background-size: 180px 180px;
        background-position: 
            20% -5px,
            40% 10px,
            60% -25px,
            80% 20px,
            100% 0px,
            30% 35px,
            50% 45px,
            70% 30px,
            90% 50px,
            10% 60px;
        transform: rotate(60deg) scale(1.02);
    }
    33% {
        background: 
            radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.4) 12px, transparent 12px),
            radial-gradient(circle at 60% 45%, rgba(255, 255, 255, 0.3) 8px, transparent 8px),
            radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.2) 15px, transparent 15px),
            radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 120% 35%, rgba(255, 255, 255, 0.3) 13px, transparent 13px),
            radial-gradient(circle at 50% 65%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 70% 75%, rgba(255, 255, 255, 0.4) 11px, transparent 11px),
            radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 110% 80%, rgba(255, 255, 255, 0.2) 14px, transparent 14px),
            radial-gradient(circle at 35% 90%, rgba(255, 255, 255, 0.4) 9px, transparent 9px);
        background-size: 180px 180px;
        background-position: 
            35% -10px,
            55% 5px,
            75% -30px,
            95% 15px,
            115% -5px,
            45% 30px,
            65% 40px,
            85% 25px,
            105% 45px,
            25% 55px;
        transform: rotate(120deg) scale(1.05);
    }
    49.5% {
        background: 
            radial-gradient(circle at 55% 35%, rgba(255, 255, 255, 0.4) 12px, transparent 12px),
            radial-gradient(circle at 75% 50%, rgba(255, 255, 255, 0.3) 8px, transparent 8px),
            radial-gradient(circle at 95% 30%, rgba(255, 255, 255, 0.2) 15px, transparent 15px),
            radial-gradient(circle at 115% 55%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 135% 40%, rgba(255, 255, 255, 0.3) 13px, transparent 13px),
            radial-gradient(circle at 65% 70%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.4) 11px, transparent 11px),
            radial-gradient(circle at 105% 65%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 125% 85%, rgba(255, 255, 255, 0.2) 14px, transparent 14px),
            radial-gradient(circle at 50% 95%, rgba(255, 255, 255, 0.4) 9px, transparent 9px);
        background-size: 180px 180px;
        background-position: 
            50% -15px,
            70% 0px,
            90% -35px,
            110% 10px,
            130% -10px,
            60% 25px,
            80% 35px,
            100% 20px,
            120% 40px,
            40% 50px;
        transform: rotate(180deg) scale(1.03);
    }
    66% {
        background: 
            radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.4) 12px, transparent 12px),
            radial-gradient(circle at 90% 55%, rgba(255, 255, 255, 0.3) 8px, transparent 8px),
            radial-gradient(circle at 110% 35%, rgba(255, 255, 255, 0.2) 15px, transparent 15px),
            radial-gradient(circle at 130% 60%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 150% 45%, rgba(255, 255, 255, 0.3) 13px, transparent 13px),
            radial-gradient(circle at 80% 75%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 100% 85%, rgba(255, 255, 255, 0.4) 11px, transparent 11px),
            radial-gradient(circle at 120% 70%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 140% 90%, rgba(255, 255, 255, 0.2) 14px, transparent 14px),
            radial-gradient(circle at 65% 100%, rgba(255, 255, 255, 0.4) 9px, transparent 9px);
        background-size: 180px 180px;
        background-position: 
            65% -10px,
            85% 5px,
            105% -25px,
            125% 15px,
            145% -5px,
            75% 30px,
            95% 40px,
            115% 25px,
            135% 45px,
            55% 55px;
        transform: rotate(240deg) scale(0.98);
    }
    82.5% {
        background: 
            radial-gradient(circle at 85% 45%, rgba(255, 255, 255, 0.4) 12px, transparent 12px),
            radial-gradient(circle at 105% 60%, rgba(255, 255, 255, 0.3) 8px, transparent 8px),
            radial-gradient(circle at 125% 40%, rgba(255, 255, 255, 0.2) 15px, transparent 15px),
            radial-gradient(circle at 145% 65%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 165% 50%, rgba(255, 255, 255, 0.3) 13px, transparent 13px),
            radial-gradient(circle at 95% 80%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 115% 90%, rgba(255, 255, 255, 0.4) 11px, transparent 11px),
            radial-gradient(circle at 135% 75%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 155% 95%, rgba(255, 255, 255, 0.2) 14px, transparent 14px),
            radial-gradient(circle at 80% 105%, rgba(255, 255, 255, 0.4) 9px, transparent 9px);
        background-size: 180px 180px;
        background-position: 
            80% -5px,
            100% 10px,
            120% -20px,
            140% 20px,
            160% 0px,
            90% 35px,
            110% 45px,
            130% 30px,
            150% 50px,
            70% 60px;
        transform: rotate(300deg) scale(0.95);
    }
    100% {
        background: 
            radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.4) 12px, transparent 12px),
            radial-gradient(circle at 120% 65%, rgba(255, 255, 255, 0.3) 8px, transparent 8px),
            radial-gradient(circle at 140% 45%, rgba(255, 255, 255, 0.2) 15px, transparent 15px),
            radial-gradient(circle at 160% 70%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 180% 55%, rgba(255, 255, 255, 0.3) 13px, transparent 13px),
            radial-gradient(circle at 110% 85%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 130% 95%, rgba(255, 255, 255, 0.4) 11px, transparent 11px),
            radial-gradient(circle at 150% 80%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 170% 100%, rgba(255, 255, 255, 0.2) 14px, transparent 14px),
            radial-gradient(circle at 95% 110%, rgba(255, 255, 255, 0.4) 9px, transparent 9px);
        background-size: 180px 180px;
        background-position: 
            95% 0px,
            115% 15px,
            135% -15px,
            155% 25px,
            175% 5px,
            105% 40px,
            125% 50px,
            145% 35px,
            165% 55px,
            85% 65px;
        transform: rotate(360deg) scale(1);
    }
}

.hqhpg_cookies-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqhpg_cookieTexture 50s linear infinite;
    opacity: 0.2;
}

@keyframes hqhpg_cookieTexture {
    0% {
        background: 
            radial-gradient(ellipse at 15% 25%, rgba(255, 255, 255, 0.3) 20px 12px, transparent 20px),
            radial-gradient(ellipse at 40% 40%, rgba(255, 255, 255, 0.2) 15px 8px, transparent 15px),
            radial-gradient(ellipse at 65% 15%, rgba(255, 255, 255, 0.4) 25px 15px, transparent 25px),
            radial-gradient(ellipse at 85% 50%, rgba(255, 255, 255, 0.3) 18px 10px, transparent 18px),
            radial-gradient(ellipse at 25% 70%, rgba(255, 255, 255, 0.2) 22px 13px, transparent 22px),
            radial-gradient(ellipse at 55% 85%, rgba(255, 255, 255, 0.4) 16px 9px, transparent 16px),
            radial-gradient(ellipse at 75% 30%, rgba(255, 255, 255, 0.3) 28px 16px, transparent 28px),
            radial-gradient(ellipse at 95% 75%, rgba(255, 255, 255, 0.2) 14px 7px, transparent 14px);
        background-size: 200px 200px;
        background-position: 
            10% 20%,
            35% 35%,
            60% 10%,
            80% 45%,
            20% 65%,
            50% 80%,
            70% 25%,
            90% 70%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        background: 
            radial-gradient(ellipse at 35% 45%, rgba(255, 255, 255, 0.3) 20px 12px, transparent 20px),
            radial-gradient(ellipse at 60% 60%, rgba(255, 255, 255, 0.2) 15px 8px, transparent 15px),
            radial-gradient(ellipse at 85% 35%, rgba(255, 255, 255, 0.4) 25px 15px, transparent 25px),
            radial-gradient(ellipse at 15% 70%, rgba(255, 255, 255, 0.3) 18px 10px, transparent 18px),
            radial-gradient(ellipse at 45% 90%, rgba(255, 255, 255, 0.2) 22px 13px, transparent 22px),
            radial-gradient(ellipse at 75% 15%, rgba(255, 255, 255, 0.4) 16px 9px, transparent 16px),
            radial-gradient(ellipse at 95% 50%, rgba(255, 255, 255, 0.3) 28px 16px, transparent 28px),
            radial-gradient(ellipse at 25% 95%, rgba(255, 255, 255, 0.2) 14px 7px, transparent 14px);
        background-size: 200px 200px;
        background-position: 
            30% 40%,
            55% 55%,
            80% 30%,
            10% 65%,
            40% 85%,
            70% 10%,
            90% 45%,
            20% 90%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        background: 
            radial-gradient(ellipse at 55% 65%, rgba(255, 255, 255, 0.3) 20px 12px, transparent 20px),
            radial-gradient(ellipse at 80% 80%, rgba(255, 255, 255, 0.2) 15px 8px, transparent 15px),
            radial-gradient(ellipse at 15% 55%, rgba(255, 255, 255, 0.4) 25px 15px, transparent 25px),
            radial-gradient(ellipse at 35% 90%, rgba(255, 255, 255, 0.3) 18px 10px, transparent 18px),
            radial-gradient(ellipse at 65% 20%, rgba(255, 255, 255, 0.2) 22px 13px, transparent 22px),
            radial-gradient(ellipse at 95% 35%, rgba(255, 255, 255, 0.4) 16px 9px, transparent 16px),
            radial-gradient(ellipse at 25% 70%, rgba(255, 255, 255, 0.3) 28px 16px, transparent 28px),
            radial-gradient(ellipse at 45% 25%, rgba(255, 255, 255, 0.2) 14px 7px, transparent 14px);
        background-size: 200px 200px;
        background-position: 
            50% 60%,
            75% 75%,
            10% 50%,
            30% 85%,
            60% 15%,
            90% 30%,
            20% 65%,
            40% 20%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        background: 
            radial-gradient(ellipse at 75% 85%, rgba(255, 255, 255, 0.3) 20px 12px, transparent 20px),
            radial-gradient(ellipse at 100% 100%, rgba(255, 255, 255, 0.2) 15px 8px, transparent 15px),
            radial-gradient(ellipse at 35% 75%, rgba(255, 255, 255, 0.4) 25px 15px, transparent 25px),
            radial-gradient(ellipse at 55% 20%, rgba(255, 255, 255, 0.3) 18px 10px, transparent 18px),
            radial-gradient(ellipse at 85% 40%, rgba(255, 255, 255, 0.2) 22px 13px, transparent 22px),
            radial-gradient(ellipse at 25% 55%, rgba(255, 255, 255, 0.4) 16px 9px, transparent 16px),
            radial-gradient(ellipse at 45% 90%, rgba(255, 255, 255, 0.3) 28px 16px, transparent 28px),
            radial-gradient(ellipse at 65% 45%, rgba(255, 255, 255, 0.2) 14px 7px, transparent 14px);
        background-size: 200px 200px;
        background-position: 
            70% 80%,
            95% 95%,
            30% 70%,
            50% 15%,
            80% 35%,
            20% 50%,
            40% 85%,
            60% 40%;
        transform: rotate(270deg) scale(1.05);
    }
    100% {
        background: 
            radial-gradient(ellipse at 95% 105%, rgba(255, 255, 255, 0.3) 20px 12px, transparent 20px),
            radial-gradient(ellipse at 120% 120%, rgba(255, 255, 255, 0.2) 15px 8px, transparent 15px),
            radial-gradient(ellipse at 55% 95%, rgba(255, 255, 255, 0.4) 25px 15px, transparent 25px),
            radial-gradient(ellipse at 75% 40%, rgba(255, 255, 255, 0.3) 18px 10px, transparent 18px),
            radial-gradient(ellipse at 105% 60%, rgba(255, 255, 255, 0.2) 22px 13px, transparent 22px),
            radial-gradient(ellipse at 45% 75%, rgba(255, 255, 255, 0.4) 16px 9px, transparent 16px),
            radial-gradient(ellipse at 65% 110%, rgba(255, 255, 255, 0.3) 28px 16px, transparent 28px),
            radial-gradient(ellipse at 85% 65%, rgba(255, 255, 255, 0.2) 14px 7px, transparent 14px);
        background-size: 200px 200px;
        background-position: 
            90% 100%,
            115% 115%,
            50% 90%,
            70% 35%,
            100% 55%,
            40% 70%,
            60% 105%,
            80% 60%;
        transform: rotate(360deg) scale(1);
    }
}

@media (max-width: 480px) {
    .hqhpg_cookies-hero::before,
    .hqhpg_cookies-hero::after {
        animation: none;
        opacity: 0.1;
    }
}

.hqhpg_hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: hqhpg_cookiesTitleFloat 4s ease-in-out infinite;
}

@keyframes hqhpg_cookiesTitleFloat {
    0%, 100% { 
        transform: translateY(0);
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }
    50% { 
        transform: translateY(-10px);
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
    }
}

.hqhpg_hero-content p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.hqhpg_cookies-content {
    padding: 4rem 2rem;
    background: #0b1220;
}

.hqhpg_content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hqhpg_cookies-intro {
    background: #111827;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px dashed #0ea5e9;
    position: relative;
}

.hqhpg_cookies-intro::before,
.hqhpg_cookies-intro::after {
    content: '🍪';
    position: absolute;
    font-size: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.hqhpg_cookies-intro::before {
    left: 1rem;
}

.hqhpg_cookies-intro::after {
    right: 1rem;
}

.hqhpg_cookies-intro i {
    font-size: 3rem;
    color: #7dd3fc;
    margin-bottom: 1.5rem;
    display: block;
}

.hqhpg_cookies-intro p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.hqhpg_cookies-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hqhpg_cookies-section {
    background: #111827;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.hqhpg_cookies-section:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #7dd3fc;
}

.hqhpg_section-header {
    background: linear-gradient(135deg, #0b1220 0%, #1f2937 100%);
    padding: 2rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.hqhpg_cookies-section:hover .hqhpg_section-header::before {
    left: 100%;
}

.hqhpg_cookies-section:hover .hqhpg_section-header {
    background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
}

.hqhpg_section-header i {
    font-size: 2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hqhpg_cookies-section:hover .hqhpg_section-header i {
    transform: rotate(360deg);
}

.hqhpg_section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 400;
}

.hqhpg_section-content {
    padding: 2.5rem;
}

.hqhpg_section-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hqhpg_section-content li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.hqhpg_section-content li:last-child {
    border-bottom: none;
}

.hqhpg_section-content li::before {
    content: '🍪';
    position: absolute;
    left: -1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1rem;
}

.hqhpg_section-content li:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05), transparent);
    padding-left: 2rem;
    border-radius: 10px;
}

.hqhpg_section-content li:hover::before {
    opacity: 1;
}

.hqhpg_section-content li i {
    color: #7dd3fc;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    width: 24px;
    text-align: center;
}

.hqhpg_section-content li:hover i {
    transform: scale(1.3);
    color: #7c3aed;
}

.hqhpg_section-content strong {
    color: #e2e8f0;
    font-weight: 600;
}

.hqhpg_cookie-controls {
    background: #111827;
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #1f2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hqhpg_control-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.hqhpg_control-info i {
    font-size: 2.5rem;
    color: #7dd3fc;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.hqhpg_control-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.hqhpg_control-info p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.hqhpg_control-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-shrink: 0;
}

.hqhpg_control-btn {
    padding: 1rem 1.5rem;
    border: 2px solid #0ea5e9;
    border-radius: 10px;
    background: transparent;
    color: #7dd3fc;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hqhpg_control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.35);
}

.hqhpg_accept-all {
    background: #2563eb;
    color: #ffffff;
}

.hqhpg_accept-all:hover {
    background: #5a67d8;
}

.hqhpg_manage-prefs:hover {
    background: #2563eb;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hqhpg_cookies-hero {
        padding: 4rem 1.5rem;
    }
    
    .hqhpg_hero-content h1 {
        font-size: 3rem;
    }
    
    .hqhpg_hero-content p {
        font-size: 1.2rem;
    }
    
    .hqhpg_cookies-content {
        padding: 3rem 1.5rem;
    }
    
    .hqhpg_cookies-intro {
        padding: 2rem;
    }
    
    .hqhpg_section-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hqhpg_section-header h2 {
        font-size: 1.6rem;
    }
    
    .hqhpg_section-content {
        padding: 2rem;
    }
    
    .hqhpg_cookie-controls {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .hqhpg_control-info {
        min-width: auto;
        flex-direction: column;
        text-align: center;
    }
    
    .hqhpg_control-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hqhpg_cookies-hero {
        padding: 3rem 0.5rem;
    }
    
    .hqhpg_hero-content h1 {
        font-size: 2.2rem;
        font-size: 0.9rem;
    }
    
    .hqhpg_hero-content p {
        font-size: 1rem;
        font-size: 0.8rem;
    }
    
    .hqhpg_cookies-content {
        padding: 2rem 0.3rem;
    }
    
    .hqhpg_content-container {
        margin: 0 0.3rem;
    }
    
    .hqhpg_cookies-intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hqhpg_cookies-intro p {
        font-size: 1rem;
    }
    
    .hqhpg_section-header {
        padding: 1.2rem;
    }
    
    .hqhpg_section-header h2 {
        font-size: 1.4rem;
    }
    
    .hqhpg_section-content {
        padding: 1.5rem;
    }
    
    .hqhpg_section-content li {
        font-size: 0.9rem;
        padding: 0.8rem 0;
    }
    
    .hqhpg_section-content li i {
        font-size: 1.1rem;
    }
    
    .hqhpg_cookie-controls {
        padding: 1.5rem;
    }
    
    .hqhpg_control-info h3 {
        font-size: 1.3rem;
    }
    
    .hqhpg_control-info p {
        font-size: 0.9rem;
    }
    
    .hqhpg_control-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

.hqhpg_responsible-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
}

.hqhpg_responsible-hero {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.hqhpg_responsible-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqhpg_responsiblePatternFloat 50s linear infinite;
    opacity: 0.25;
}

@keyframes hqhpg_responsiblePatternFloat {
    0% {
        background: 
            radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 55% 15%, rgba(255, 255, 255, 0.2) 12px, transparent 12px),
            radial-gradient(circle at 75% 40%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 95% 25%, rgba(255, 255, 255, 0.3) 11px, transparent 11px),
            radial-gradient(circle at 25% 55%, rgba(255, 255, 255, 0.2) 5px, transparent 5px),
            radial-gradient(circle at 45% 65%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 65% 50%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.2) 13px, transparent 13px),
            radial-gradient(circle at 5% 80%, rgba(255, 255, 255, 0.4) 8px, transparent 8px);
        background-size: 170px 170px;
        background-position: 
            10% 0px,
            30% 15px,
            50% -15px,
            70% 20px,
            90% 0px,
            20% 40px,
            40% 50px,
            60% 35px,
            80% 55px,
            0% 65px;
        transform: rotate(0deg) scale(1);
    }
    12.5% {
        background: 
            radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 45% 40%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 65% 20%, rgba(255, 255, 255, 0.2) 12px, transparent 12px),
            radial-gradient(circle at 85% 45%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 105% 30%, rgba(255, 255, 255, 0.3) 11px, transparent 11px),
            radial-gradient(circle at 35% 60%, rgba(255, 255, 255, 0.2) 5px, transparent 5px),
            radial-gradient(circle at 55% 70%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 75% 55%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 95% 75%, rgba(255, 255, 255, 0.2) 13px, transparent 13px),
            radial-gradient(circle at 20% 85%, rgba(255, 255, 255, 0.4) 8px, transparent 8px);
        background-size: 170px 170px;
        background-position: 
            20% -5px,
            40% 10px,
            60% -20px,
            80% 15px,
            100% -5px,
            30% 35px,
            50% 45px,
            70% 30px,
            90% 50px,
            15% 60px;
        transform: rotate(45deg) scale(1.01);
    }
    25% {
        background: 
            radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 55% 45%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.2) 12px, transparent 12px),
            radial-gradient(circle at 95% 50%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 115% 35%, rgba(255, 255, 255, 0.3) 11px, transparent 11px),
            radial-gradient(circle at 45% 65%, rgba(255, 255, 255, 0.2) 5px, transparent 5px),
            radial-gradient(circle at 65% 75%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 85% 60%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 105% 80%, rgba(255, 255, 255, 0.2) 13px, transparent 13px),
            radial-gradient(circle at 35% 90%, rgba(255, 255, 255, 0.4) 8px, transparent 8px);
        background-size: 170px 170px;
        background-position: 
            30% -10px,
            50% 5px,
            70% -25px,
            90% 10px,
            110% -10px,
            40% 30px,
            60% 40px,
            80% 25px,
            100% 45px,
            30% 55px;
        transform: rotate(90deg) scale(1.02);
    }
    37.5% {
        background: 
            radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 65% 50%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.2) 12px, transparent 12px),
            radial-gradient(circle at 105% 55%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 125% 40%, rgba(255, 255, 255, 0.3) 11px, transparent 11px),
            radial-gradient(circle at 55% 70%, rgba(255, 255, 255, 0.2) 5px, transparent 5px),
            radial-gradient(circle at 75% 80%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 95% 65%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 115% 85%, rgba(255, 255, 255, 0.2) 13px, transparent 13px),
            radial-gradient(circle at 50% 95%, rgba(255, 255, 255, 0.4) 8px, transparent 8px);
        background-size: 170px 170px;
        background-position: 
            40% -15px,
            60% 0px,
            80% -30px,
            100% 5px,
            120% -15px,
            50% 25px,
            70% 35px,
            90% 20px,
            110% 40px,
            45% 50px;
        transform: rotate(135deg) scale(1.01);
    }
    50% {
        background: 
            radial-gradient(circle at 55% 40%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 75% 55%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 95% 35%, rgba(255, 255, 255, 0.2) 12px, transparent 12px),
            radial-gradient(circle at 115% 60%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 135% 45%, rgba(255, 255, 255, 0.3) 11px, transparent 11px),
            radial-gradient(circle at 65% 75%, rgba(255, 255, 255, 0.2) 5px, transparent 5px),
            radial-gradient(circle at 85% 85%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 105% 70%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 125% 90%, rgba(255, 255, 255, 0.2) 13px, transparent 13px),
            radial-gradient(circle at 65% 100%, rgba(255, 255, 255, 0.4) 8px, transparent 8px);
        background-size: 170px 170px;
        background-position: 
            50% -20px,
            70% -5px,
            90% -35px,
            110% 0px,
            130% -20px,
            60% 20px,
            80% 30px,
            100% 15px,
            120% 35px,
            60% 45px;
        transform: rotate(180deg) scale(1);
    }
    62.5% {
        background: 
            radial-gradient(circle at 65% 45%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 85% 60%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 105% 40%, rgba(255, 255, 255, 0.2) 12px, transparent 12px),
            radial-gradient(circle at 125% 65%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 145% 50%, rgba(255, 255, 255, 0.3) 11px, transparent 11px),
            radial-gradient(circle at 75% 80%, rgba(255, 255, 255, 0.2) 5px, transparent 5px),
            radial-gradient(circle at 95% 90%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 115% 75%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 135% 95%, rgba(255, 255, 255, 0.2) 13px, transparent 13px),
            radial-gradient(circle at 80% 105%, rgba(255, 255, 255, 0.4) 8px, transparent 8px);
        background-size: 170px 170px;
        background-position: 
            60% -15px,
            80% 0px,
            100% -25px,
            120% 5px,
            140% -15px,
            70% 25px,
            90% 35px,
            110% 20px,
            130% 40px,
            75% 50px;
        transform: rotate(225deg) scale(0.99);
    }
    75% {
        background: 
            radial-gradient(circle at 75% 50%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 95% 65%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 115% 45%, rgba(255, 255, 255, 0.2) 12px, transparent 12px),
            radial-gradient(circle at 135% 70%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 155% 55%, rgba(255, 255, 255, 0.3) 11px, transparent 11px),
            radial-gradient(circle at 85% 85%, rgba(255, 255, 255, 0.2) 5px, transparent 5px),
            radial-gradient(circle at 105% 95%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 125% 80%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 145% 100%, rgba(255, 255, 255, 0.2) 13px, transparent 13px),
            radial-gradient(circle at 95% 110%, rgba(255, 255, 255, 0.4) 8px, transparent 8px);
        background-size: 170px 170px;
        background-position: 
            70% -10px,
            90% 5px,
            110% -20px,
            130% 10px,
            150% -10px,
            80% 30px,
            100% 40px,
            120% 25px,
            140% 45px,
            90% 55px;
        transform: rotate(270deg) scale(0.98);
    }
    87.5% {
        background: 
            radial-gradient(circle at 85% 55%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 105% 70%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 125% 50%, rgba(255, 255, 255, 0.2) 12px, transparent 12px),
            radial-gradient(circle at 145% 75%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 165% 60%, rgba(255, 255, 255, 0.3) 11px, transparent 11px),
            radial-gradient(circle at 95% 90%, rgba(255, 255, 255, 0.2) 5px, transparent 5px),
            radial-gradient(circle at 115% 100%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 135% 85%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 155% 105%, rgba(255, 255, 255, 0.2) 13px, transparent 13px),
            radial-gradient(circle at 110% 115%, rgba(255, 255, 255, 0.4) 8px, transparent 8px);
        background-size: 170px 170px;
        background-position: 
            80% -5px,
            100% 10px,
            120% -15px,
            140% 15px,
            160% -5px,
            90% 35px,
            110% 45px,
            130% 30px,
            150% 50px,
            105% 60px;
        transform: rotate(315deg) scale(0.99);
    }
    100% {
        background: 
            radial-gradient(circle at 95% 60%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 115% 75%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 135% 55%, rgba(255, 255, 255, 0.2) 12px, transparent 12px),
            radial-gradient(circle at 155% 80%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 175% 65%, rgba(255, 255, 255, 0.3) 11px, transparent 11px),
            radial-gradient(circle at 105% 95%, rgba(255, 255, 255, 0.2) 5px, transparent 5px),
            radial-gradient(circle at 125% 105%, rgba(255, 255, 255, 0.4) 10px, transparent 10px),
            radial-gradient(circle at 145% 90%, rgba(255, 255, 255, 0.3) 7px, transparent 7px),
            radial-gradient(circle at 165% 110%, rgba(255, 255, 255, 0.2) 13px, transparent 13px),
            radial-gradient(circle at 125% 120%, rgba(255, 255, 255, 0.4) 8px, transparent 8px);
        background-size: 170px 170px;
        background-position: 
            90% 0px,
            110% 15px,
            130% -10px,
            150% 20px,
            170% 0px,
            100% 40px,
            120% 50px,
            140% 35px,
            160% 55px,
            120% 65px;
        transform: rotate(360deg) scale(1);
    }
}

.hqhpg_responsible-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqhpg_responsibleShieldPattern 40s linear infinite reverse;
    opacity: 0.15;
}

@keyframes hqhpg_responsibleShieldPattern {
    0% {
        background: 
            conic-gradient(from 0deg at 20% 30%, rgba(255, 255, 255, 0.25) 0deg 120deg, transparent 120deg) at 15% 25% / 100px 100px,
            conic-gradient(from 120deg at 50% 15%, rgba(255, 255, 255, 0.2) 0deg 90deg, transparent 90deg) at 45% 10% / 80px 80px,
            conic-gradient(from 240deg at 80% 45%, rgba(255, 255, 255, 0.3) 0deg 150deg, transparent 150deg) at 75% 40% / 120px 120px,
            conic-gradient(from 60deg at 30% 70%, rgba(255, 255, 255, 0.25) 0deg 100deg, transparent 100deg) at 25% 65% / 90px 90px,
            conic-gradient(from 180deg at 65% 85%, rgba(255, 255, 255, 0.2) 0deg 80deg, transparent 80deg) at 60% 80% / 70px 70px,
            conic-gradient(from 300deg at 90% 60%, rgba(255, 255, 255, 0.3) 0deg 110deg, transparent 110deg) at 85% 55% / 110px 110px;
        background-repeat: no-repeat;
        transform: rotate(0deg) scale(1);
    }
    33.33% {
        background: 
            conic-gradient(from 120deg at 40% 50%, rgba(255, 255, 255, 0.25) 0deg 120deg, transparent 120deg) at 35% 45% / 100px 100px,
            conic-gradient(from 240deg at 70% 35%, rgba(255, 255, 255, 0.2) 0deg 90deg, transparent 90deg) at 65% 30% / 80px 80px,
            conic-gradient(from 0deg at 20% 65%, rgba(255, 255, 255, 0.3) 0deg 150deg, transparent 150deg) at 15% 60% / 120px 120px,
            conic-gradient(from 180deg at 50% 90%, rgba(255, 255, 255, 0.25) 0deg 100deg, transparent 100deg) at 45% 85% / 90px 90px,
            conic-gradient(from 300deg at 85% 25%, rgba(255, 255, 255, 0.2) 0deg 80deg, transparent 80deg) at 80% 20% / 70px 70px,
            conic-gradient(from 60deg at 30% 80%, rgba(255, 255, 255, 0.3) 0deg 110deg, transparent 110deg) at 25% 75% / 110px 110px;
        background-repeat: no-repeat;
        transform: rotate(120deg) scale(1.1);
    }
    66.67% {
        background: 
            conic-gradient(from 240deg at 60% 70%, rgba(255, 255, 255, 0.25) 0deg 120deg, transparent 120deg) at 55% 65% / 100px 100px,
            conic-gradient(from 0deg at 90% 55%, rgba(255, 255, 255, 0.2) 0deg 90deg, transparent 90deg) at 85% 50% / 80px 80px,
            conic-gradient(from 120deg at 40% 85%, rgba(255, 255, 255, 0.3) 0deg 150deg, transparent 150deg) at 35% 80% / 120px 120px,
            conic-gradient(from 300deg at 70% 30%, rgba(255, 255, 255, 0.25) 0deg 100deg, transparent 100deg) at 65% 25% / 90px 90px,
            conic-gradient(from 60deg at 25% 45%, rgba(255, 255, 255, 0.2) 0deg 80deg, transparent 80deg) at 20% 40% / 70px 70px,
            conic-gradient(from 180deg at 50% 100%, rgba(255, 255, 255, 0.3) 0deg 110deg, transparent 110deg) at 45% 95% / 110px 110px;
        background-repeat: no-repeat;
        transform: rotate(240deg) scale(0.9);
    }
    100% {
        background: 
            conic-gradient(from 360deg at 80% 90%, rgba(255, 255, 255, 0.25) 0deg 120deg, transparent 120deg) at 75% 85% / 100px 100px,
            conic-gradient(from 120deg at 30% 75%, rgba(255, 255, 255, 0.2) 0deg 90deg, transparent 90deg) at 25% 70% / 80px 80px,
            conic-gradient(from 240deg at 60% 25%, rgba(255, 255, 255, 0.3) 0deg 150deg, transparent 150deg) at 55% 20% / 120px 120px,
            conic-gradient(from 60deg at 90% 50%, rgba(255, 255, 255, 0.25) 0deg 100deg, transparent 100deg) at 85% 45% / 90px 90px,
            conic-gradient(from 180deg at 45% 65%, rgba(255, 255, 255, 0.2) 0deg 80deg, transparent 80deg) at 40% 60% / 70px 70px,
            conic-gradient(from 300deg at 70% 120%, rgba(255, 255, 255, 0.3) 0deg 110deg, transparent 110deg) at 65% 115% / 110px 110px;
        background-repeat: no-repeat;
        transform: rotate(360deg) scale(1);
    }
}

@media (max-width: 480px) {
    .hqhpg_responsible-hero::before,
    .hqhpg_responsible-hero::after {
        animation: none;
        opacity: 0.1;
    }
}
.hqhpg_hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: hqhpg_responsibleTitleBeat 3s ease-in-out infinite;
}

@keyframes hqhpg_responsibleTitleBeat {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
    }
    50% { 
        transform: scale(1.03);
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
    }
}

.hqhpg_hero-content p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.hqhpg_responsible-content {
    padding: 4rem 2rem;
    background: #0b1220;
}

.hqhpg_content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hqhpg_responsible-intro {
    background: #111827;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 3px solid #48bb78;
    position: relative;
}

.hqhpg_responsible-intro::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid transparent;
    border-radius: 23px;
    background: linear-gradient(135deg, #22c55e, #0ea5e9);
    z-index: -1;
    animation: hqhpg_borderRotate 3s linear infinite;
}

@keyframes hqhpg_borderRotate {
    0% { transform: translateX(0deg); }
    100% { transform: translateX(6deg); }
}

.hqhpg_responsible-intro i {
    font-size: 3rem;
    color: #48bb78;
    margin-bottom: 1.5rem;
    display: block;
}

.hqhpg_responsible-intro p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.hqhpg_responsible-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hqhpg_responsible-section {
    background: #111827;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.hqhpg_responsible-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hqhpg_section-header {
    background: linear-gradient(135deg, #0b1220 0%, #1f2937 100%);
    padding: 2rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hqhpg_responsible-section:hover .hqhpg_section-header {
    background: linear-gradient(135deg, #22c55e 0%, #0ea5e9 100%);
}

.hqhpg_section-header i {
    font-size: 2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hqhpg_responsible-section:hover .hqhpg_section-header i {
    transform: scale(1.2) rotate(10deg);
}

.hqhpg_section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 400;
}

.hqhpg_section-content {
    padding: 2.5rem;
}

.hqhpg_section-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hqhpg_section-content li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.hqhpg_section-content li:last-child {
    border-bottom: none;
}

.hqhpg_section-content li::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #48bb78;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hqhpg_section-content li:hover {
    background: linear-gradient(90deg, rgba(72, 187, 120, 0.1), transparent);
    padding-left: 2rem;
    border-radius: 10px;
}

.hqhpg_section-content li:hover::before {
    opacity: 1;
}

.hqhpg_section-content li i {
    color: #48bb78;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    width: 24px;
    text-align: center;
}

.hqhpg_section-content li:hover i {
    transform: scale(1.3);
    color: #7dd3fc;
}

.hqhpg_section-content strong {
    color: #e2e8f0;
    font-weight: 600;
}

.hqhpg_responsible-partners {
    background: #111827;
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hqhpg_responsible-partners h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.hqhpg_partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.hqhpg_partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #1f2937;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.hqhpg_partner-item:hover {
    transform: translateY(-5px);
    border-color: #7dd3fc;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hqhpg_partner-item img {
    width: 150px;
    height: 75px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hqhpg_partner-item:hover img {
    transform: scale(1.1);
}

.hqhpg_partner-item span {
    font-weight: 600;
    color: #cbd5e1;
    text-align: center;
}

.hqhpg_emergency-contact {
    background: linear-gradient(135deg, #fed7d7 0%, #feebc8 100%);
    border: 2px solid #feb2b2;
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.hqhpg_emergency-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e53e3e, #dd6b20);
}

.hqhpg_emergency-contact i {
    font-size: 3rem;
    color: #e53e3e;
    flex-shrink: 0;
    animation: hqhpg_emergencyPulse 2s ease-in-out infinite;
}

@keyframes hqhpg_emergencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hqhpg_emergency-contact h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #c53030;
    margin-bottom: 0.5rem;
}

.hqhpg_emergency-contact p {
    margin: 0;
    color: #744210;
    line-height: 1.6;
}

.hqhpg_emergency-contact a {
    color: #c53030;
    font-weight: 600;
    text-decoration: none;
}

.hqhpg_emergency-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hqhpg_responsible-hero {
        padding: 4rem 1.5rem;
    }
    
    .hqhpg_hero-content h1 {
        font-size: 3rem;
    }
    
    .hqhpg_hero-content p {
        font-size: 1.2rem;
    }
    
    .hqhpg_responsible-content {
        padding: 3rem 1.5rem;
    }
    
    .hqhpg_responsible-intro {
        padding: 2rem;
    }
    
    .hqhpg_section-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hqhpg_section-header h2 {
        font-size: 1.6rem;
    }
    
    .hqhpg_section-content {
        padding: 2rem;
    }
    
    .hqhpg_responsible-partners {
        padding: 2rem;
    }
    
    .hqhpg_partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hqhpg_emergency-contact {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hqhpg_responsible-hero {
        padding: 3rem 0.5rem;
    }
    
    .hqhpg_hero-content h1 {
        font-size: 2.2rem;
        font-size: 0.9rem;
    }
    
    .hqhpg_hero-content p {
        font-size: 1rem;
        font-size: 0.8rem;
    }
    
    .hqhpg_responsible-content {
        padding: 2rem 0.3rem;
    }
    
    .hqhpg_content-container {
        margin: 0 0.3rem;
    }
    
    .hqhpg_responsible-intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hqhpg_responsible-intro p {
        font-size: 1rem;
    }
    
    .hqhpg_section-header {
        padding: 1.2rem;
    }
    
    .hqhpg_section-header h2 {
        font-size: 1.4rem;
    }
    
    .hqhpg_section-content {
        padding: 1.5rem;
    }
    
    .hqhpg_section-content li {
        font-size: 0.9rem;
        padding: 0.8rem 0;
    }
    
    .hqhpg_section-content li i {
        font-size: 1.1rem;
    }
    
    .hqhpg_responsible-partners {
        padding: 1.5rem;
    }
    
    .hqhpg_responsible-partners h3 {
        font-size: 1.6rem;
    }
    
    .hqhpg_partner-item {
        padding: 1rem;
    }
    
    .hqhpg_partner-item img {
        width: 120px;
        height: 60px;
    }
    
    .hqhpg_emergency-contact {
        padding: 1.5rem;
    }
    
    .hqhpg_emergency-contact h3 {
        font-size: 1.5rem;
    }
    
    .hqhpg_emergency-contact p {
        font-size: 0.9rem;
    }
    
    .hqhpg_emergency-contact a {
        font-size: 0.8rem;
    }
}

.hqhpg_404-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hqhpg_404-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqhpg_404PatternFloat 60s linear infinite;
    opacity: 0.15;
}

@keyframes hqhpg_404PatternFloat {
    0% {
        background: 
            radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 40% 45%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 60% 35%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
            radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 5% 55%, rgba(255, 255, 255, 0.3) 6px, transparent 6px);
        background-size: 130px 130px;
        background-position: 
            5% 10%,
            25% 20%,
            45% 5%,
            65% 25%,
            85% 15%,
            15% 35%,
            35% 40%,
            55% 30%,
            75% 45%,
            0% 50%;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    12.5% {
        background: 
            radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 60% 15%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 80% 35%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 100% 25%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 30% 45%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
            radial-gradient(circle at 90% 55%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 15% 60%, rgba(255, 255, 255, 0.3) 6px, transparent 6px);
        background-size: 130px 130px;
        background-position: 
            15% 15%,
            35% 25%,
            55% 10%,
            75% 30%,
            95% 20%,
            25% 40%,
            45% 45%,
            65% 35%,
            85% 50%,
            10% 55%;
        transform: translate(-25px, -25px) rotate(45deg) scale(1.025);
    }
    25% {
        background: 
            radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 110% 30%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 60% 55%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 80% 45%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
            radial-gradient(circle at 100% 60%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 25% 65%, rgba(255, 255, 255, 0.3) 6px, transparent 6px);
        background-size: 130px 130px;
        background-position: 
            25% 20%,
            45% 30%,
            65% 15%,
            85% 35%,
            105% 25%,
            35% 45%,
            55% 50%,
            75% 40%,
            95% 55%,
            20% 60%;
        transform: translate(-50px, -50px) rotate(90deg) scale(1.1);
    }
    37.5% {
        background: 
            radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 100% 45%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 120% 35%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
            radial-gradient(circle at 110% 65%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 35% 70%, rgba(255, 255, 255, 0.3) 6px, transparent 6px);
        background-size: 130px 130px;
        background-position: 
            35% 25%,
            55% 35%,
            75% 20%,
            95% 40%,
            115% 30%,
            45% 50%,
            65% 55%,
            85% 45%,
            105% 60%,
            30% 65%;
        transform: translate(-25px, -25px) rotate(135deg) scale(1.05);
    }
    50% {
        background: 
            radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 70% 45%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 110% 50%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 130% 40%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 80% 65%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 100% 55%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
            radial-gradient(circle at 120% 70%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 45% 75%, rgba(255, 255, 255, 0.3) 6px, transparent 6px);
        background-size: 130px 130px;
        background-position: 
            45% 30%,
            65% 40%,
            85% 25%,
            105% 45%,
            125% 35%,
            55% 55%,
            75% 60%,
            95% 50%,
            115% 65%,
            40% 70%;
        transform: translate(0, 0) rotate(180deg) scale(1);
    }
    62.5% {
        background: 
            radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 100% 35%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 120% 55%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 140% 45%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 70% 65%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 110% 60%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
            radial-gradient(circle at 130% 75%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 55% 80%, rgba(255, 255, 255, 0.3) 6px, transparent 6px);
        background-size: 130px 130px;
        background-position: 
            55% 35%,
            75% 45%,
            95% 30%,
            115% 50%,
            135% 40%,
            65% 60%,
            85% 65%,
            105% 55%,
            125% 70%,
            50% 75%;
        transform: translate(25px, 25px) rotate(225deg) scale(0.95);
    }
    75% {
        background: 
            radial-gradient(circle at 70% 45%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 90% 55%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 110% 40%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 130% 60%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 150% 50%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 100% 75%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 120% 65%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
            radial-gradient(circle at 140% 80%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 65% 85%, rgba(255, 255, 255, 0.3) 6px, transparent 6px);
        background-size: 130px 130px;
        background-position: 
            65% 40%,
            85% 50%,
            105% 35%,
            125% 55%,
            145% 45%,
            75% 65%,
            95% 70%,
            115% 60%,
            135% 75%,
            60% 80%;
        transform: translate(50px, 50px) rotate(270deg) scale(0.9);
    }
    87.5% {
        background: 
            radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 100% 60%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 120% 45%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 140% 65%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 160% 55%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 90% 75%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 110% 80%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 130% 70%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
            radial-gradient(circle at 150% 85%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 75% 90%, rgba(255, 255, 255, 0.3) 6px, transparent 6px);
        background-size: 130px 130px;
        background-position: 
            75% 45%,
            95% 55%,
            115% 40%,
            135% 60%,
            155% 50%,
            85% 70%,
            105% 75%,
            125% 65%,
            145% 80%,
            70% 85%;
        transform: translate(25px, 25px) rotate(315deg) scale(0.95);
    }
    100% {
        background: 
            radial-gradient(circle at 90% 55%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 110% 65%, rgba(255, 255, 255, 0.2) 3px, transparent 3px),
            radial-gradient(circle at 130% 50%, rgba(255, 255, 255, 0.4) 8px, transparent 8px),
            radial-gradient(circle at 150% 70%, rgba(255, 255, 255, 0.3) 6px, transparent 6px),
            radial-gradient(circle at 170% 60%, rgba(255, 255, 255, 0.2) 7px, transparent 7px),
            radial-gradient(circle at 100% 80%, rgba(255, 255, 255, 0.4) 4px, transparent 4px),
            radial-gradient(circle at 120% 85%, rgba(255, 255, 255, 0.3) 5px, transparent 5px),
            radial-gradient(circle at 140% 75%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
            radial-gradient(circle at 160% 90%, rgba(255, 255, 255, 0.4) 9px, transparent 9px),
            radial-gradient(circle at 85% 95%, rgba(255, 255, 255, 0.3) 6px, transparent 6px);
        background-size: 130px 130px;
        background-position: 
            85% 50%,
            105% 60%,
            125% 45%,
            145% 65%,
            165% 55%,
            95% 75%,
            115% 80%,
            135% 70%,
            155% 85%,
            80% 90%;
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

.hqhpg_404-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    animation: hqhpg_404LostElements 55s linear infinite reverse;
    opacity: 0.1;
}

@keyframes hqhpg_404LostElements {
    0% {
        background: 
            radial-gradient(ellipse at 15% 20%, rgba(255, 255, 255, 0.2) 15px 8px, transparent 15px) at 10% 15% / 100px 100px,
            radial-gradient(ellipse at 40% 35%, rgba(255, 255, 255, 0.15) 12px 6px, transparent 12px) at 35% 30% / 80px 80px,
            radial-gradient(ellipse at 65% 15%, rgba(255, 255, 255, 0.25) 20px 10px, transparent 20px) at 60% 10% / 120px 120px,
            radial-gradient(ellipse at 85% 40%, rgba(255, 255, 255, 0.2) 18px 9px, transparent 18px) at 80% 35% / 90px 90px,
            radial-gradient(ellipse at 25% 60%, rgba(255, 255, 255, 0.15) 14px 7px, transparent 14px) at 20% 55% / 70px 70px,
            radial-gradient(ellipse at 55% 70%, rgba(255, 255, 255, 0.25) 16px 8px, transparent 16px) at 50% 65% / 110px 110px;
        background-repeat: no-repeat;
        transform: rotate(0deg) scale(1);
    }
    33.33% {
        background: 
            radial-gradient(ellipse at 35% 40%, rgba(255, 255, 255, 0.2) 15px 8px, transparent 15px) at 30% 35% / 100px 100px,
            radial-gradient(ellipse at 60% 55%, rgba(255, 255, 255, 0.15) 12px 6px, transparent 12px) at 55% 50% / 80px 80px,
            radial-gradient(ellipse at 85% 35%, rgba(255, 255, 255, 0.25) 20px 10px, transparent 20px) at 80% 30% / 120px 120px,
            radial-gradient(ellipse at 15% 70%, rgba(255, 255, 255, 0.2) 18px 9px, transparent 18px) at 10% 65% / 90px 90px,
            radial-gradient(ellipse at 45% 80%, rgba(255, 255, 255, 0.15) 14px 7px, transparent 14px) at 40% 75% / 70px 70px,
            radial-gradient(ellipse at 75% 20%, rgba(255, 255, 255, 0.25) 16px 8px, transparent 16px) at 70% 15% / 110px 110px;
        background-repeat: no-repeat;
        transform: rotate(120deg) scale(1.2);
    }
    66.67% {
        background: 
            radial-gradient(ellipse at 55% 60%, rgba(255, 255, 255, 0.2) 15px 8px, transparent 15px) at 50% 55% / 100px 100px,
            radial-gradient(ellipse at 80% 75%, rgba(255, 255, 255, 0.15) 12px 6px, transparent 12px) at 75% 70% / 80px 80px,
            radial-gradient(ellipse at 15% 55%, rgba(255, 255, 255, 0.25) 20px 10px, transparent 20px) at 10% 50% / 120px 120px,
            radial-gradient(ellipse at 35% 90%, rgba(255, 255, 255, 0.2) 18px 9px, transparent 18px) at 30% 85% / 90px 90px,
            radial-gradient(ellipse at 65% 20%, rgba(255, 255, 255, 0.15) 14px 7px, transparent 14px) at 60% 15% / 70px 70px,
            radial-gradient(ellipse at 95% 40%, rgba(255, 255, 255, 0.25) 16px 8px, transparent 16px) at 90% 35% / 110px 110px;
        background-repeat: no-repeat;
        transform: rotate(240deg) scale(0.8);
    }
    100% {
        background: 
            radial-gradient(ellipse at 75% 80%, rgba(255, 255, 255, 0.2) 15px 8px, transparent 15px) at 70% 75% / 100px 100px,
            radial-gradient(ellipse at 100% 95%, rgba(255, 255, 255, 0.15) 12px 6px, transparent 12px) at 95% 90% / 80px 80px,
            radial-gradient(ellipse at 35% 75%, rgba(255, 255, 255, 0.25) 20px 10px, transparent 20px) at 30% 70% / 120px 120px,
            radial-gradient(ellipse at 55% 20%, rgba(255, 255, 255, 0.2) 18px 9px, transparent 18px) at 50% 15% / 90px 90px,
            radial-gradient(ellipse at 85% 40%, rgba(255, 255, 255, 0.15) 14px 7px, transparent 14px) at 80% 35% / 70px 70px,
            radial-gradient(ellipse at 25% 60%, rgba(255, 255, 255, 0.25) 16px 8px, transparent 16px) at 20% 55% / 110px 110px;
        background-repeat: no-repeat;
        transform: rotate(360deg) scale(1);
    }
}

@media (max-width: 480px) {
    .hqhpg_404-container::before,
    .hqhpg_404-container::after {
        animation: none;
        opacity: 0.05;
    }
}

.hqhpg_404-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.hqhpg_content-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.hqhpg_404-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hqhpg_404-number {
    display: flex;
    gap: 1rem;
}

.hqhpg_digit {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: hqhpg_digitFloat 3s ease-in-out infinite;
}

.hqhpg_digit:nth-child(1) { animation-delay: 0s; }
.hqhpg_digit:nth-child(2) { animation-delay: 0.2s; }
.hqhpg_digit:nth-child(3) { animation-delay: 0.4s; }

@keyframes hqhpg_digitFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
        text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    50% { 
        transform: translateY(-20px) scale(1.1);
        text-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
    }
}

.hqhpg_404-icon {
    font-size: 6rem;
    color: #ffffff;
    animation: hqhpg_iconSearch 4s ease-in-out infinite;
}

@keyframes hqhpg_iconSearch {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    25% { 
        transform: rotate(15deg) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    75% { 
        transform: rotate(-15deg) scale(1.1);
        opacity: 0.8;
    }
}

.hqhpg_404-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hqhpg_404-text p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hqhpg_404-suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hqhpg_suggestion-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    transition: all 0.3s ease;
}

.hqhpg_suggestion-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hqhpg_suggestion-item i {
    font-size: 2rem;
    color: #ffffff;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.hqhpg_suggestion-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.hqhpg_suggestion-item p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    line-height: 1.5;
}

.hqhpg_404-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hqhpg_action-button {
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.hqhpg_primary {
    background: #111827;
    color: #7dd3fc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hqhpg_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: #0b1220;
}

.hqhpg_secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hqhpg_secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hqhpg_404-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #48bb78;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.hqhpg_404-contact i {
    font-size: 2rem;
    color: #48bb78;
    flex-shrink: 0;
}

.hqhpg_404-contact p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.hqhpg_404-contact a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.hqhpg_404-contact a:hover {
    border-bottom-color: #ffffff;
}

@media (max-width: 768px) {
    .hqhpg_404-container {
        padding: 1rem;
    }
    
    .hqhpg_content-wrapper {
        padding: 3rem 2rem;
    }
    
    .hqhpg_digit {
        font-size: 6rem;
    }
    
    .hqhpg_404-icon {
        font-size: 4rem;
    }
    
    .hqhpg_404-text h1 {
        font-size: 2.5rem;
    }
    
    .hqhpg_404-text p {
        font-size: 1.1rem;
    }
    
    .hqhpg_404-suggestions {
        grid-template-columns: 1fr;
    }
    
    .hqhpg_404-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hqhpg_action-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hqhpg_404-container {
        padding: 0.5rem;
    }
    
    .hqhpg_content-wrapper {
        padding: 2rem 1rem;
        margin: 0 0.3rem;
    }
    
    .hqhpg_404-graphic {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hqhpg_digit {
        font-size: 4rem;
        font-size: 0.9rem;
    }
    
    .hqhpg_404-icon {
        font-size: 3rem;
    }
    
    .hqhpg_404-text h1 {
        font-size: 2rem;
        font-size: 0.9rem;
    }
    
    .hqhpg_404-text p {
        font-size: 1rem;
        font-size: 0.8rem;
    }
    
    .hqhpg_suggestion-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .hqhpg_suggestion-item i {
        margin-top: 0;
    }
    
    .hqhpg_suggestion-item h3 {
        font-size: 1.1rem;
    }
    
    .hqhpg_suggestion-item p {
        font-size: 0.85rem;
    }
    
    .hqhpg_action-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-width: auto;
    }
    
    .hqhpg_404-contact {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hqhpg_404-contact p {
        font-size: 0.9rem;
    }
    
    .hqhpg_404-contact a {
        font-size: 0.8rem;
    }
}



