/* Auxiliary Pages Styles */

.main-content {
    min-height: calc(100vh - 200px);
}

.nav {
    margin-left: auto;
}

.nav-link {
    color: #4A5568;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.nav-link:hover {
    background-color: #EDF2F7;
    text-decoration: none;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
    color: #F7FAFC;
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    color: #F7FAFC;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section.alt {
    background: #F7FAFC;
}

.content-block h2 {
    color: #2D3748;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.content-block h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #E53E3E;
    margin: 1rem auto;
    border-radius: 2px;
}

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

.content-text {
    font-size: 1.125rem;
    line-height: 1.8;
}

.content-image-placeholder {
    background: rgba(229, 62, 62, 0.05);
    border: 2px dashed #E53E3E;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Philosophy Grid (About Page) */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    border-left: 4px solid #E53E3E;
}

.philosophy-item h3 {
    color: #2D3748;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.philosophy-item p {
    color: #4A5568;
    margin: 0;
}

/* Legal Content (Privacy, Terms, Cookie pages) */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.placeholder-content {
    text-align: center;
    padding: 4rem 2rem;
}

.placeholder-content .placeholder-text {
    font-size: 1.25rem;
    color: #4A5568;
    margin-bottom: 3rem;
}

.placeholder-note {
    background: #F7FAFC;
    border: 2px dashed #E53E3E;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
}

.placeholder-note h3 {
    color: #2D3748;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.placeholder-note ul {
    color: #4A5568;
    padding-left: 1.5rem;
}

.placeholder-note li {
    margin-bottom: 0.5rem;
}

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

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E2E8F0;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    color: #2D3748;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #E53E3E;
}

.policy-section h3 {
    color: #4A5568;
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem 0;
}

.policy-section p {
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    color: #4A5568;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: #F7FAFC;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #E53E3E;
    margin-top: 1rem;
}

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

.contact-info strong {
    color: #2D3748;
}

/* About Page Content Images */
.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F7FAFC;
    border-radius: 8px;
    padding: 1rem;
    min-height: 300px;
}

.content-image svg {
    max-width: 100%;
    height: auto;
}

/* Footer Styles */
.footer {
    background: #2D3748;
    color: #F7FAFC;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    flex: 1;
}

.footer-links {
    flex: 1;
}

.footer .brand-name {
    color: #F7FAFC;
}

.footer .brand-subtitle {
    color: #A0AEC0;
}

.footer-nav {
    display: flex;
    gap: 3rem;
    justify-content: flex-end;
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-title {
    color: #F7FAFC;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav a {
    color: #E2E8F0;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #F7FAFC;
    text-decoration: none;
}

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

.footer-bottom p {
    color: #A0AEC0;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .content-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .placeholder-content {
        padding: 2rem 1rem;
    }
    
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .brand {
        flex-direction: row;
        gap: 1rem;
    }
    
    .brand-text {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .philosophy-item,
    .placeholder-note {
        padding: 1.5rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-nav {
        justify-content: center;
        gap: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.25rem;
    }
    
    .policy-section h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        flex-direction: column;
        gap: 1.5rem;
    }
}