/* Page-specific styles for auxiliary pages */

.page-header {
    background-color: white;
    border-bottom: 1px solid #E2E8F0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.page-header .logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-header .brand-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #4A5568;
    text-decoration: none;
}

.page-header .brand-name:hover {
    color: #E53E3E;
}

.page-main {
    min-height: 60vh;
    padding: 60px 0;
    background-color: #F7FAFC;
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-title h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1A202C;
}

.page-title p {
    font-size: 1.1rem;
    color: #718096;
}

.content-block {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #4A5568;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 20px;
}

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

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 20px;
}

.content-with-svg {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    margin-top: 20px;
}

.content-svg {
    flex-shrink: 0;
}

.content-image svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.value-item {
    background: #F7FAFC;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #E53E3E;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #4A5568;
}

.value-item p {
    font-size: 1rem;
    color: #718096;
    margin: 0;
}

.empty-content {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
    font-style: italic;
}

.empty-content p {
    font-size: 1.2rem;
    margin: 0;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-title h1 {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 30px 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-with-image,
    .content-with-svg {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-svg {
        text-align: center;
    }
    
    .page-header .brand-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-main {
        padding: 40px 0;
    }
    
    .page-title {
        margin-bottom: 30px;
    }
    
    .page-title h1 {
        font-size: 1.8rem;
    }
    
    .content-block {
        margin-left: 10px;
        margin-right: 10px;
        padding: 25px 15px;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .content-with-image,
    .content-with-svg {
        gap: 20px;
    }
    
    .content-image img {
        height: 200px;
    }
}