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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

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

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

p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #374151;
}

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

li {
    margin-bottom: 0.5rem;
    color: #374151;
}

a {
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f97316;
}

strong {
    color: #1e3a8a;
    font-weight: 600;
}

/* Header */
.header {
    background-color: #1e3a8a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.page-title {
    font-size: 2.5rem;
    color: white;
    margin: 0;
}

.breadcrumb {
    margin-top: 1rem;
}

.breadcrumb a {
    color: #e2e8f0;
    text-decoration: underline;
}

.breadcrumb a:hover {
    color: #f97316;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #f97316;
}

.content-section h2 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.content-section h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.content-section p {
    margin-bottom: 1rem;
}

.content-section ul {
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Special content blocks */
.highlight-box {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h4 {
    color: #92400e;
    margin-bottom: 1rem;
}

.highlight-box p {
    color: #92400e;
    margin-bottom: 0;
}

.info-box {
    background-color: #dbeafe;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.info-box h4 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.info-box p {
    color: #1e40af;
    margin-bottom: 0;
}

.contact-info {
    background-color: #f0f9ff;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.contact-info h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
}

.contact-item a {
    color: #1e3a8a;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #1e3a8a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand .logo-brand {
    justify-content: flex-start;
    margin-bottom: 1rem;
}

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

.footer-brand p {
    color: #e2e8f0;
    margin-bottom: 0;
}

.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #f97316;
}

.footer-contact address {
    color: #e2e8f0;
    font-style: normal;
}

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

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #e2e8f0;
    margin: 0 1rem;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: #f97316;
}

/* Cookie Banner for Auxiliary Pages */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 3px solid #f97316;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cookie-banner-text p {
    color: #374151;
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: #f97316;
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #ea580c;
    color: white;
}

.cookie-btn-reject {
    background-color: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
}

.cookie-btn-reject:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.cookie-btn-customize {
    background-color: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.cookie-btn-customize:hover {
    background-color: #1e3a8a;
    color: white;
}

.cookie-policy-link {
    color: #1e3a8a;
    text-decoration: underline;
    font-size: 0.875rem;
}

.cookie-policy-link:hover {
    color: #f97316;
}

/* Cookie Customization Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

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

.cookie-modal-header {
    margin-bottom: 1.5rem;
}

.cookie-modal-header h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.cookie-modal-header p {
    color: #6b7280;
    margin-bottom: 0;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

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

.cookie-category h4 {
    color: #1e3a8a;
    margin: 0;
    font-size: 1rem;
}

.cookie-category p {
    color: #6b7280;
    margin: 0;
    font-size: 0.875rem;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: #f97316;
}

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

.cookie-toggle input:disabled + .cookie-slider {
    background-color: #9ca3af;
    cursor: not-allowed;
}

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

.cookie-btn-save {
    background-color: #f97316;
    color: white;
}

.cookie-btn-save:hover {
    background-color: #ea580c;
    color: white;
}

.cookie-btn-cancel {
    background-color: transparent;
    color: #6b7280;
    border: 2px solid #d1d5db;
}

.cookie-btn-cancel:hover {
    background-color: #f3f4f6;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 1.5rem !important;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .content-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .logo-brand {
        justify-content: center;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
    
    .cookie-modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
    
    .cookie-btn-save,
    .cookie-btn-cancel {
        width: 100%;
        text-align: center;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

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