.about-section {
    padding: 150px 0 80px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.about-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 60px;
}

.about-content h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-card, .value-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover, .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mission-card h3, .value-card h3 {
    color: #4a6cf7;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.mission-card h3::before, .value-card h3::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #4a6cf7;
    margin-right: 10px;
    border-radius: 50%;
}

.team-section {
    margin-top: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 250px;
    background-color: #e7e7e7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.member-image svg {
    width: 100px;
    height: 100px;
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    margin-bottom: 5px;
    color: #333;
}

.member-info .position {
    color: #4a6cf7;
    font-weight: 500;
    margin-bottom: 10px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #4a6cf7;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: #4a6cf7;
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-left::after {
    right: -8px;
}

.timeline-right::after {
    left: -8px;
}

.timeline-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    color: #4a6cf7;
    margin-bottom: 10px;
}

.timeline-content .date {
    display: inline-block;
    padding: 5px 10px;
    background-color: #e7f3ff;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #e7f3ff;
    border-radius: 10px;
}

.cta-section h2 {
    color: #333;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background-color: #4a6cf7;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}


@media (max-width: 768px) {
    .about-content {
        padding: 30px 20px;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 23px;
    }
    
    .timeline-right {
        left: 0%;
    }
}
