/* ========================================
   About Page Styles
   ======================================== */

/* About Section */
.about-section,
.history-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.history-section {
    background-color: var(--light-blue);
}

.about-section-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--navy-blue);
    margin-bottom: 2rem;
    line-height: 1.3;
}

/*.about-content {
    max-width: 800px;
}*/

.about-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--navy-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* ========================================
   Tablet Styles (768px - 1023px)
   ======================================== */
@media (min-width: 768px) and (max-width: 1023px) {
    .about-section-title {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1.05rem;
    }
}

/* ========================================
   Desktop Styles (1024px and above)
   ======================================== */
@media (min-width: 1024px) {
    .about-section,
    .history-section {
        padding: 5rem 0;
    }

    .about-section-title {
        font-size: 2.25rem;
    }

    .about-content p {
        font-size: 1.1rem;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   Mobile Styles (up to 767px)
   ======================================== */
@media (max-width: 767px) {
    .about-section,
    .history-section {
        padding: 2.5rem 0;
    }

    .about-section-title {
        font-size: 1.5rem;
    }

    .about-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-content h3 {
        font-size: 1.15rem;
        margin-top: 1.5rem;
    }
}
