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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: #ffffff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text p {
    margin: 0;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: var(--teal);
    color: #ffffff;
}

.cookie-accept:hover {
    background: #0f9488;
}

.cookie-reject {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid #475569;
}

.cookie-reject:hover {
    background: #475569;
    color: #ffffff;
}

.cookie-customize {
    background: var(--amber);
    color: var(--navy);
}

.cookie-customize:hover {
    background: #d97706;
}

.cookie-link {
    color: var(--teal);
    text-decoration: none;
    font-size: 0.85rem;
    white-space: nowrap;
}

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

/* Cookie Customization Panel */
.cookie-customization {
    display: none;
    background: var(--white);
    color: var(--navy);
    border-top: 1px solid #e2e8f0;
    padding: 1.5rem 0;
}

.cookie-customization.show {
    display: block;
}

.cookie-custom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-custom-content h3 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: var(--navy);
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-category {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.cookie-label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-label input[type="checkbox"] {
    margin-right: 0.5rem;
}

.cookie-category-name {
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
}

.cookie-category-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin-left: 1.5rem;
}

.cookie-custom-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Colors */
:root {
    --navy: #1e293b;
    --teal: #14b8a6;
    --amber: #f59e0b;
    --light-gray: #f8fafc;
    --medium-gray: #e2e8f0;
    --white: #ffffff;
}

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

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--navy);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--navy);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #475569;
}

/* Header */
.header {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--medium-gray);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-section a {
    text-decoration: none;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}

.brand-name:hover {
    color: var(--teal);
}

/* Main Content */
.main-content {
    min-height: 80vh;
    background: var(--light-gray);
    padding: 4rem 0;
}

/* Page Hero */
.page-hero {
    text-align: center;
    margin-bottom: 4rem;
    background: var(--white);
    padding: 4rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin: 0;
}

/* Content Sections */
.content-section {
    background: var(--white);
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text p {
    color: #475569;
}

/* Placeholder Images */
.placeholder-image {
    background: var(--medium-gray);
    border-radius: 8px;
    padding: 3rem 1rem;
    text-align: center;
    color: #64748b;
    font-weight: 500;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Overview */
.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-item h3 {
    margin-bottom: 1rem;
}

.service-item p {
    margin: 0;
    color: #64748b;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    text-align: left;
}

.legal-content h2 {
    color: var(--navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #475569;
}

.placeholder-text {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    color: #64748b;
    font-style: italic;
    border: 2px dashed var(--medium-gray);
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

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

.footer-brand .logo-section .brand-name {
    color: var(--white);
}

.footer-brand p {
    color: #94a3b8;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: contents;
}

.link-group h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.link-group a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    transition: color 0.2s ease;
}

.link-group a:hover {
    color: var(--teal);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-categories {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .page-hero {
        padding: 3rem 1.5rem;
    }
    
    .content-section {
        padding: 2rem 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-overview {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .page-hero {
        padding: 2rem 1rem;
    }
    
    .content-section {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .legal-content {
        padding: 1rem 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}