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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 16px;
    line-height: 1.6;
}

ul, ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
}

/* Colors */
:root {
    --primary: #2563EB;
    --primary-dark: #1d4ed8;
    --secondary: #64748b;
    --accent: #DC2626;
    --success: #16A34A;
    --warning: #D97706;
    --error: #DC2626;
    --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: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.call-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    background-color: var(--accent);
    color: white;
    font-size: 14px;
}

.call-button:hover {
    background-color: #b91c1c;
}

.icon {
    width: 20px;
    height: 20px;
}

/* Main Content */
.main-content {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    margin-bottom: 64px;
}

.page-title {
    color: var(--neutral-800);
    margin-bottom: 16px;
}

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

.content-section {
    margin-bottom: 48px;
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.section-title {
    color: var(--neutral-800);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.section-content p {
    color: var(--neutral-700);
    margin-bottom: 16px;
}

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

.section-content li {
    margin-bottom: 8px;
}

.highlight-box {
    background-color: var(--neutral-50);
    border-left: 4px solid var(--primary);
    padding: 24px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--neutral-700);
}

.contact-info {
    background-color: var(--primary);
    color: white;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.contact-info h3 {
    color: white;
    margin-bottom: 16px;
}

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

.contact-info a {
    color: white;
    text-decoration: underline;
}

.contact-info a:hover {
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: var(--neutral-800);
    color: var(--neutral-300);
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

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

.footer-description {
    color: var(--neutral-400);
    margin-top: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-list {
    list-style: none;
    padding-left: 0;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a {
    color: var(--neutral-400);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--neutral-700);
}

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

.footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-phone:hover {
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--primary);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

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

.cookie-banner-text {
    flex: 1;
    color: var(--neutral-700);
    font-size: 14px;
    line-height: 1.4;
}

.cookie-banner-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.cookie-btn.accept:hover {
    background-color: var(--primary-dark);
}

.cookie-btn.reject {
    background-color: var(--neutral-200);
    color: var(--neutral-700);
}

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

.cookie-btn.customize {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

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

/* Cookie Preferences Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    padding: 32px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    margin-bottom: 24px;
}

.cookie-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 8px;
}

.cookie-modal-description {
    color: var(--neutral-600);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-category {
    margin-bottom: 24px;
    padding: 20px;
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
}

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

.cookie-category-title {
    font-weight: 600;
    color: var(--neutral-800);
    margin: 0;
}

.cookie-toggle {
    position: relative;
    width: 48px;
    height: 24px;
    background: var(--neutral-300);
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-toggle.active {
    background: var(--primary);
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.2s;
}

.cookie-toggle.active::after {
    transform: translateX(24px);
}

.cookie-category-description {
    color: var(--neutral-600);
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.cookie-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--neutral-200);
}

.cookie-modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

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

.cookie-modal-btn.primary:hover {
    background-color: var(--primary-dark);
}

.cookie-modal-btn.secondary {
    background-color: var(--neutral-200);
    color: var(--neutral-700);
}

.cookie-modal-btn.secondary:hover {
    background-color: var(--neutral-300);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .content-section img {
        height: 180px !important;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }
    
    .content-section img {
        height: 150px !important;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .cookie-banner-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-modal-content {
        padding: 24px;
        margin: 10px;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
}