/* Pages CSS - Auxiliary pages styling */

/* Import main styles variables */
:root {
    --primary-navy: #1e2a5e;
    --secondary-silver: #c0c4cc;
    --background-white: #ffffff;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --accent-red: #ff4444;
    --accent-green: #48bb78;
    --accent-orange: #ed8936;
    --snow-white: #f7fafc;
    --border-light: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Ensure proper base styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-white);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styling for auxiliary pages */
.header {
    background: var(--background-white);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-brand a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
}

.logo-brand a:hover {
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--snow-white) 0%, var(--background-white) 100%);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
}

.content-section.alternate {
    background: var(--snow-white);
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block.centered {
    text-align: center;
}

.content-block h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    text-align: left;
}

.content-block.centered h2 {
    text-align: center;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Policy sections */
.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    text-align: left;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

/* About page specific styles */
.about-illustration {
    max-width: 400px;
    margin: 0 auto 2rem;
}

.about-illustration svg {
    width: 100%;
    height: auto;
}

/* Footer styling */
.footer {
    background: var(--primary-navy);
    color: white;
    padding: 2.5rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo-icon {
    width: 32px;
    height: 32px;
}

.footer-brand .brand-name {
    color: white;
    font-size: 1.25rem;
}

.footer-brand p {
    color: var(--secondary-silver);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--secondary-silver);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(192, 196, 204, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--secondary-silver);
    font-size: 0.875rem;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .content-block h2 {
        font-size: 1.75rem;
    }
    
    .content-block p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .content-block {
        padding: 0 1rem;
    }
}