        .timeline-container {
            position: relative;
            width: 100%;
            max-width: 900px;
            margin: 40px auto;
            padding: 40px 0;
        }

        .timeline-container::after {
            content: "";
            display: table;
            clear: both;
        }

        .timeline-entry {
            width: 42%;
            background: var(--col2);
            padding: 20px;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            margin-bottom: 60px;
        }

        .timeline-entry.left {
            float: left;
            clear: both;
            margin-right: 5%;
            margin-left: 2%;
        }

        .timeline-entry.right {
            float: right;
            clear: both;
            margin-left: 5%;
            margin-right: 2%;
        }

        .timeline-entry.left,
        .timeline-entry.right {
            position: relative;
        }

        .timeline-dot {
            top: 37px;
        }

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

        .timeline-entry.left .timeline-dot {
            left: 112%; 
            margin-left: 8px;
        }

        .timeline-entry.right .timeline-dot {
            left: -11.5%; 
            margin-left: -8px;
        }

        .timeline-dot {
            position: absolute;
            left: 100%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            background: var(--col6);
            border: 4px solid #555;
            border-radius: 50%;
            z-index: 2;
        }


        .timeline-header {
            font-weight: bold;
            font-size: 18px;
            background: var(--col3);
            color: var(--highlight);
            padding: 6px 12px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 10px;
        }

        .timeline-title {
            font-weight: bold;
            margin-bottom: 8px;
        }

        .timeline-description {
            font-size: 14px;
            line-height: 1.5;
        }

.timeline-form {
    max-width: 500px;
    margin: 30px auto;
    background: var(--col2);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.timeline-form fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.timeline-form legend {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.timeline-form label {
    display: block;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 4px;
}

.timeline-form input[type="text"],
.timeline-form input[type="date"],
.timeline-form input[type="url"],
.timeline-form select,
.timeline-form textarea {
    width: 100%;
    padding: 6px 10px;
    font-size: 14px;
    border: 1px solid var(--border);
    border-radius: 5px;
    box-sizing: border-box;
}

.timeline-form textarea {
    resize: vertical;
}

.timeline-form .form-buttons {
    text-align: right;
    margin-top: 15px;
}

.timeline-form input[type="submit"] {
    background: var(--col6);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

.timeline-form input[type="submit"]:hover {
    background: var(--col2);
}

        