/* Legal Pages Styling */
body {
    font-family: 'Roboto', sans-serif;
}

.legal-content {
    padding: 120px 0 80px;
    min-height: calc(100vh - 200px);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.legal-section {
    margin-bottom: 48px;
    padding: 32px;
    background-color: var(--light-color);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 24px;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section h2 .material-symbols {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 24px 0 16px;
}

.legal-section h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 20px 0 12px;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 1rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }

    .legal-content h1 {
        font-size: 2rem;
        margin-bottom: 32px;
    }

    .legal-section {
        padding: 24px;
        margin-bottom: 32px;
    }

    .legal-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .legal-section h3 {
        font-size: 1.25rem;
        margin: 20px 0 12px;
    }

    .legal-section h4 {
        font-size: 1.1rem;
        margin: 16px 0 10px;
    }

    .legal-section p {
        font-size: 0.95rem;
    }
} 