/* ================= ABOUT HEADER ================= */
.about-hero {
    background-color: #ffffff;
    padding: 45px 0 30px 0;
    border-bottom: 1px solid #e6e9f0;
    text-align: center;
}

.about-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #1f3563;
    margin-bottom: 6px;
}

.about-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin: 0;
}

/* ================= ABOUT CONTENT ================= */
.about-content {
    padding: 60px 0;
    background-color: #f7f9fc;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 18px;
}

/* ================= HIGHLIGHT BOX ================= */
.about-highlight {
    margin-top: 35px;
    padding: 28px;
    border-left: 5px solid #ff7a18;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-highlight h5 {
    color: #1f3563;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.1);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .about-title {
        font-size: 1.8rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }
}

