/* Our Journey Section */
.our-story-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9fa 100%);
    padding: 80px 0;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4496a6;
    max-width: 700px;
    margin: 0 auto;
}

.story-intro {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.story-intro h3 {
    font-size: 1.8rem;
    color: #224056;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-intro p {
    font-size: 1.1rem;
    color: #4496a6;
    line-height: 1.9;
    margin-bottom: 15px;
}

.story-intro strong {
    color: #6dbdc8;
    font-weight: 700;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0 20px 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #6dbdc8 0%, #5aacb7 100%);
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -42px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #6dbdc8;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-dot {
    width: 24px;
    height: 24px;
    left: -44px;
    background: #6dbdc8;
    box-shadow: 0 0 0 6px rgba(109, 189, 200, 0.2);
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(109, 189, 200, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(109, 189, 200, 0.2);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    color: #224056;
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1rem;
    color: #4496a6;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .story-intro h3 {
        font-size: 1.5rem;
    }
    
    .timeline {
        padding-left: 35px;
    }
    
    .timeline-item {
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .our-story-section {
        padding: 60px 0;
    }
    
    .timeline-content {
        padding: 20px;
    }
}
