/* Legal Pages Styling */
.legal-page-wrapper {
    min-height: 100vh;
    background-color: #f9f9f9;
}

.page-hero {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><path fill="rgba(255,255,255,0.05)" d="M0,150 Q300,50 600,150 T1200,150 L1200,300 L0,300 Z"/></svg>');
    background-size: cover;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 20px;
    margin: 0;
    opacity: 0.9;
}

.legal-content {
    padding: 60px 0;
}

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

.effective-date {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.legal-content h2 {
    color: #1a252f;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.legal-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #0073aa;
}

.legal-content h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.legal-content ul {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info strong {
    color: #1a252f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .content-wrapper {
        padding: 30px 20px;
    }
    
    .legal-content h2 {
        font-size: 24px;
    }
    
    .legal-content h3 {
        font-size: 20px;
    }
}
