:root {
    --primary-color: #007AFF;
    --secondary-color: #5AC8FA;
    --font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --transition-speed: 0.3s;

    /* Light Theme (Default) */
    --bg-color: #f2f2f7;
    --text-color: #1d1d1f;
    --secondary-text: #6e6e73;
    --glass-bg: rgba(235, 235, 235, 0.72);
    --glass-border: rgba(0, 0, 0, 0.1);
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.1);
    --hero-bg: radial-gradient(circle at center, rgba(0, 122, 255, 0.15) 0%, rgba(90, 200, 250, 0.05) 50%, transparent 80%);
}

@media (prefers-color-scheme: dark) {
    :root:not(.theme-light) {
        --bg-color: #000000;
        --text-color: #f5f5f7;
        --secondary-text: #86868b;
        --glass-bg: rgba(0, 0, 0, 0.72);
        --glass-border: rgba(255, 255, 255, 0.1);
        --card-bg: #1c1c1e;
        --card-border: rgba(255, 255, 255, 0.1);
        --hero-bg: radial-gradient(circle at center, rgba(0, 122, 255, 0.15) 0%, transparent 70%);
    }
}

/* Manual Overrides */
.theme-light {
    --bg-color: #f2f2f7;
    --text-color: #1d1d1f;
    --secondary-text: #6e6e73;
    --glass-bg: rgba(235, 235, 235, 0.72);
    --glass-border: rgba(0, 0, 0, 0.1);
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.1);
    --hero-bg: radial-gradient(circle at center, rgba(0, 122, 255, 0.15) 0%, rgba(90, 200, 250, 0.05) 50%, transparent 80%);
}

.theme-dark {
    --bg-color: #000000;
    --text-color: #f5f5f7;
    --secondary-text: #86868b;
    --glass-bg: rgba(0, 0, 0, 0.72);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-bg: #1c1c1e;
    --card-border: rgba(255, 255, 255, 0.1);
    --hero-bg: radial-gradient(circle at center, rgba(0, 122, 255, 0.15) 0%, transparent 70%);
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity var(--transition-speed);
}

a:hover {
    opacity: 0.8;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container img {
    height: 32px;
    width: 32px;
}

.logo-container span {
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Custom Language Selector */
.custom-language-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.flag-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
    line-height: 1;
}

.flag-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.theme-dark .flag-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.flag-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    margin-top: 8px;
    max-height: 300px;
    overflow-y: auto;
}

.flag-dropdown.hidden {
    display: none;
}

.flag-dropdown button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s;
    width: 100%;
    text-align: center;
}

.flag-dropdown button:hover {
    background: rgba(0, 0, 0, 0.05);
}

.theme-dark .flag-dropdown button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Theme Toggle */
.theme-button {
    background: none;
    border: 1px solid var(--glass-border);
    padding: 6px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-light .sun-icon {
    display: none;
}

.theme-light .moon-icon {
    display: block;
}

.theme-dark .sun-icon {
    display: block;
}

.theme-dark .moon-icon {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

/* Animated Background Orbs */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    transform: perspective(1000px) rotateX(60deg) translateY(-100px);
    opacity: 0.15;
    mask-image: linear-gradient(to bottom, transparent, black 40%, black 60%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 40%, black 60%, transparent);
    z-index: 0;
    pointer-events: none;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: perspective(1000px) rotateX(60deg) translateY(-100px) translateY(0);
    }

    100% {
        transform: perspective(1000px) rotateX(60deg) translateY(-100px) translateY(50px);
    }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.4) 0%, transparent 70%);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(90, 200, 250, 0.35) 0%, transparent 70%);
    top: 20%;
    right: -100px;
    animation-delay: -7s;
}

.glow-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.3) 0%, transparent 70%);
    bottom: 10%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(-30px, -20px) scale(1.02);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.hero-brand {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-main {
    font-size: 6.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 122, 255, 0.2);
    animation: shine 8s linear infinite;
}

.brand-sub {
    font-size: 5rem;
    font-weight: 600;
    opacity: 0.95;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--secondary-text) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -10px;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-content>p {
    font-size: 1.5rem;
    color: var(--secondary-text);
    max-width: 600px;
}

/* Feature Pills */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.pill {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 980px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.pill:hover {
    transform: translateY(-4px) scale(1.02);
    background: var(--card-bg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

/* CTA Group */
.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 980px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
}

.cta-button:hover {
    transform: scale(1.05);
    background: #0062cc;
    opacity: 1;
    box-shadow: 0 6px 30px rgba(0, 122, 255, 0.4);
}

.cta-secondary {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.cta-secondary:hover {
    opacity: 0.7;
}

/* Trust Signal */
.trust-signal {
    font-size: 0.9rem;
    color: var(--secondary-text);
    opacity: 0.8;
    margin-top: 8px;
}

/* Hero Mockup */
.hero-mockup {
    position: relative;
    z-index: 1;
    margin-top: 60px;
    width: 100%;
    max-width: 900px;
}

.mockup-container {
    position: relative;
    animation: mockup-float 6s ease-in-out infinite;
}

.mockup-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
    transition: transform 0.1s ease-out;
}

.mockup-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 12px;
    pointer-events: none;
    z-index: 2;
}

/* Show/hide mockups based on theme */
.mockup-light {
    display: block;
}

.mockup-dark {
    display: none;
}

.theme-dark .mockup-light,
:root:not(.theme-light) .mockup-light {
    display: none;
}

.theme-dark .mockup-dark,
:root:not(.theme-light) .mockup-dark {
    display: block;
}

@media (prefers-color-scheme: dark) {
    :root:not(.theme-light) .mockup-light {
        display: none;
    }

    :root:not(.theme-light) .mockup-dark {
        display: block;
    }
}

.theme-light .mockup-light {
    display: block;
}

.theme-light .mockup-dark {
    display: none;
}

@keyframes mockup-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Entrance Animations */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fade-up 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* Features Section */
.features {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.3s, background-color var(--transition-speed);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.theme-dark .feature-card {
    box-shadow: none;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.feature-card p {
    color: var(--secondary-text);
}

.feature-video {
    width: 100%;
    border-radius: 12px;
    margin-top: auto;
    background: #000;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    z-index: 2;
}

.feature-video.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s, background 0.3s;
}

.feature-video:hover .play-button {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.play-button::after {
    content: '▶';
    margin-left: 4px;
}

/* About Section */
.about-section {
    padding: 100px 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.about-section p {
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stats-grid h4 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.stats-grid p {
    font-size: 1rem;
    color: var(--secondary-text);
}

/* Footer */
footer {
    padding: 80px 40px;
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links div h4 {
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--secondary-text);
    letter-spacing: 0.1em;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-color);
    font-size: 1rem;
}

.language-dropdown-container select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: var(--card-bg);
    color: var(--text-color);
    font-family: inherit;
    cursor: pointer;
}

.copyright {
    margin-top: 60px;
    color: var(--secondary-text);
    font-size: 0.9rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }

    .nav-right {
        gap: 16px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 100px 20px 40px;
    }

    .glow-orb {
        filter: blur(60px);
        opacity: 0.4;
    }

    .glow-orb-1 {
        width: 300px;
        height: 300px;
    }

    .glow-orb-2 {
        width: 250px;
        height: 250px;
    }

    .glow-orb-3 {
        width: 200px;
        height: 200px;
    }

    .hero-content {
        gap: 16px;
    }

    .brand-main {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .brand-sub {
        font-size: clamp(2.4rem, 12vw, 3.6rem);
    }

    .hero-content>p {
        font-size: 1.1rem;
    }

    .feature-pills {
        gap: 8px;
    }

    .pill {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .trust-signal {
        font-size: 0.8rem;
    }

    .hero-mockup {
        margin-top: 40px;
        max-width: 100%;
    }

    .mockup-container img {
        border-radius: 8px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    }

    .features {
        padding: 60px 20px;
    }

    .about-section {
        padding: 60px 20px;
    }

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

    .about-section p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .stats-grid {
        gap: 30px;
    }

    .stats-grid h4 {
        font-size: 1.5rem;
    }

    footer {
        padding: 60px 20px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        gap: 40px;
        justify-content: center;
    }
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-modal.hidden {
    display: none;
    opacity: 0;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.modal-content {
    position: relative;
    z-index: 2001;
    width: 90%;
    max-width: 1280px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    animation: modal-zoom 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes modal-zoom {
    to {
        transform: scale(1);
    }
}

.modal-video-container {
    width: 100%;
    aspect-ratio: 16/10;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-video-container video,
.modal-video-container img {
    max-width: 100%;
    max-height: 100%;
    display: none;
    object-fit: contain;
}

.modal-video-container.show-video video,
.modal-video-container.show-image img {
    display: block !important;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2002;
    transition: background 0.2s, transform 0.2s;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .modal-content {
        width: 95%;
    }
}

/* Gallery Styles */
.gallery-section {
    padding: 120px 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image-container {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #1a1a1a;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-card:hover .gallery-image-container img {
    transform: scale(1.05);
}

.gallery-info {
    padding: 20px;
}

.gallery-info h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 100px 20px 60px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Privacy Notice Banner */
.privacy-notice {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 3000;
    max-width: 600px;
    width: 90%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-notice.show {
    transform: translateX(-50%) translateY(0);
}

.privacy-notice p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
}

.privacy-notice-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 980px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s, background 0.2s;
}

.privacy-notice-button:hover {
    transform: scale(1.05);
    background: #0062cc;
}

@media (max-width: 600px) {
    .privacy-notice {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        bottom: 20px;
    }

    .privacy-notice-button {
        width: 100%;
    }
}