/* Auxiliary Pages CSS */
/* 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: #1f2937;
    font-weight: 400;
}

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

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

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

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

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

.intro {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin-bottom: 2rem;
}

.last-updated {
    color: #9ca3af;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    color: white;
    padding: 2rem 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.brand-name {
    font-size: 2rem;
    font-weight: 700;
}

.breadcrumb {
    font-size: 0.875rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
    min-height: 60vh;
}

.content-block {
    max-width: 800px;
    margin-bottom: 3rem;
}

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

.content-block p {
    margin-bottom: 1.5rem;
}

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

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

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

.footer-brand .brand-name {
    color: white;
    font-size: 1.5rem;
}

.footer-brand p {
    opacity: 0.8;
    margin-top: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.link-group h4 {
    margin-bottom: 1rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: #d1d5db;
    text-decoration: none;
}

.link-group a:hover {
    color: white;
    text-decoration: underline;
}

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

.footer-bottom p {
    opacity: 0.8;
    margin: 0;
}

/* About Page Specific Styles */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h1 {
    margin-bottom: 1.5rem;
}

.about-image,
.hero-photo,
.content-photo,
.expertise-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    max-width: 100%;
}

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

.block-content.reverse {
    direction: rtl;
}

.block-content.reverse > * {
    direction: ltr;
}

.block-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.block-visual svg {
    max-width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .header-content {
        gap: 0.5rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .content-block {
        margin-bottom: 2rem;
    }
    
    .about-hero,
    .block-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .block-content.reverse {
        direction: ltr;
    }
    
    .hero-photo,
    .content-photo,
    .expertise-photo {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1.5rem 0;
    }
    
    h1 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-hero {
        margin-bottom: 2rem;
    }
    
    .hero-photo,
    .content-photo,
    .expertise-photo {
        height: 180px;
    }
}