/* about.css */

/* ---------- General Styles ---------- */
.about-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    color: #333; /* Default text */
}

/* ---------- Title ---------- */
.about-section .title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
       /* Only ABOUT US color changed to yellow */
}


/* ---------- Intro Paragraph ---------- */
.about-section .intro-text {
    text-align: center;
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* ---------- About Grid (Two Columns) ---------- */
.about-section .about-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ---------- Boxes ---------- */
.about-section .box {
    flex: 1 1 400px;
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-section .box h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

.about-section .box p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ---------- Responsive ---------- */
@media screen and (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

    .about-section .title {
        font-size: 28px; /* Smaller title on mobile */
    }

    .about-section .intro-text {
        font-size: 14px;
        padding: 0 10px;
    }

    .about-section .about-grid {
        flex-direction: column;
        gap: 20px;
    }

    .about-section .box {
        padding: 20px;
    }

    .about-section .box h2 {
        font-size: 20px;
    }

    .about-section .box p {
        font-size: 14px;
    }
}
