* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #1e3a8a;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.coach-section {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.coach-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.coach-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.coach-details h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.achievements {
    text-align: center;
}

.slider-container {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slider img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    margin: 0 1rem;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
}

.prev { left: 1rem; }
.next { right: 1rem; }

.schedule {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.schedule-details {
    margin-top: 1rem;
    font-size: 1.2rem;
}

.location {
    text-align: center;
}

.map {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

footer {
    background-color: #1e3a8a;
    color: white;
    padding: 2rem;
    margin-top: 3rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.social-links a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.social-links a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .coach-info {
        flex-direction: column;
        text-align: center;
    }
    
    .coach-image img {
        width: 200px;
        height: 200px;
    }
}