/* Auxiliary Pages Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    margin: 0;
    padding: 0;
}

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

:root {
    --primary-color: #6B4E71;
    --secondary-color: #8B5A8C;
    --accent-color: #4A4A4A;
    --text-color: #333;
    --text-light: #666;
    --background: #fafafa;
    --white: #ffffff;
    --border-color: #e1e1e1;
}

/* Header */
.header {
    background: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Main Content */
.main-content {
    min-height: 70vh;
    padding: 80px 0;
    background: var(--white);
}

.page-header {
    text-align: center;
    margin-bottom: 48px;
}

.page-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

/* Content Sections */
.content-section {
    margin-bottom: 48px;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 1.75rem;
}

.content-section p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.placeholder-content {
    background: var(--background);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 48px;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Page Specific Styles */
.about-hero {
    margin-bottom: 64px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 1.75rem;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.value-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--background);
    border-radius: 12px;
}

.value-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.process-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 32px;
}

.process-text h2 {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 1.75rem;
}

.process-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.commitment-section {
    text-align: center;
    margin-top: 32px;
}

.commitment-section h2 {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 1.75rem;
}

.commitment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--accent-color);
    color: white;
    padding: 48px 0 24px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    margin-bottom: 32px;
}

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

.footer-brand p {
    margin-top: 16px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-image {
        order: -1;
    }
    
    .process-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .process-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 48px 0;
    }
}