/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Carousel */
.background-carousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.background-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.background-slide.active {
    opacity: 1;
}

.background-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Header Styles */
.header {
    position: relative;
    z-index: 50;
    padding: 20px 0;
    background: rgba(2, 16, 51, 1);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px;
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

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

.lang-btn.active {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000000;
}

.cta-btn {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000000;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Desktop Only Elements */
.desktop-only {
    display: block;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2147483647 !important;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgb(2, 16, 51) !important;
    z-index: 999999 !important;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow: hidden !important;
    backdrop-filter: none !important;
}

.mobile-nav-overlay.active {
    transform: translateX(0) !important;
}

.mobile-nav {
    padding: 100px 40px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 2147483647 !important;
    background-color: rgba(2, 16, 51, 1) !important;
    position: relative;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.mobile-nav-link:hover {
    color: #d4af37;
    padding-left: 10px;
}

/* Mobile Language Toggle */
.mobile-language-toggle {
    margin-top: 40px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.mobile-lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.mobile-lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.mobile-lang-btn.active {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000000;
    border-color: transparent;
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.discover-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.discover-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav {
        display: none;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .language-toggle {
        gap: 3px;
        padding: 3px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .discover-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .cta-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .language-toggle {
        gap: 2px;
        padding: 2px;
    }
    
    .lang-btn {
        padding: 3px 6px;
        font-size: 9px;
    }
    
    .mobile-nav-link {
        font-size: 20px;
        padding: 15px 0;
    }
    
    .mobile-nav {
        padding: 80px 20px 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    animation: fadeIn 1s ease-out 0.5s both;
}

.discover-btn {
    animation: fadeIn 1s ease-out 1s both;
}

/* Loading states */
.background-slide {
    background-color: #1a1a1a;
}

/* Prevent scrolling when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Hide content when mobile menu is open */
body.mobile-menu-open .hero {
    visibility: hidden !important;
    opacity: 0 !important;
}

body.mobile-menu-open .about {
    visibility: hidden !important;
    opacity: 0 !important;
}

body.mobile-menu-open .membership-benefits {
    visibility: hidden !important;
    opacity: 0 !important;
}

body.mobile-menu-open .membership-process {
    visibility: hidden !important;
    opacity: 0 !important;
}

body.mobile-menu-open .footer {
    visibility: hidden !important;
    opacity: 0 !important;
}

body.mobile-menu-open .background-carousel {
    visibility: hidden !important;
    opacity: 0 !important;
}

/* About Section */
.about {
    background: rgba(2, 16, 51, 1);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 60px;
    font-weight: 300;
    opacity: 0.9;
}

.about-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.world-map {
    width: 100%;
    max-width: 900px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.world-image {
    width: 100%;
    height: auto;
    max-width: 900px;
    opacity: 0.8;
}

.honsen-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.badge-circle {
    width: 180px;
    height: 180px;
    border: 3px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 16, 51, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.badge-content {
    text-align: center;
    color: #d4af37;
    font-family: 'Georgia', serif;
}

.badge-text-main {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.badge-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
    gap: 12px;
}

.divider-line {
    width: 20px;
    height: 1px;
    background: #d4af37;
}

.badge-text-since {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: lowercase;
    font-style: italic;
}

.badge-text-year {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* Responsive design for about section */
@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .about-description br {
        display: none;
    }
    
    .about-visual {
        height: 450px;
    }
    
    .world-image {
        max-width: 600px;
    }
    
    .badge-circle {
        width: 140px;
        height: 140px;
    }
    
    .badge-text-main {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .badge-text-year {
        font-size: 22px;
    }
    
    .badge-text-since {
        font-size: 12px;
    }
    
    .divider-line {
        width: 16px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .about-visual {
        height: 350px;
    }
    
    .world-image {
        max-width: 450px;
    }
    
    .badge-circle {
        width: 120px;
        height: 120px;
        border: 2px solid #d4af37;
    }
    
    .badge-text-main {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .badge-text-year {
        font-size: 20px;
    }
    
    .badge-text-since {
        font-size: 10px;
    }
    
    .divider-line {
        width: 14px;
    }
}

/* Membership Benefits Section */
.membership-benefits {
    background: rgba(2, 16, 51, 1);
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* Partner Logos */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.partner-logos-track {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.partner-logo {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 0.8;
}

.partner-logo-duplicate {
    display: none;
}

.partner-image {
    height: 160px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

/* Infinite scroll animation */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Benefits Content */
.benefits-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.benefit-icon {
    color: #d4af37;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    background: rgba(2, 16, 51, 0.8);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
}

/* Responsive design for membership benefits */
@media (max-width: 768px) {
    .membership-benefits {
        padding: 60px 0;
    }
    
    .partner-logos {
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .partner-logos-track {
        gap: 30px;
    }
    
    .partner-image {
        height: 120px;
        max-width: 320px;
    }
    
    .benefits-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .benefits-list {
        gap: 30px;
    }
    
    .benefit-item {
        gap: 15px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .benefit-title {
        font-size: 1.3rem;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .partner-logos {
        gap: 0;
        margin-bottom: 40px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow: hidden;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 0;
    }
    
    .partner-logos-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 40px;
        animation: scrollLogos 20s linear infinite;
        width: calc(200% + 40px);
    }
    
    .partner-logos-track:hover {
        animation-play-state: paused;
    }
    
    .partner-logo {
        flex-shrink: 0;
    }
    
    .partner-logo-duplicate {
        display: flex;
    }
    
    .partner-image {
        height: 100px;
        max-width: 240px;
        flex-shrink: 0;
    }
    
    .benefits-title {
        font-size: 1.8rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
    }
    
    .benefit-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .benefit-title {
        font-size: 1.2rem;
        padding: 8px 14px;
    }
}

/* Membership Process Section */
.membership-process {
    background: rgba(2, 16, 51, 1);
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.process-steps {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #d4af37;
    flex-shrink: 0;
}

.step-text {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.step-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.step-link:hover {
    opacity: 0.8;
}

.highlight {
    color: #d4af37;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.contact-item svg {
    color: #d4af37;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #d4af37;
}

/* Responsive design for membership process and footer */
@media (max-width: 768px) {
    .membership-process {
        padding: 60px 0;
    }
    
    .process-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .process-steps {
        padding: 0 20px;
    }
    
    .process-step {
        gap: 20px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .step-text {
        font-size: 1rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .process-title {
        font-size: 1.8rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-text {
        font-size: 0.9rem;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-item {
        justify-content: center;
    }
}

/* Ensure proper stacking */
.header,
.hero {
    position: relative;
    z-index: 1;
}

/* ================================
   LEGAL PAGES STYLING
   ================================ */

/* Legal Page Body Background */
body:has(.legal-page) {
    background-color: #1a1a1a;
    min-height: 100vh;
}

/* Legal Page Container */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 80px;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

/* Legal Page Typography */
.legal-page h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    border-bottom: 3px solid #007bff;
    padding-bottom: 20px;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 4px solid #007bff;
    padding-left: 20px;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.legal-page h4 {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 500;
}

/* Paragraphs and Text */
.legal-page p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1rem;
    color: #d0d0d0;
}

.legal-page p strong {
    color: #ffffff;
    font-weight: 600;
}

/* Lists */
.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 8px;
    color: #d0d0d0;
    line-height: 1.6;
}

.legal-page ul li::marker {
    color: #007bff;
}

.legal-page ol li::marker {
    color: #007bff;
    font-weight: 600;
}

/* Links */
.legal-page a {
    color: #007bff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-page a:hover {
    color: #0056b3;
    border-bottom-color: #0056b3;
}

/* Contact Information Styling */
.legal-page .contact-info {
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #007bff;
}

.legal-page .contact-info h3 {
    margin-top: 0;
    color: #ffffff;
}

.legal-page .contact-info p {
    margin-bottom: 10px;
    text-align: left;
    color: #d0d0d0;
}

/* Table Styling (if needed) */
.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: #2a2a2a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.legal-page th,
.legal-page td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #444;
    color: #d0d0d0;
}

.legal-page th {
    background-color: #333;
    font-weight: 600;
    color: #ffffff;
}

.legal-page tr:hover {
    background-color: #333;
}

/* Special Sections */
.legal-page .important-notice {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.legal-page .important-notice h3 {
    color: #856404;
    margin-top: 0;
}

.legal-page .important-notice p {
    color: #856404;
}

/* Footer in Legal Pages */
.legal-page + footer {
    margin-top: 0;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 15px 60px;
    }
    
    .legal-page h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .legal-page h2 {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .legal-page h3 {
        font-size: 1.2rem;
    }
    
    .legal-page p {
        text-align: left;
        font-size: 0.95rem;
    }
    
    .legal-page ul,
    .legal-page ol {
        padding-left: 20px;
    }
    
    .legal-page .contact-info {
        padding: 20px;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 90px 10px 50px;
    }
    
    .legal-page h1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .legal-page h2 {
        font-size: 1.3rem;
        padding-left: 15px;
    }
    
    .legal-page h3 {
        font-size: 1.1rem;
    }
    
    .legal-page p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .legal-page .contact-info {
        padding: 15px;
        margin: 15px 0;
    }
}

/* Print Styles for Legal Pages */
@media print {
    .legal-page {
        padding: 0;
        max-width: none;
        margin: 0;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .legal-page h1 {
        font-size: 18pt;
        margin-bottom: 20pt;
    }
    
    .legal-page h2 {
        font-size: 14pt;
        margin-top: 20pt;
        margin-bottom: 10pt;
    }
    
    .legal-page h3 {
        font-size: 12pt;
        margin-top: 15pt;
        margin-bottom: 8pt;
    }
    
    .legal-page p {
        margin-bottom: 10pt;
        text-align: left;
    }
    
    .legal-page a {
        color: #000;
        text-decoration: underline;
    }
    
    .legal-page .contact-info {
        border: 1px solid #000;
        background-color: #f5f5f5;
    }
}

/* Registration Page Styles */
.registration-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    position: relative;
}

.registration-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.registration-card {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.registration-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    background: linear-gradient(135deg, #c7a571 0%, #f4e4c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.registration-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 30px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #c7a571;
    box-shadow: 0 0 0 2px rgba(199, 165, 113, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.checkbox-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    user-select: none;
}

.checkbox-label a {
    color: #c7a571;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: #f4e4c9;
    text-decoration: underline;
}

.submit-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, #c7a571 0%, #f4e4c9 100%);
    border: none;
    border-radius: 8px;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(199, 165, 113, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.registration-footer {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.registration-footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.registration-footer a {
    color: #c7a571;
    text-decoration: none;
    transition: color 0.3s ease;
}

.registration-footer a:hover {
    color: #f4e4c9;
    text-decoration: underline;
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: slideIn 0.3s ease;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.alert-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

.alert p {
    margin: 0;
    font-size: 14px;
}

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

/* Responsive Registration Form */
@media (max-width: 600px) {
    .registration-card {
        padding: 30px 20px;
    }
    
    .registration-title {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .submit-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Updated Benefits Section */
.benefit-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.benefits-tagline {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.benefits-tagline h3 {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 10px;
    font-weight: 400;
}

.benefits-tagline p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f1318 0%, #0a0a0a 100%);
}

.partners-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 300;
}

.partners-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.partner-block {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-name {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 400;
}

.partner-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.airline-logos {
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.airline-logos-track {
    display: flex;
    gap: 60px;
    animation: scroll-airlines 30s linear infinite;
}

.airline-logo {
    flex-shrink: 0;
}

.airline-image {
    height: 50px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.airline-image:hover {
    opacity: 1;
}

@keyframes scroll-airlines {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .partners-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .airline-logos {
        padding: 20px 0;
    }
    
    .airline-image {
        height: 40px;
    }
}
