/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #2b6cb0, #4299e1);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.about-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Mission Section */
.our-mission {
    padding: 80px 0;
    background-color: #f7fafc;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 20px;
}

.mission-text p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.stat {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat h3 {
    font-size: 2.5rem;
    color: #2b6cb0;
    margin-bottom: 10px;
}

.stat p {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
}

/* Values Section */
.our-values {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #f7fafc;
    border-radius: 10px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2b6cb0, #4299e1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, #38a169, #48bb78);
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, #d69e2e, #ed8936);
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(135deg, #553c9a, #805ad5);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.value-card p {
    color: #4a5568;
    line-height: 1.5;
}

/* Process Section */
.our-process {
    padding: 80px 0;
    background: #f7fafc;
}

.process-timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2b6cb0;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2b6cb0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    padding-top: 10px;
}

.step-content h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 10px;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Team Section */
.our-team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    padding: 40px 30px;
    background: #f7fafc;
    border-radius: 10px;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2b6cb0, #4299e1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 4rem;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 5px;
}

.member-title {
    color: #2b6cb0;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.member-bio {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Call to Action */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2b6cb0, #4299e1);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #2b6cb0;
    font-weight: 600;
}

.cta-buttons .btn-secondary {
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #2b6cb0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mission-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mission-stats {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .mission-text h2 {
        font-size: 2rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 300px;
    }
}