/* About Page Specific Styles */

.about-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #ffffff;
}

.our-story {
    padding: 5rem 0;
    background-color: #ffffff;
}

.story-text {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.mission-values {
    padding: 5rem 0;
    background-color: #f9fafb;
}

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

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background-color: #d1fae5;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #059669;
}

.value-title {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.75rem;
}

.value-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.75;
}

.sets-apart {
    padding: 5rem 0;
    background-color: #ffffff;
}

.feature-check-circle {
    width: 2rem;
    height: 2rem;
    background-color: #d1fae5;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #059669;
}

.feature-heading {
    font-size: 1rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-text {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.75;
}

.our-team {
    padding: 5rem 0;
    background-color: #f9fafb;
}

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

.team-card {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.team-image {
    height: 16rem;
    background-color: #e5e7eb;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.75;
}

.cta-section {
    padding: 5rem 0;
    background-color: #111827;
    text-align: center;
    color: #ffffff;
}

.cta-content {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}
