/* Legal Pages Styling */

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 50px;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: 10px;
}

.rhombus {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    transform: rotate(45deg);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(30, 102, 245, 0.4);
}

.app-name {
    color: var(--primary);
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 28px;
    font-weight: 700;
}

.subtitle {
    color: var(--text);
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 15px;
    text-align: center;
}

.date {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--primary);
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
    border-bottom: 2px solid var(--border);
    padding-bottom: 10px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 15px;
}

.legal-content ul {
    margin-top: 10px;
    margin-bottom: 15px;
    padding-left: 30px;
}

.legal-content li {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 15px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-container {
        padding: 40px 20px;
    }

    .legal-header {
        margin-bottom: 30px;
    }

    .app-name {
        font-size: 24px;
    }

    .subtitle {
        font-size: 18px;
    }

    .legal-content h2 {
        margin-top: 25px;
        font-size: 18px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 14px;
    }
}