﻿
/* Header */
.aboutpage-header {
    background-color: #204895;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

    .aboutpage-header h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .aboutpage-header p {
        font-size: 1.2rem;
    }

/* Sections */
.aboutpage-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.aboutpage-about {
    text-align: center;
    margin-bottom: 50px;
}

    .aboutpage-about h2 {
        color: #204895;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .aboutpage-about p {
        font-size: 1rem;
        color: #555;
        max-width: 800px;
        margin: 0 auto;
    }

/* Team */
.aboutpage-team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.aboutpage-team-member {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 250px;
    text-align: center;
    transition: transform 0.3s;
}

    .aboutpage-team-member:hover {
        transform: translateY(-5px);
    }

    .aboutpage-team-member img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .aboutpage-team-member h3 {
        color: #204895;
        margin: 15px 0 5px 0;
    }

    .aboutpage-team-member p {
        color: #777;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

/* Footer */
.aboutpage-footer {
    background-color: #204895;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .aboutpage-team {
        flex-direction: column;
        align-items: center;
    }

    .aboutpage-team-member {
        width: 80%;
    }
}
