.nt-c6e55641-timeline {
    --nt-primary: #0B122D;
    --nt-accent: #60D2C9;
    --nt-soft-bg: rgba(96, 210, 201, 0.1);
    --nt-text-color: #555555;
    
    font-family: "Titillium Web", sans-serif;
    width: 100%;
    max-width: 1280px;
    margin: 60px auto;
    padding: 0 32px;
    box-sizing: border-box;
}

.nt-c6e55641-intro {
    text-align: center;
    margin-bottom: 40px;
}

.nt-c6e55641-prefix {
    font-size: 13px;
    font-weight: 700;
    color: var(--nt-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.nt-c6e55641-detail-panel {
    touch-action: pan-y;
}

.nt-c6e55641-dots {
    margin-top: 20px;
    gap: 8px;
}

.nt-c6e55641-dot {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 12px;
}

.nt-c6e55641-main-title {
    font-family: "Titillium Web", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--nt-primary);
    margin: 0;
}

/* Horizontal Track wrapper */
.nt-c6e55641-track-wrapper {
    position: relative;
    padding: 40px 0;
    margin-bottom: 30px;
}

.nt-c6e55641-track-line {
    position: absolute;
    top: 60px;
    left: 8%;
    right: 8%;
    height: 2px;
    background-color: #E2E8F0;
    z-index: 1;
}

.nt-c6e55641-track-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--nt-accent);
    transition: width 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nt-c6e55641-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.nt-c6e55641-step {
    flex: 1;
    text-align: center;
    cursor: pointer;
    padding: 0 10px;
    transition: transform 300ms ease;
    outline: none;
}

.nt-c6e55641-marker-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.nt-c6e55641-marker {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 2px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nt-c6e55641-marker-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--nt-primary);
    position: absolute;
    transition: opacity 250ms ease, transform 250ms ease;
}

.nt-c6e55641-marker-icon {
    font-size: 14px;
    color: #FFFFFF;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 250ms ease, transform 250ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nt-c6e55641-marker-icon i,
.nt-c6e55641-marker-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Active Step Circle State - Removed green arch/halo shadow */
.nt-c6e55641-step.is-active .nt-c6e55641-marker {
    background-color: var(--nt-accent);
    border-color: var(--nt-accent);
    box-shadow: none; /* Removed the soft-bg green arch halo shadow */
}

.nt-c6e55641-step.is-active .nt-c6e55641-marker-num {
    opacity: 0;
    transform: scale(0.6);
}

.nt-c6e55641-step.is-active .nt-c6e55641-marker-icon {
    opacity: 1;
    transform: scale(1);
}

/* Step Title and Info */
.nt-c6e55641-step-info {
    margin-top: 8px;
}

.nt-c6e55641-step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--nt-primary);
    margin: 0 0 4px 0;
    transition: color 250ms ease;
}

.nt-c6e55641-step-desc {
    font-size: 12px;
    color: var(--nt-text-color);
    margin: 0;
    line-height: 1.4;
    padding: 0 5px;
}

.nt-c6e55641-step.is-active .nt-c6e55641-step-title {
    color: var(--nt-accent);
}

/* Detail Panel under step circle */
.nt-c6e55641-detail-panel {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(11, 18, 45, 0.04);
}

.nt-c6e55641-detail-container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.nt-c6e55641-detail-content {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 350ms ease, transform 350ms ease;
    width: 100%;
}

.nt-c6e55641-detail-content.is-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.nt-c6e55641-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.nt-c6e55641-detail-left {
    padding-right: 20px;
}

.nt-c6e55641-detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.nt-c6e55641-detail-badge {
    background-color: var(--nt-soft-bg);
    color: var(--nt-primary);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.nt-c6e55641-detail-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--nt-primary);
    margin: 0;
}

.nt-c6e55641-detail-title a {
    color: inherit;
    text-decoration: none;
    transition: color 200ms ease;
}

.nt-c6e55641-detail-title a:hover {
    color: var(--nt-accent);
}

.nt-c6e55641-detail-body {
    font-size: 15px;
    line-height: 1.6;
    color: var(--nt-text-color);
}

.nt-c6e55641-detail-cta-wrapper {
    margin-top: 20px;
}

.nt-c6e55641-detail-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--nt-accent);
    text-decoration: none;
    transition: color 250ms ease, transform 250ms ease;
}

.nt-c6e55641-detail-cta:hover {
    color: var(--nt-primary);
    transform: translateX(4px);
}

.nt-c6e55641-detail-right {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 280px;
}

.nt-c6e55641-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 300ms ease;
}

.nt-c6e55641-detail-right:hover .nt-c6e55641-detail-img {
    transform: scale(1.03);
}

/* Handwritten annotation absolute to the right inside layout */
.nt-c6e55641-handwritten-note {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(5deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    pointer-events: none;
    width: 120px;
}

.nt-c6e55641-note-text {
    font-family: "Segoe Print", cursive;
    font-size: 12px;
    line-height: 1.3;
    color: var(--nt-primary);
    text-align: center;
}

.nt-c6e55641-arrow-svg {
    margin-top: 4px;
    transform: rotate(15deg);
}

/* Nav dots */
/* Navigation step buttons */
.nt-c6e55641-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.nt-c6e55641-dot {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1.5px solid #CBD5E1;
    padding: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-family: "Titillium Web", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: var(--nt-primary);

    cursor: pointer;

    transition:
        background-color 250ms ease,
        border-color 250ms ease,
        color 250ms ease,
        transform 250ms ease;
}

.nt-c6e55641-dot:hover {
    border-color: var(--nt-accent);
    color: var(--nt-accent);
}

.nt-c6e55641-dot.is-active {
    background-color: var(--nt-accent);
    border-color: var(--nt-accent);
    color: #FFFFFF;
    transform: scale(1.08);
}

.nt-c6e55641-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #CBD5E1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 250ms ease, transform 250ms ease;
}

.nt-c6e55641-dot.is-active {
    background-color: var(--nt-accent);
    transform: scale(1.2);
}

/* Mobile responsive steps layout matches vertical column list */
@media (max-width: 991px) {
    .nt-c6e55641-timeline {
        padding: 0 20px;
    }
    .nt-c6e55641-handwritten-note {
        display: none;
    }
}

@media (max-width: 767px) {
    .nt-c6e55641-track-wrapper {
        display: none; /* Hide horizontal track on mobile */
    }
    
    .nt-c6e55641-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nt-c6e55641-detail-right {
        height: 200px;
        order: -1;
    }
    
    /* Direct compact display of step lists */
    .nt-c6e55641-detail-panel {
        padding: 20px;
    }
}
