/* Auxiliary Pages Styles */
/* 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: #2D3748;
    background-color: #FEFEFE;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Color Palette */
:root {
    --soft-indigo: #6B73FF;
    --hinoki-beige: #D4AF8C;
    --rice-white: #F7FAFC;
    --charcoal-ink: #2D3748;
    --light-gray: #E2E8F0;
    --medium-gray: #A0AEC0;
}

/* Header */
.header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--light-gray);
    padding: 1rem 0;
}

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

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal-ink);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--soft-indigo);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 3rem 0;
}

.hero-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--rice-white) 0%, #FFFFFF 100%);
    border-radius: 12px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin: 1rem 0 0 0;
}

.content-block {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.content-block h2 {
    color: var(--charcoal-ink);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 0.5rem;
}

.content-block p {
    font-size: 1.1rem;
    color: var(--charcoal-ink);
    margin-bottom: 1.5rem;
}

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

/* Image Styles */
.content-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* About Page Specific Styles */
.center-aligned {
    text-align: center;
}

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

.content-text {
    text-align: left;
}

.design-process-visual,
.services-visual {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.process-illustration,
.services-illustration {
    max-width: 100%;
    height: auto;
}

/* Legal Content Specific Styles */
.legal-content {
    min-height: auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--charcoal-ink);
    margin: 2rem 0 1rem 0;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 0.5rem;
}

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

.legal-notice {
    background: var(--rice-white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.legal-notice p {
    color: var(--medium-gray);
    font-style: italic;
    margin: 0;
}

.legal-notice p strong {
    color: var(--charcoal-ink);
}

/* Footer */
.footer {
    background: var(--charcoal-ink);
    color: var(--rice-white);
    padding: 3rem 0 1rem 0;
}

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

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

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

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #FFFFFF;
}

.footer-section p {
    color: var(--medium-gray);
    margin: 0;
}

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

.footer-bottom p {
    color: var(--medium-gray);
    margin: 0;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal-ink);
    color: var(--rice-white);
    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;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text p {
    margin: 0;
    color: var(--rice-white);
}

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

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.9rem;
}

.cookie-btn.accept {
    background: var(--soft-indigo);
    color: #FFFFFF;
}

.cookie-btn.accept:hover {
    background: #5A67D8;
}

.cookie-btn.reject {
    background: #E53E3E;
    color: #FFFFFF;
}

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

.cookie-btn.customize {
    background: transparent;
    color: var(--rice-white);
    border: 1px solid var(--medium-gray);
}

.cookie-btn.customize:hover {
    background: var(--medium-gray);
    color: var(--charcoal-ink);
}

.cookie-btn.decline {
    background: var(--medium-gray);
    color: var(--charcoal-ink);
}

.cookie-btn.decline:hover {
    background: #718096;
}

.cookie-link {
    color: var(--medium-gray);
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-link:hover {
    color: var(--rice-white);
}

/* Cookie Customization */
.cookie-customization {
    border-top: 1px solid #4A5568;
    padding-top: 1rem;
    margin-top: 1rem;
}

.cookie-customization h3 {
    color: var(--rice-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cookie-category {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--rice-white);
    font-weight: 500;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin: 0;
}

.cookie-category p {
    margin: 0.25rem 0 0 1.5rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.cookie-custom-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-illustration,
    .services-illustration {
        width: 100%;
        max-width: 350px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-custom-actions {
        justify-content: center;
    }
}