/* Legal Pages Styling */
.legal-page {
    min-height: 100vh;
    background: #f8f9fa;
    padding: 20px;
}

.legal-header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.back-link {
    display: inline-block;
    color: #e67e22;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: opacity 0.2s ease;
}

.back-link:hover {
    opacity: 0.7;
}

.legal-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.last-updated {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 20px 0 10px;
}

.legal-content p {
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.legal-content strong {
    color: #2c3e50;
}

.legal-content a {
    color: #e67e22;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.legal-content a:hover {
    border-bottom-color: #e67e22;
}

.legal-page .legal-footer {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
    padding: 30px 20px;
    background: transparent;
    border-top: none;
}

@media (max-width: 640px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 25px;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
}