.elementor-3451 .elementor-element.elementor-element-9cc3008{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}@media(max-width:767px){.elementor-3451 .elementor-element.elementor-element-95c490a > .elementor-widget-container{margin:0px 0px 0px 0px;padding:30px 0px 0px 0px;}}/* Start custom CSS for text-editor, class: .elementor-element-95c490a */<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.timeline-container {
    padding: 30px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 30px 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #00BFFF;
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin: 40px 0;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 0 30px;
    border: 2px solid rgba(0, 191, 255, 0.3);
    transition: all 0.3s ease;
    color: #000000;
}

.timeline-content:hover {
    border-color: #00BFFF;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.2);
    background: #ffffff;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #00BFFF;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 4px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 191, 255, 0.3);
}

.phase-title {
    font-weight: 400;
    color: #000000;
    margin-bottom: 12px;
    font-size: 1.2em;
}

.phase-duration {
    color: #00BFFF;
    font-weight: 400;
    font-size: 1em;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-container {
        padding: 20px 15px;
    }
    
    .timeline {
        margin: 20px 0;
        padding: 15px 0;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin: 30px 0;
        margin-left: 50px;
    }
    
    .timeline-dot {
        left: 20px;
        width: 16px;
        height: 16px;
        border: 3px solid #ffffff;
    }
    
    .timeline-content {
        margin: 0 0 0 30px;
        padding: 15px;
    }
    
    .phase-title {
        font-size: 1.1em;
        margin-bottom: 8px;
    }
    
    .phase-duration {
        font-size: 0.9em;
        margin-bottom: 8px;
    }
    
    .timeline-content p {
        font-size: 0.9em;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .timeline-container {
        padding: 15px 10px;
    }
    
    .timeline-item {
        margin: 25px 0;
        margin-left: 40/* End custom CSS */