.about-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
.about-container {
    max-width: 900px;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    margin: 0 auto;
}
.quote-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
}
.quote-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
}
.quote-icon svg {
    fill: #004aad;
}
.about-title {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}
.about-intro {
    text-align: center;
    margin-bottom: 40px;
}
.about-intro h6 {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 15px;
    word-wrap: break-word;
}
.about-intro h6 a {
    color: var(--primary-color);
    text-decoration: none;
}
.about-intro h6 a:hover {
    text-decoration: underline;
}
.about-featured-image {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}
.about-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}
.team-section {
    text-align: center;
    margin-top: 40px;
}
.team-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: uppercase;
}
.team-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
}
.team-member {
    text-align: center;
}
.team-member img {
    width: 180px;
    height: auto;
    margin-bottom: 10px;
    pointer-events: none;
    user-select: none;
}
.team-member h5 {
    font-size: 16px;
    margin: 10px 0 5px;
}
.team-member p {
    font-size: 14px;
    color: #666;
}
@media (max-width: 768px) {
    .about-container {
        padding: 0 15px;
    }
    .about-title {
        font-size: 2rem;
    }
    .about-intro h6 {
        font-size: 1rem;
    }
    .team-member {
        margin-bottom: 30px;
    }
}