.vt-208-wrapper {
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.vt-208-container {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

/* Central Line */
.vt-208-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #e0e0e0;
    transform: translateX(-50%);
    z-index: 1;
}

.vt-208-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
}

.vt-208-item:last-child {
    margin-bottom: 0;
}

.vt-208-content-col,
.vt-208-image-col {
    width: calc(50% - 40px);
}

.vt-208-center-col {
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.vt-208-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #00529b;
}

/* Alternating Layout */
.vt-208-odd .vt-208-content-col {
    order: 3;
    text-align: right; /* Default RTL focus based on context */
}

.vt-208-odd .vt-208-image-col {
    order: 1;
}

.vt-208-even .vt-208-content-col {
    order: 1;
    text-align: right;
}

.vt-208-even .vt-208-image-col {
    order: 3;
}

.vt-208-center-col {
    order: 2;
}

/* Content Styling */
.vt-208-badge {
    display: inline-block;
    background-color: #00529b;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vt-208-title {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.vt-208-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.vt-208-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Button */
.vt-208-btn-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
}

.vt-208-btn {
    display: inline-block;
    background-color: #00529b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px dashed #00529b; /* Match dashed style from image if needed, here just solid border style initially */
    transition: all 0.3s ease;
}

.vt-208-btn:hover {
    opacity: 0.9;
    color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
    .vt-208-container::before {
        left: 20px; /* Move line to left on mobile */
    }
    
    .vt-208-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .vt-208-content-col,
    .vt-208-image-col {
        width: 100%;
        padding-left: 50px; /* Space for the line */
        order: unset !important;
        text-align: right;
    }
    
    .vt-208-center-col {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translate(-50%, -50%);
        width: auto;
    }
    
    .vt-208-image-col {
        margin-top: 20px;
    }
}
