/* Legal Pages Styles */

/* Main Content Styling */
.legal-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 3rem;
    margin: 3rem 0;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.75rem;
}

.legal-content h3 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.legal-content p, 
.legal-content ul {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.legal-content ul {
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
    color: var(--accent-hover);
}

.legal-title {
    text-align: center;
    margin-bottom: 2rem;
}

.legal-updated {
    font-style: italic;
    color: #666;
    margin-top: 3rem;
    text-align: center;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.7;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.back-to-top:hover {
    opacity: 1;
    color: white;
}
