/* css/about.css */

.about-page {
    padding: 40px 0;
}

.about-page h1 {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.about-page section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-page h2 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.about-page p {
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 15px;
}

.about-page ul {
    list-style: none;
    padding: 0;
}

.about-page ul li {
    margin-bottom: 10px;
    color: #555;
}

/* Team Section Styling */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center; /* Center cards if not filling full width */
    margin-top: 30px;
}

.team-member-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-member-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #3498db;
}

.team-member-card h3 {
    font-size: 1.2em;
    color: #3498db;
    margin-bottom: 5px;
}

.team-member-card p {
    font-size: 0.9em;
    color: #7f8c8d;
}