/* CHANGE LOG
 * File: /static/css/about.css
 * Document Type: CSS Stylesheet
 * Purpose: Scoped styles for About section (accordion layout, spacing, readability)
 * Version History:
 * 2025-05-02 v1.1 – Set main content width to 80% viewport width, centered layout.
 */

.about_section {
    width: 80vw;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: sans-serif;
    line-height: 1.6;
}

.about_accordion {
    background-color: #f5f5f5;
    color: #333;
    cursor: pointer;
    padding: 14px 18px;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #ddd;
}

.about_accordion:hover,
.about_accordion.active {
    background-color: #e1e1e1;
}

.about_panel {
    display: none;
    overflow: hidden;
    background-color: #fff;
    padding: 16px 20px;
    border-left: 3px solid #ccc;
    margin-bottom: 20px;
}

.about_section h1 {
    text-align: center;
    margin-bottom: 30px;
}

.about_nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.about_nav li a {
    text-decoration: none;
    color: #0066cc;
    font-weight: 500;
}

.about_static {
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}
