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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4e8cff;
}



/* Main Content */
.main-content {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    min-height: calc(100vh - 200px);
}

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

.content-wrapper h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #4e8cff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-wrapper p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-description {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

.features-section {
    margin: 3rem 0;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features-section h3 {
    color: #4e8cff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    font-size: 1.1rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list strong {
    color: #4e8cff;
}

.info-sections {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.info-section h3 {
    color: #4e8cff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-section p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 0;
}

.buttons-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(45deg, #4e8cff, #3a6edc);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 140, 255, 0.3);
}


.btn i {
    font-size: 1.2rem;
}

/* Privacy and Terms Content Styles */
.privacy-header, .terms-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-header h1, .terms-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #4e8cff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-intro, .terms-intro {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-body, .terms-body {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section, .terms-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.privacy-section h2, .terms-section h2 {
    color: #4e8cff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(78, 140, 255, 0.3);
    padding-bottom: 0.5rem;
}

.privacy-section h3, .terms-section h3 {
    color: #8b5cf6;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
}

.privacy-section p, .terms-section p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul, .terms-section ul {
    color: #e0e0e0;
    line-height: 1.7;
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section li, .terms-section li {
    margin-bottom: 0.5rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(78, 140, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(78, 140, 255, 0.2);
}

.contact-info i {
    color: #4e8cff;
    font-size: 1.2rem;
}

.contact-info span {
    color: #e0e0e0;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #050505;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section {
    color: #888888;
}

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

.footer-link {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4e8cff;
}

.footer-bottom {
    text-align: center;
    color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper h1 {
        font-size: 2.5rem;
    }

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

    .hero-description {
        font-size: 1.2rem;
    }

    .features-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .info-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .info-section {
        padding: 1.5rem;
    }

    .buttons-container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }



    .privacy-header h1, .terms-header h1 {
        font-size: 2rem;
    }

    .privacy-section, .terms-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content-wrapper h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }



    .privacy-header h1, .terms-header h1 {
        font-size: 1.8rem;
    }

    .privacy-section, .terms-section {
        padding: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        justify-content: center;
    }
} 