/* Import Global Styles (if needed) */
@import url('style.css');

/* About Hero */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), url('../assets/about-bg.jpg'));
    background-size: cover;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Mission & Vision */
.mission {
    display: flex;
    justify-content: space-between;
    padding: 4rem 10%;
    gap: 3rem;
}

.mission-content, .vision-content {
    flex: 1;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

/* Story Section */
.story {
    padding: 4rem 10%;
    text-align: center;
    background: #f0f8ff;
}

/* Values Grid */
.values {
    padding: 4rem 10%;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Team Section */
.team {
    padding: 4rem 10%;
    text-align: center;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.team-member {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 200px;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* CTA */
.cta {
    text-align: center;
    padding: 3rem;
    background: #0066cc;
    color: white;
}

.cta .btn-primary {
    background: var(--neutral-900); /* Black background */
    color: var(--neutral-50); /* White text */
    border: 1px solid var(--neutral-900);
}

.cta .btn-primary:hover {
    background: var(--neutral-700);
    border-color: var(--neutral-700);
}

/* Our Approach Section */
.our-approach {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.approach-header {
    margin-bottom: 3rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    background: var(--neutral-0);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.approach-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.approach-icon i {
    font-size: 1.5rem;
    color: white;
}

.approach-content {
    flex: 1;
}

.approach-content h3 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.approach-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.approach-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.approach-features li i {
    color: var(--primary-color);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .approach-card {
        padding: 1.5rem;
    }
}