/* About Page Styles */
.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.about-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

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

.about-hero p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

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

.about-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

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

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

.philosophy-item {
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
}

.philosophy-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: #6b7280;
    margin: 0;
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-section li:last-child {
    border-bottom: none;
}

.cta-section {
    text-align: center;
    background: #f3f4f6;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.cta-button--primary {
    background: #3b82f6;
    color: white;
}

.cta-button--primary:hover {
    background: #2563eb;
}

.cta-button--secondary {
    background: white;
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.cta-button--secondary:hover {
    background: #3b82f6;
    color: white;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}