:root {
    --primary-color: #1f6306;
    --secondary-color: #4a8c24;
    --text-color: #bbbaba;
    --light-text: #bbbbbb;
    --bg-color: #f9f9f9;
    --timeline-line: #e9e9e9;
}

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    padding: 20px;
} */

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

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #1f6306;
    right: 50%;
    transform: translateX(-50%);
    z-index: 1;
    height: 77%;
    top: 140px;
}

.timeline-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    position: relative;
}

.timeline-item {
    margin-bottom: 60px;
    width: 100%;
    position: relative;
}

.timeline-item:nth-child(odd) {
    align-self: flex-start;
    padding-right: 50%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    padding-left: 50%;
    text-align: left;
}



/* .timeline-item:nth-child(odd) .timeline-dot {
            right: -10px;
        }
        
        .timeline-item:nth-child(even) .timeline-dot {
            left: -10px;
        } */

.timeline-content {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

@media (min-width:999px) {
    .timeline-content {
        padding: 20px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        position: relative;
        margin: 0 30px;
    }
}


.timeline-period {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-phase {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.timeline-details {
    list-style-type: none;
    padding-left: 0;
}

.timeline-details li {
    position: relative;
    /* padding-left: 20px; */
    margin-bottom: 8px;
}

.counter-one {
    position: relative;
    display: block;
    padding: 46px 0 54px;
    z-index: 1
}

/* .timeline-details li::before {
            content: '·';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1.2rem;
        } */

.timeline-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    /* border: 4px solid white; */
    /* top: 30px; */
    z-index: 2;
    left: 570px;
}

/* .timeline-container::before {
        left: 20px;
    }       */

@media (max-width: 768px) {
    .timeline-dot {
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: var(--primary-color);
        /* border: 4px solid white; */
        top: 30px;
        z-index: 2;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 45px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

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

    .timeline-dot {
        left: 0 !important;
    }

    .timeline-title {
        font-size: 2rem;
    }
}