.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;
}

.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);
    margin-bottom: 5px;
}

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

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

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

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

.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);
}

.achievement-card h3 {
    color: var(--primary);
    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;
    }
}