

.highlight {
    color: #ff4b0b;
}


.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}


.step-card {
    border-left: 2px solid #e0e0e0;
    padding-left: 1.2rem;
}

.step-number {
    font-family: 'Teko', sans-serif;
    font-size: 3.5rem;
    color: #ff4b0b;
    line-height: 0.9;
    margin-bottom: 0.5rem;
}

.about-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-desc {
    max-width: 450px;
    color: #a0a0a0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.history-col {
    border-left: 2px solid #e0e0e0;
    padding-left: 1.2rem;
}

.history-col h3 {
    font-family: 'Teko', sans-serif;
    font-size: 2.2rem;
    color: #ff4b0b;
    margin: 0 0 0.5rem;
    line-height: 1;
}

.history-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #444;
    font-size: 0.95rem;
}

.history-col p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    border-left: 2px solid #333;
    padding-left: 1.2rem;
}

.team-card.featured {
    border-left-color: #ff4b0b;
}

.team-card h3 {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: #ff4b0b;
    margin: 0 0 0.2rem;
    line-height: 1;
}

.team-card h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.team-card p {
    color: #a0a0a0;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.ticket-box {
    background: #111111;
    border: 1px solid #262626;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

@media (max-width: 980px) {
    .steps-grid, 
    .stats-grid, 
    .history-grid, 
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-top, 
    .ticket-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .steps-grid, 
    .stats-grid, 
    .history-grid, 
    .team-grid {
        grid-template-columns: 1fr;
    }
}