/* static/css/pages/about.css */
/*
    Page-Specific Styles: About Us
    ------------------------------
    REVISED: This stylesheet implements a professional, visually-driven layout
    with a hero image and a clean single-column content section.
*/

/* --- Hero Section --- */
.about-hero {
    position: relative;
    padding: 80px 20px;
    color: var(--white-color);
    text-align: center;
    background-image: url('../../img/page/about.png'); /* Assumes a suitable background image exists */
    background-size: cover;
    background-position: center 30%;
}

/* Dark overlay for text readability */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 30, 40, 0.6);
    z-index: 1;
}

.about-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero__title {
    font-size: 3em;
    font-weight: 700;
    color: var(--white-color);
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    margin: 0;
}

.about-hero__subtitle {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    font-weight: 400;
}


/* --- Main Content Layout --- */
/* CORRECTED: The layout is now a simple block with a max-width for readability. */
.about-layout {
    max-width: 800px; /* Constrain the width of the text content */
    margin: 30px auto 0 auto; /* Center the layout block */
}

.about-content h2 {
    font-size: 1.8em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.about-content p {
    font-family: var(--font-family-base); /* Explicitly set to proportional font */
    line-height: 1.8;
    font-size: 1.1em;
    color: var(--text-color);
}

/* CORRECTED: The media query for two columns is no longer needed and has been removed. */
