/* Legal Pages Specific Styles */

.legal-content {
    padding: 80px 0;
    background-color: #0a0e1a;
    min-height: 100vh;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1a1f2e;
    border-radius: 15px;
    padding: 40px;
    border: 1px solid #2a3441;
}

.legal-wrapper h1 {
    font-size: 36px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #adb5bd;
    font-size: 14px;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #2a3441;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffd700;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 8px;
}

.legal-section strong {
    color: #ffd700;
    font-weight: 600;
}

.legal-section a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-content {
        padding: 60px 0;
    }

    .legal-wrapper {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .legal-wrapper h1 {
        font-size: 28px;
    }

    .legal-section h2 {
        font-size: 20px;
    }

    .legal-section h3 {
        font-size: 18px;
    }

    .legal-section p,
    .legal-section li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 40px 0;
    }

    .legal-wrapper {
        padding: 20px 15px;
        margin: 0 15px;
    }

    .legal-wrapper h1 {
        font-size: 24px;
    }

    .legal-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .legal-section h2 {
        font-size: 18px;
    }

    .legal-section h3 {
        font-size: 16px;
    }
}
