/* About Page Styles */
.about-container {
    margin: 4rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.about-description {
    font-size: 1.2rem;
    color: var(--aa-gray);
    line-height: 1.6;
    margin-top: 1rem;
}

.about-mission, 
.about-content, 
.about-author {
    margin-bottom: 3rem;
}

.about-mission h2,
.about-content h2,
.about-author h2 {
    font-size: 1.8rem;
    color: var(--aa-navy);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-mission h2:after,
.about-content h2:after,
.about-author h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--aa-gold);
}

.about-mission p,
.about-author p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.content-area {
    background: white;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content-area h3 {
    font-size: 1.3rem;
    color: var(--aa-navy);
    margin-bottom: 1rem;
}

@media screen and (max-width: 1023px) {
    .content-areas {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .content-areas {
        grid-template-columns: 1fr;
    }
    
    .about-container {
        padding: 0 1rem;
    }
}