/* Auxiliary Pages Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1F2937;
    text-align: center;
}

h2 {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1F2937;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4B5563;
}

/* Header */
.header {
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-section a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 4rem 0;
    background-color: #F9FAFB;
}

.content-block {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    text-align: center;
}

/* Content with image layout */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.content-with-svg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.image-placeholder img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

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

/* Values Grid (for About page) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background-color: #F3F4F6;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #4F46E5;
}

.value-card h3 {
    color: #4F46E5;
    margin-bottom: 1rem;
}

/* Empty Content Placeholder */
.empty-content {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #F9FAFB;
    border-radius: 8px;
    border: 2px dashed #D1D5DB;
}

.placeholder-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 1rem;
}

.placeholder-description {
    color: #9CA3AF;
    font-style: italic;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #1F2937;
    color: white;
    padding: 3rem 0 2rem;
    margin-top: auto;
}

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

.footer-brand a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-brand .brand-name {
    color: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
}

.footer-links a[href^="#"] {
    color: #4F46E5;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .content-block {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .empty-content {
        padding: 2rem 1rem;
    }
    
    .placeholder-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links a {
        display: block;
    }
}

/* Additional styling for better visual hierarchy */
.content-block:last-child {
    margin-bottom: 0;
}

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

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid #4F46E5;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    .main-content {
        padding: 0;
    }
    
    .content-block {
        box-shadow: none;
        border: 1px solid #E5E7EB;
    }
    
    body {
        color: #000;
    }
    
    h1, h2, h3 {
        color: #000;
    }
}