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

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;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    padding: 60px 0;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

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

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

.tagline {
    font-size: 1.2rem;
    color: #6B7280;
    font-weight: 500;
    margin-bottom: 1rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #4B5563;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.nav-link {
    display: inline-block;
    margin-top: 1rem;
    color: #3B82F6;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #3B82F6;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background-color: #3B82F6;
    color: white;
}

/* Main Content */
.main-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 4rem;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2E5BBA;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #E5E7EB;
    padding-bottom: 0.5rem;
}

.section-content {
    font-size: 1.1rem;
    color: #4B5563;
    margin-bottom: 1.5rem;
}

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

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

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

.highlight-box {
    background: #F0F9FF;
    border: 1px solid #3B82F6;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: #2E5BBA;
    margin-bottom: 1rem;
}

.contact-info {
    background: #FAFAFA;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #3B82F6;
    text-decoration: none;
}

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

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

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

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

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

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

.footer-brand p {
    color: #9CA3AF;
    margin: 0;
}

.footer-section h4 {
    color: #F9FAFB;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-info p {
    margin-bottom: 0.5rem;
    color: #9CA3AF;
}

.footer-info a {
    color: #3B82F6;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

/* Image Styles for Auxiliary Pages */
.content-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
    object-fit: cover;
}

.content-image.large {
    min-height: 300px;
    max-height: 400px;
}

.content-image.profile {
    min-height: 250px;
    max-height: 300px;
    width: 100%;
}

.content-image.hero-image {
    min-height: 200px;
    max-height: 250px;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 1rem 0;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1F2937;
    color: #F9FAFB;
    padding: 1.5rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    border-top: 1px solid #374151;
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #D1D5DB;
    line-height: 1.5;
}

.cookie-text a {
    color: #3B82F6;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #60A5FA;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

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

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

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

.cookie-btn-reject {
    background-color: #6B7280;
    color: white;
}

.cookie-btn-reject:hover {
    background-color: #4B5563;
}

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

.cookie-btn-customize:hover {
    background-color: #3B82F6;
    color: white;
}

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

.cookie-modal.hidden {
    display: none;
}

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

.cookie-modal h3 {
    color: #1F2937;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.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 {
    margin: 0;
    color: #374151;
    font-size: 1.1rem;
}

.cookie-category p {
    margin: 0;
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

.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.2s;
    border-radius: 24px;
}

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

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

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

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

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.cookie-modal-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-modal-btn-save {
    background-color: #10B981;
    color: white;
}

.cookie-modal-btn-save:hover {
    background-color: #059669;
}

.cookie-modal-btn-cancel {
    background-color: #6B7280;
    color: white;
}

.cookie-modal-btn-cancel:hover {
    background-color: #4B5563;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 40px 0;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .brand-name {
        font-size: 2rem !important;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
    
    .footer-brand .logo-container {
        justify-content: center;
    }
}