    .timeline-container {
        max-width: 1200px;

        margin: 0 auto;
        padding: 40px 20px;
        background: var(--tertiary);
        
    }


    .timeline-content {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 80px;
    }

    .timeline-line {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--primary);
        transform: translateX(-50%);
        z-index: 1;
    }

    .timeline-item {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .timeline-item.left {
        justify-content: flex-start;
    }

    .timeline-item.right {
        justify-content: flex-end;
    }

    .timeline-dot {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 20px;
        height: 20px;
        background: var(--primary);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
    }

    .timeline-icon {
        position: absolute;
        top: 50%;
        width: 120px;
        height: 120px;
        background: rgba(74, 222, 128, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateY(-50%);
        z-index: 2;
    }

    .timeline-item.left .timeline-icon {
        right: calc(50% + 3rem);
    }

    .timeline-item.right .timeline-icon {
        left: calc(50% + 3rem);
    }

    .timeline-icon svg {
        width: 40px;
        height: 40px;
        color: #000;
    }

    .timeline-card {
        background: white;
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-width: calc(50% - 160px);
        width: 100%;
    }

    .timeline-item.left .timeline-card {
        margin-right: auto;
        margin-left: calc(50% + 3rem);
    }

    .timeline-item.right .timeline-card {
        margin-left: auto;
        margin-right: calc(50% + 3rem);
    }

    .timeline-date {
        color: var(--primary);
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .timeline-title {
        font-size: 1.5rem;
        font-weight: bold;
        color: #000;
        margin: 0 0 15px 0;
    }

    .timeline-text {
        color: #666;
        line-height: 1.6;
    }

    @media (max-width: 768px) {
        .timeline-line {
            left: 20px;
        }

        .timeline-item {
            justify-content: flex-start !important;
        }

        .timeline-dot {
            left: 20px;
        }

        .timeline-item .timeline-icon {
            left: 60px !important;
            right: auto !important;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
        }

        .timeline-item .timeline-card {
            margin-left: 140px !important;
            margin-right: 20px !important;
            max-width: calc(100% - 160px);
        }
    }

    .timeline-icon-inner img,
    .timeline-icon-inner svg {
        max-width: 3rem;
        max-height: 3rem;
        display: block;
        margin: 0 auto;
    }