/* Additional styles for auxiliary pages */

.page-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #F0F4F8 100%);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 0;
}

.content-section.alt-bg {
    background: var(--bg-light);
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-block p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.legal-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
}

.legal-placeholder p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.legal-placeholder ul {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
    list-style-position: inside;
}

.legal-placeholder li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* About page specific styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-content.reverse .about-visual {
    order: -1;
}

.about-text.full-width {
    grid-column: 1 / -1;
}

.about-visual svg {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-item svg {
    margin-bottom: 1rem;
}

.value-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Header link style for auxiliary pages */
.header .brand-name {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

.header .brand-name:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 3rem 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .legal-placeholder {
        padding: 2rem;
    }
    
    .about-content,
    .about-content.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content.reverse .about-visual {
        order: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}