/* Container Spacing */
.v-timeline-container {
    display: flex;
    flex-direction: column;
    gap: 50px; /* Exact gap from home.html */
    max-width: 900px;
    position: relative;
}

/* Item Flex Layout */
.v-timeline-item { 
    display: flex; 
    gap: 30px; 
    align-items: flex-start; 
    position: relative; 
}

/* The Connecting Line - Only on non-last items */
.v-timeline-item:not(:last-child)::after {
    content: ''; 
    position: absolute; 
    left: 7.5px;
    top: 35px; 
    width: 1px;
    height: calc(100% + 15px);
    background: #00828e;
    opacity: 0.3;
}

/* The Teal Dot */
.node-indicator {
    width: 16px; 
    height: 16px; 
    background-color: #00828e;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0; 
    box-shadow: 0 0 15px rgba(0, 136, 149, 0.2);
    z-index: 2;
}

/* Content Styling: NetHub Black */
.v-timeline-content h3 { 
    font-size: 1.6rem;
    font-weight: 800; 
    margin-bottom: 10px; 
    color: #0e2b3c;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.v-timeline-content p {
    color: #0e2b3c;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}