
.about-page {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    padding: 0;
}

.about-page .chess-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    color: white;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.about-page .about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.about-page .mission-section {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}


.about-page .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.about-page .team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.about-page .team-member:hover {
    transform: translateY(-10px);
}

.about-page .member-photo {
    height: 366px;
    width: 366px;
    background-size: cover;
    background-position: center;
}

.about-page .member-info {
    padding: 20px;
}

.about-page .chess-board {
    width: 100%;
    max-width: 500px;
    margin: 40px auto;
    border: 15px solid #333;
    border-radius: 3px;
}

.about-page .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    margin: 50px 0;
}

.about-page .stat-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.about-page .stat-number {
    font-size: 2.5rem;
    color: #e74c3c;
    font-weight: bold;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .about-page .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page .chess-header {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .about-page .stats {
        grid-template-columns: 1fr;
    }

    .about-page .team-grid {
        grid-template-columns: 1fr;
    }
}

.chess-board{
    display: flex;
    justify-content: center;
}
