/* ===========================
   Pages Styles (for legal pages)
   =========================== */

/* Page Hero */
.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Page Content */
.page-content {
    padding: 80px 20px;
    background: var(--bg-light);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.content-text {
    background: var(--text-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.content-text h2 {
    font-size: 1.875rem;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-color);
}

.content-text h2:first-child {
    margin-top: 0;
}

.content-text h3 {
    font-size: 1.375rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1rem;
}

.content-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-text ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-light);
    list-style: disc;
}

.content-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

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

/* Contact Box */
.contact-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.contact-box p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

/* Legal Notice */
.legal-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2.5rem 0;
}

.legal-notice p {
    margin-bottom: 0;
    color: #856404;
}

/* Acceptance Notice */
.acceptance-notice {
    background: #d1ecf1;
    border: 1px solid #0c5460;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    text-align: center;
}

.acceptance-notice p {
    margin-bottom: 0;
    color: #0c5460;
    font-weight: 600;
    font-size: 1.0625rem;
}

/* Sidebar */
.content-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.sidebar-card {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.sidebar-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.75rem;
}

.sidebar-nav a {
    color: var(--text-light);
    display: block;
    padding: 0.5rem 0;
    transition: var(--transition);
    font-size: 0.9375rem;
}

.sidebar-nav a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 1rem;
}

.sidebar-links a {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-links a:hover {
    color: var(--accent-hover);
    gap: 0.75rem;
}

.sidebar-links a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
}

.sidebar-cta h3 {
    color: var(--text-white);
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.sidebar-cta .btn-primary {
    background: var(--text-white);
    color: var(--accent-color);
}

.sidebar-cta .btn-primary:hover {
    background: var(--bg-light);
}

/* Responsive */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-sidebar {
        position: static;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 20px 60px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-text {
        padding: 2rem 1.5rem;
    }
    
    .content-text h2 {
        font-size: 1.5rem;
    }
    
    .content-text h3 {
        font-size: 1.25rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }
    
    .content-text {
        padding: 1.5rem 1rem;
    }
    
    .contact-box {
        padding: 1.5rem;
    }
}