
/* Main Content */
main {
    padding: 3rem 0;
}

/* About Sections */
.about-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f4a460;
    border-radius: 8px;
}

.about-section h2 {
    color: #2c1810;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.about-section p {
    color: #2c1810;
    margin-bottom: 1rem;
}

.about-section p strong {
    color: #2c1810;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.team-member h3 {
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #666;
    font-size: 0.95rem;
}