/* Privacy Policy Specific Styles */
.main-content {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 40px;
    font-style: italic;
}

.section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: rgba(10, 10, 10, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    color: var(--accent-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.contact-info {
    background-color: rgba(0, 170, 255, 0.1);
    border: 1px solid rgba(0, 170, 255, 0.3);
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
}

.contact-info h3 {
    color: var(--accent-color);
    margin-top: 0;
}

/* Navigation for Legal Pages */
.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.back-link {
    color: var(--secondary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--accent-color);
}

/* Footer for Legal Pages */
.footer-content {
    text-align: center;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Typography for Legal Pages */
h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-weight: 400;
}

ul, ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

li {
    margin-bottom: 10px;
    color: var(--text-gray);
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .main-content {
        padding: 100px 0 60px;
    }

    .section {
        padding: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Print Styles */
@media print {
    .navbar, .footer {
        display: none;
    }

    .main-content {
        padding: 0;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        background: white;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}