.about-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 0.8;
    min-width: 280px;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-vision h2{
    margin-top: 50px;
    text-align: center;
    font-size: 2rem;
}

.mission-vision-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
}

.mission {
    flex: 1;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
}

.mission strong {
    font-size: 1.5rem;
    color: var(--highlight-color);
}

.mission p {
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--accent-color);
}

.vision {
    flex: 1;
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
}

.vision strong {
    font-size: 1.5rem;
    color: var(--highlight-color);
}

.team-section {
    margin-top: 50px;
}

.coaches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.coach-card {
    width: 250px;
    height: 350px;
    perspective: 1000px;
    position: relative;
}

.coach-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.coach-card:hover .coach-card-inner {
    transform: rotateY(180deg);
}

.coach-photo, .coach-info {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
}

.coach-photo {
    background-color: white;
}

.coach-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-info {
    background: white;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: rotateY(180deg);
}

.coach-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.coach-info p {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.coach-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.coach-social a {
    color: var(--secondary-color);
    transition: color 0.3s;
}

.coach-social a:hover {
    color: var(--primary-color);
}

.achievements {
    margin-top: 50px;
}

.achievement-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.achievement-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-color);
}

.achievement-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.achievement-card span {
    color: var(--highlight-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
    }
}