/* =========================
   ABOUT PAGE SECTION
========================= */
.about-page-section {
    max-width: 1400px;
    padding: 80px 20px;
    background: #f9f9f9;
    color: #192850;
    margin: 0 auto;
}


/* =========================
   ABOUT CONTENT
========================= */
.about-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

/* =========================
   PUBLIC PRESENCE
========================= */
.public-presence {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.public-presence h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.public-presence p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* =========================
   PURPOSE SECTION
========================= */
.purpose-section {
    margin-bottom: 90px;
    text-align: center;
}

.purpose-section h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
}

.purpose-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.purpose-card {
    background: linear-gradient(135deg, #00bf63, #38b6ff);
    color: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.purpose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.purpose-card img {
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;
}

.purpose-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.purpose-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* =========================
   JOURNEY TREE
========================= */
.journey-tree {
    margin-top: 80px;
}

.journey-tree h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Center line */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #38b6ff;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Timeline item */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 22px;
    width: 18px;
    height: 18px;
    background: #38b6ff;
    border-radius: 50%;
    z-index: 2;
}

/* Content box */
.timeline-content {
    background: #fff;
    padding: 22px 26px;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.timeline-date {
    font-weight: 700;
    color: #38b6ff;
    display: block;
    margin-bottom: 6px;
}

/* Left side */
.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.left::before {
    right: -9px;
}

/* Right side */
.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item.right::before {
    left: -9px;
}

/* =========================
   RESPONSIVE FIX (CRITICAL)
========================= */
@media (max-width: 992px) {

    .about-content h2 {
        font-size: 34px;
    }

    .purpose-section h3,
    .journey-tree h3 {
        font-size: 26px;
    }

    /* Timeline becomes vertical */
    .timeline::before {
        left: 12px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 40px;
        padding-right: 10px;
        margin-bottom: 30px;
        text-align: left !important;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0 !important;
    }

    .timeline-item::before {
        left: 4px !important;
        right: auto !important;
    }
}

@media (max-width: 576px) {

    .about-page-section {
        padding: 60px 15px;
    }

    .about-content p {
        font-size: 15px;
    }

    .public-presence p {
        font-size: 14px;
    }

    .purpose-card {
        padding: 24px 18px;
    }

    .timeline {
        padding: 0 10px;
    }

    .timeline::before {
        left: 8px;
    }

    .timeline-item {
        padding-left: 30px;
        padding-right: 0;
    }

    .timeline-item::before {
        width: 14px;
        height: 14px;
        left: 1px;
    }

    .timeline-content {
        padding: 16px 18px;
    }
}
