/* Auxiliary Pages Styles */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #334155;
}

h3 {
    font-size: 1.5rem;
    color: #475569;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 3rem 0;
}

/* Color System */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #64748b;
    --accent: #f59e0b;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
}

/* Header */
.header {
    background-color: white;
    border-bottom: 1px solid var(--neutral-200);
    padding: 1.5rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 2.5rem;
    width: 2.5rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-800);
}

.header-nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.header-nav a:hover {
    text-decoration: underline;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(59, 130, 246, 0.05) 100%);
    pointer-events: none;
}

.page-header-image {
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.header-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
    margin-bottom: 1rem;
}

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

/* Content Sections */
.content-section {
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 3rem 0;
    position: relative;
}

.content-section:nth-child(even) {
    background: linear-gradient(135deg, var(--neutral-50) 0%, rgba(248, 250, 252, 0.9) 100%);
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.005) 100%);
    pointer-events: none;
}

.content-block {
    margin-bottom: 3rem;
}

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

.content-block h2 {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.content-block h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-block p {
    color: var(--neutral-700);
    margin-bottom: 1rem;
}

.content-block ul li {
    color: var(--neutral-700);
}

/* Special Content Blocks */
.highlight-box {
    background-color: var(--primary);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.highlight-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.9);
}

.info-box {
    background-color: var(--neutral-100);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.info-box p {
    margin-bottom: 0;
    color: var(--neutral-700);
}

/* Contact Info */
.contact-info {
    background-color: var(--neutral-50);
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(59, 130, 246, 0.05);
    transform: translateX(5px);
}

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

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--neutral-800);
    color: white;
    padding: 3rem 0 1.5rem 0;
}

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

.footer-brand .brand-name {
    color: white;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--neutral-300);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Content Images */
.content-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
}

.team-image {
    margin-top: 1.5rem;
}

.commitment-visual {
    margin-top: 2rem;
    text-align: center;
}

.commitment-visual .content-image {
    max-width: 500px;
    margin: 0 auto;

.footer-contact a {
    color: var(--neutral-300);
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-700);
}

.footer-bottom p {
    color: var(--neutral-400);
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--neutral-800) 0%, var(--neutral-900) 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-top: 1px solid var(--neutral-700);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    color: var(--neutral-200);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-checkbox {
    display: none;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    display: inline-block;
    white-space: nowrap;
}

.cookie-btn.btn-primary {
    background-color: var(--primary);
    color: white;
}

.cookie-btn.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.cookie-btn.btn-outline {
    background-color: transparent;
    color: white;
    border-color: var(--neutral-400);
}

.cookie-btn.btn-outline:hover {
    background-color: var(--neutral-700);
    border-color: var(--neutral-300);
}

.cookie-policy-link {
    color: var(--neutral-300);
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-policy-link:hover {
    color: white;
}

/* Cookie Customize Modal */
.cookie-customize-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 2rem;
}

.cookie-modal-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal-content h3 {
    color: var(--neutral-800);
    margin-bottom: 1.5rem;
    text-align: center;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--neutral-200);
    border-radius: 0.5rem;
    background: var(--neutral-50);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cookie-category-header h4 {
    color: var(--neutral-800);
    margin: 0;
}

.cookie-required {
    color: var(--neutral-500);
    font-size: 0.9rem;
    font-style: italic;
}

.cookie-category p {
    color: var(--neutral-600);
    margin: 0;
    font-size: 0.9rem;
}

.cookie-toggle {
    display: none;
}

.cookie-toggle-label {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    background: var(--neutral-300);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle-label:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle:checked + .cookie-toggle-label {
    background: var(--primary);
}

.cookie-toggle:checked + .cookie-toggle-label:before {
    transform: translateX(26px);
}

.cookie-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Show customize modal when customize is checked */
#cookie-customize:checked ~ .cookie-customize-modal,
#cookie-customize-about:checked ~ .cookie-customize-modal,
#cookie-customize-privacy:checked ~ .cookie-customize-modal,
#cookie-customize-terms:checked ~ .cookie-customize-modal,
#cookie-customize-cookies:checked ~ .cookie-customize-modal {
    display: flex;
}

/* Hide banner when any choice is made */
#cookie-accept-all:checked ~ .cookie-content,
#cookie-reject:checked ~ .cookie-content,
#save-preferences-about:checked ~ #cookie-banner,
#save-preferences-privacy:checked ~ #cookie-banner,
#save-preferences-terms:checked ~ #cookie-banner,
#save-preferences-cookies:checked ~ #cookie-banner,
#save-preferences-about:checked ~ .cookie-content,
#save-preferences-privacy:checked ~ .cookie-content,
#save-preferences-terms:checked ~ .cookie-content,
#save-preferences-cookies:checked ~ .cookie-content {
    display: none;
}

/* Close customize modal */
#close-customize:checked ~ .cookie-modal-content,
#close-customize-about:checked ~ .cookie-modal-content,
#close-customize-privacy:checked ~ .cookie-modal-content,
#close-customize-terms:checked ~ .cookie-modal-content,
#close-customize-cookies:checked ~ .cookie-modal-content {
    display: none;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .cookie-modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container, .page-container {
        padding: 0 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
}

/* Cookie banner removed - no JavaScript functionality needed */

@media (max-width: 480px) {
    .page-container {
        padding: 0 1rem;
    }
    
    .highlight-box,
    .info-box,
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}