/* About Page Specific Styles */
.page-hero {
    background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-black) 100%);
    color: var(--color-white);
    padding: 100px 0;
    text-align: center;
}
.page-hero h1 { color: var(--color-white); margin-bottom: 20px; }
.page-hero .lead { color: var(--color-gray-300); font-size: 1.2rem; max-width: 800px; margin: 0 auto; }

.section-intro { max-width: 900px; margin: 0 auto 50px; text-align: center; }
.section-intro h2 { margin-bottom: 20px; }
.section-subtitle { max-width: 700px; margin: 0 auto 40px; color: var(--color-gray-700); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-block {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
}
.stat-block strong {
    display: block;
    font-size: 2rem;
    color: var(--color-black);
    margin-bottom: 10px;
    line-height: 1;
}
.stat-block p { color: var(--color-gray-700); font-size: 0.95rem; }

.alt-bg { background-color: var(--color-gray-50); }

.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
@media (max-width: 992px) { .value-prop-grid { grid-template-columns: 1fr; } }
.value-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius);
    border-top: 4px solid var(--color-black);
    box-shadow: var(--shadow);
}
.value-card h4 { color: var(--color-black); margin-bottom: 15px; }
.value-card p { color: var(--color-gray-800); line-height: 1.6; }

.company-profile {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}
@media (max-width: 992px) { .company-profile { grid-template-columns: 1fr; } }
.profile-content h2 { margin-bottom: 20px; }
.profile-content p { margin-bottom: 20px; line-height: 1.7; color: var(--color-gray-800); }
.profile-contact {
    background: var(--color-white);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow);
}
.profile-contact h4 { margin-bottom: 15px; color: var(--color-black); }
.profile-contact p { margin-bottom: 10px; }
.profile-contact a { color: var(--color-black); text-decoration: none; border-bottom: 1px dotted var(--color-gray-500); }
.profile-contact a:hover { border-bottom: 1px solid var(--color-black); }

.vision-section .lead { max-width: 700px; margin: 0 auto 30px; color: var(--color-gray-800); }