/* Legal Pages Styling */
body.legal-page {
    background-color: var(--black);
}

.legal-content {
    padding-top: 200px !important;
    padding-bottom: 80px !important;
    max-width: 900px !important;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.legal-header p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.legal-body {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--primary-blue);
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.8rem;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.8rem;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

.legal-section ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

.legal-section strong {
    color: var(--white);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-content {
        padding-top: 160px !important;
    }

    .legal-header h1 {
        font-size: 2.2rem;
    }

    .legal-body {
        padding: 25px;
    }
}