/* Additional styles for auxiliary pages */

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: white;
    padding: 1rem 0;
    z-index: 10000;
    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-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.cookie-banner-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

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

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

.cookie-btn-accept:hover {
    background: #3730a3;
}

.cookie-btn-decline {
    background: transparent;
    color: #d1d5db;
    border: 1px solid #4b5563;
}

.cookie-btn-decline:hover {
    background: #374151;
    border-color: #6b7280;
}

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

.cookie-btn-reject:hover {
    background: #dc2626;
}

.cookie-btn-customize {
    background: #4f46e5;
    color: white;
}

.cookie-btn-customize:hover {
    background: #3730a3;
}

/* Cookie Customization Panel */
.cookie-customization {
    background: #374151;
    border-top: 1px solid #4b5563;
    padding: 2rem 0;
}

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

.cookie-custom-content h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.cookie-categories {
    margin-bottom: 2rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #4b5563;
    border-radius: 8px;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.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: #6b7280;
    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: #10b981;
}

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

.cookie-toggle input:disabled + .cookie-slider {
    background-color: #10b981;
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-category-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.cookie-category-info p {
    margin: 0;
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.4;
}

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

/* Page Styles */
.page-main {
    padding: 4rem 0;
    min-height: calc(100vh - 200px);
}

.page-main h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1f2937;
}

.page-section {
    margin-bottom: 3rem;
}

.page-section h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: left;
}

.page-section.centered-content {
    text-align: center;
}

.page-section.centered-content h2 {
    text-align: center;
}

.page-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

.content-image {
    margin: 2rem 0;
}

.content-image .image-placeholder {
    height: 300px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: 500;
    margin: 0 auto;
    max-width: 600px;
}

.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-image .content-main-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.vision-illustration,
.tech-illustration {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.vision-illustration svg,
.tech-illustration svg {
    max-width: 100%;
    height: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.value-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.value-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.value-item p {
    color: #6b7280;
    font-size: 1rem;
}

/* Policy Content Styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: left;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.policy-section strong {
    font-weight: 600;
    color: #1f2937;
}

.policy-footer {
    text-align: center;
    padding: 2rem;
    background: #e5e7eb;
    border-radius: 8px;
    margin-top: 2rem;
}

.policy-footer p {
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
    margin: 0;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-main {
        padding: 3rem 0;
    }
    
    .page-main h1 {
        font-size: 2rem;
    }
    
    .page-section h2 {
        font-size: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .page-main h1 {
        font-size: 1.75rem;
    }
    
    .page-section h2 {
        font-size: 1.25rem;
    }
    
    .policy-content {
        padding: 1.5rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-text {
        min-width: auto;
    }
    
    .content-image .image-placeholder {
        height: 200px;
    }
    
    .vision-illustration svg,
    .tech-illustration svg {
        width: 100%;
        max-width: 300px;
    }
}