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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Logo Container */
.logo-container {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    height: 50px;
    width: auto;
    margin-bottom: 8px;
}

.logo-subtitle {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    margin-top: 4px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Language Selector */
.language-selector {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 4px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.lang-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

/* Hero Video Container */
.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 1;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.7) 70%, #000 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0;
    z-index: 3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    line-height: 1.2;
}


/* Content Section */
.content-section {
    background: #000;
    padding: 60px 30px 40px;
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Headline */
.headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.highlight {
    color: #FF6B35;
}

/* Body Text */
.body-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.cta-button {
    width: 100%;
    max-width: 400px;
    padding: 20px 30px;
    background: linear-gradient(90deg, #FF6B35 0%, #C73E1D 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-text {
    font-size: 20px;
    font-weight: 700;
}

.cta-subtext {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    opacity: 0.9;
}

.cta-subtext svg {
    width: 16px;
    height: 16px;
}

/* Security Section */
.security-section {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.security-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.security-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Footer */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.footer-left {
    flex: 1;
    min-width: 200px;
}

.footer-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

/* Privacy Policy Page Styles */
.privacy-header {
    background: #000;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.privacy-lang-selector {
    position: absolute;
    top: 30px;
    right: 30px;
}

.logo-link {
    display: inline-block;
}

.privacy-logo {
    height: 50px;
    width: auto;
}

.privacy-content {
    padding-top: 40px;
}

.privacy-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.privacy-update {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 40px;
}

.privacy-intro {
    margin-bottom: 50px;
    text-align: center;
}

.privacy-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 20px;
    text-align: left;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-align: left;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.privacy-list li {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.privacy-list li::before {
    content: '•';
    color: #FF6B35;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.privacy-list li strong {
    color: #fff;
}

.privacy-contact {
    margin-top: 20px;
}

.privacy-email {
    color: #FF6B35;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-email:hover {
    color: #ff8c5a;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .logo-container {
        top: 20px;
        left: 20px;
    }

    .logo {
        height: 40px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    .settings-icon {
        top: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
    }

    .language-selector {
        top: 20px;
        right: 20px;
        gap: 6px;
        padding: 3px;
    }

    .lang-btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    .video-overlay-text {
        font-size: 36px;
    }

    .content-section {
        padding: 40px 20px 30px;
    }

    .headline {
        font-size: 36px;
    }

    .body-text {
        font-size: 16px;
    }

    .cta-button {
        padding: 18px 25px;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 28px;
    }

    .body-text {
        font-size: 15px;
    }

    .cta-text {
        font-size: 18px;
    }

    .video-overlay-text {
        font-size: 28px;
    }

    .privacy-lang-selector {
        top: 20px;
        right: 20px;
        gap: 6px;
        padding: 3px;
    }

    .privacy-lang-selector .lang-btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    .privacy-title {
        font-size: 32px;
    }

    .privacy-section-title {
        font-size: 24px;
    }

    .privacy-intro p,
    .privacy-section p,
    .privacy-list li {
        font-size: 15px;
    }
}

