/* ================================================================
   ABOUT JOURNEY PAGE STYLES
   ================================================================ */

/* Override the about-us section styles for journey page */

.about-us-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 20;
}

.about-journey-page .about-us-section {
    background: #F9FAFB;
    padding: 4rem 0;
}

.about-journey-page .about-us-section::before {
    display: none;
}

.about-journey-page .about-us-section-title {
    margin-top: 70px;
    color: #2C3E50;
    text-shadow: none;
}

/* About the App Subsection */
.about-app-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.about-app-title {
    font-family: 'Figtree', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #4A7C59;
    margin-bottom: 1rem;
}

.about-app-features {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 1.5rem 0;
}

.about-app-features li {
    font-family: 'Figtree', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-app-features li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #4A7C59;
    font-size: 1rem;
}

.about-app-features li strong {
    color: #2C3E50;
    font-weight: 600;
}

/* About the Project Subsection */
.about-project-title {
    font-family: 'Figtree', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #4A7C59;
    margin-bottom: 1rem;
}

.about-us-intro {
    margin-bottom: 2rem;
}

.about-us-section-content {
    font-family: 'Figtree', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
    text-align: justify;
}

.about-us-section-content strong {
    color: #4A7C59;
    font-weight: 700;
}

/* Timeline Styles */
.about-us-timeline {
    position: relative;
    margin: 2rem 0;
}

.about-us-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #4A7C59;
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #4A7C59;
    border: 3px solid #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.timeline-left .timeline-image {
    order: 1;
    text-align: right;
    padding-right: 1.5rem;
}

.timeline-left .timeline-content {
    order: 2;
    padding-left: 1.5rem;
}

.timeline-right .timeline-content {
    order: 1;
    text-align: right;
    padding-right: 1.5rem;
}

.timeline-right .timeline-image {
    order: 2;
    padding-left: 1.5rem;
}

.about-us-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.timeline-date {
    font-family: 'Figtree', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #4A7C59;
    margin-bottom: 0.5rem;
}

.timeline-text {
    font-family: 'Figtree', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.about-us-closing {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e0e0e0;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .about-us-timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 50px;
    }

    .timeline-item::after {
        left: 20px;
    }

    .timeline-left .timeline-image,
    .timeline-right .timeline-image {
        order: 1;
        text-align: left;
        padding: 0;
    }

    .timeline-left .timeline-content,
    .timeline-right .timeline-content {
        order: 2;
        text-align: left;
        padding: 0;
        padding-top: 1rem;
    }

    .about-us-img {
        max-width: 100%;
    }
}
