/* ======================= */
/* ABOUT SECTION           */
/* ======================= */
.about-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    padding: 0 20px;

    /* Left justify text instead of center */
    text-align: left;
}

.about-section h2 {
    font-size: 42px;
    font-weight: 700;

    /* Optional: left align the heading */
    text-align: left;
}

.about-content {
    background: var(--brand-yellow);
    color: var(--brand-green);
    padding: 20px 25px;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(255, 224, 130, 0.25);
    font-size: 16px;
    line-height: 1.5;

    /* Ensure content inside box is left-aligned */
    text-align: left;
}

/* ========================================= */
/* DESKTOP PROPORTIONAL GROWTH (About Us)    */
/* ========================================= */
@media (min-width: 1024px) {
    .about-section {
        align-items: flex-start;    /* Keeps everything left-aligned on PC */
        padding-left: 5%;           /* Adds some breathing room from the sidebar */
    }

    .about-content {
        width: 85% !important;      /* Grows with the window size */
        max-width: 1200px !important; /* Higher limit so it fills more of a big PC screen */
        padding: 40px;              /* More space inside the box for a premium look */
        font-size: 18px;            /* Slightly larger text for easier reading on big screens */
        line-height: 1.7;           /* More space between lines of text */
    }

    .about-section h2 {
        margin-bottom: 30px;        /* More space between the title and the box */
    }
}