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

.team-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #EEF2FF;
}

.team-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
    font-weight: 700;
}

.team-card p {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 30px;
    }

    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
    }

    .year {
        position: static;
        transform: none;
        margin-bottom: 20px;
        margin-left: -40px;
    }

    .content {
        width: 100%;
        text-align: left;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

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

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E5E7EB;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.year {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 0 0 5px white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.content {
    width: 45%;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #F3F4F6;
    text-align: center;
}

.content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.content p {
    color: var(--text-gray);
    font-size: 15px;
    margin: 0;
}

.investor-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.investor-logo {
    font-size: 24px;
    font-weight: 800;
    color: #9CA3AF;
    letter-spacing: 1px;
    padding: 20px 40px;
    border: 2px solid #F3F4F6;
    border-radius: 12px;
    transition: 0.3s;
}

.investor-logo:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.green-section {
    background: #ECFDF5;
}

.green-section .small-tag {
    color: #059669;
}

.green-section .check-list li {
    color: #064E3B;
    font-weight: 500;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid #E5E7EB;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item span {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.green-section {
    background: #ECFDF5;
}

.green-section .small-tag {
    color: #059669;
}

.green-section .check-list li {
    color: #064E3B;
    font-weight: 500;
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 30px;
    }

    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
    }

    .year {
        position: static;
        transform: none;
        margin-bottom: 20px;
        margin-left: -40px;
    }

    .content {
        width: 100%;
        text-align: left;
    }
}