/* Professional About Page Styles - Clean, No Gradients */

.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 5rem 2rem;
    background: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-section {
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.about-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

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

.philosophy-item {
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    border-left: 4px solid #3182ce;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.philosophy-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: #4a5568;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.about-section ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.about-section li {
    padding: 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #2d3748;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.about-section li:last-child {
    margin-bottom: 0;
}

.cta-section {
    text-align: center;
    background: #f7fafc;
    padding: 4rem 2rem;
    border-radius: 12px;
    margin: 4rem 2rem;
    border: 1px solid #e2e8f0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #3182ce;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: #2c5aa0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

/* Values/Mission Section */
.values-section {
    background: white;
    padding: 3rem 2rem;
    margin: 0 2rem 4rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #ebf8ff;
    color: #3182ce;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.value-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

/* Dark Mode Overrides */
[data-theme="dark"] .about-hero {
    background: var(--bg-light);
    border-bottom-color: var(--brand-border);
}

[data-theme="dark"] .about-hero h1 {
    color: var(--text-primary);
}

[data-theme="dark"] .about-hero p {
    color: var(--text-muted);
}

[data-theme="dark"] .about-section h2 {
    color: var(--text-primary);
    border-bottom-color: var(--brand-border);
}

[data-theme="dark"] .about-section p {
    color: var(--text-muted);
}

[data-theme="dark"] .philosophy-item {
    background: var(--brand-surface);
    border-color: var(--brand-border);
    border-left-color: var(--brand-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .philosophy-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .philosophy-item h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .philosophy-item p {
    color: var(--text-muted);
}

[data-theme="dark"] .about-section li {
    background: var(--brand-surface);
    border-color: var(--brand-border);
    color: var(--text-secondary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .cta-section {
    background: var(--bg-light);
    border-color: var(--brand-border);
}

[data-theme="dark"] .cta-section h2 {
    color: var(--text-primary);
}

[data-theme="dark"] .cta-section p {
    color: var(--text-muted);
}

[data-theme="dark"] .cta-button {
    background: var(--brand-primary);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .cta-button:hover {
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.4);
}

[data-theme="dark"] .values-section {
    background: var(--brand-surface);
    border-color: var(--brand-border);
}

[data-theme="dark"] .value-icon {
    background: var(--alert-info-bg);
    color: var(--brand-primary);
}

[data-theme="dark"] .value-item h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .value-item p {
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-hero {
        padding: 3rem 1rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .about-section {
        padding: 0 1rem;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .philosophy-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        margin: 3rem 1rem;
        padding: 3rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 2.5rem 1rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-section h2 {
        font-size: 1.75rem;
    }

    .philosophy-item,
    .value-item {
        padding: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }
}
