.about-page {
    background-color: #ffffff;
    color: #111111;
}

/* Override dark-theme styles from style.css */
.about-page .main-header:not(.is-top) {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid #e0e0e0;
}
.about-page .logo span,
.about-page .hamburger span {
    color: #111111;
    background-color: #111111;
}
.about-page .desktop-nav > li > a {
    color: #555555;
}
.about-page .desktop-nav > li > a:hover {
    color: #111111;
}

/* Main Content Styling */
.section-about-intro {
    padding-top: calc(var(--header-height-desktop) + 5rem);
    padding-bottom: 5rem;
}

.about-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-header {
    margin-bottom: 5rem;
}

.about-header h1 {
    font-family: 'Albert Sans', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.mission-statement {
    font-family: 'Albert Sans', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    line-height: 1.4;
    color: #b3b3b3;
    letter-spacing: -0.5px;
    margin-bottom: 2rem;
}

.mission-statement strong {
    color: #111;
    font-weight: 600;
}

.mandate-intro {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    line-height: 1.8;
}

.key-areas-list {
    display: grid;
    gap: 3.5rem;
}

.key-area-item h2 {
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.key-area-item p {
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Custom Footer Styling */
.about-custom-footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 5rem 0;
}

.footer-brand {
    margin-bottom: 4rem;
}

.footer-logo-icon {
    height: 48px;
    width: 48px;
    margin-bottom: 1rem;
}

.footer-brand-name {
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 1.5rem;
}

.footer-column h4 {
    font-family: 'Albert Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #a0a0a0;
}

.footer-column ul {
    display: grid;
    gap: 0.75rem;
}

.footer-column a {
    color: #FFFFFF;
    font-family: 'Albert Sans', sans-serif;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 0.7;
}

@media (min-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}