/* General styles remain unchanged */
* {
    margin: 0;
    padding: 0;
}

nav {
    position: fixed;
    z-index: 9999;
    width: 100%;
    margin-bottom: 100%;
}

.a {
    display: flex;
    height: 60px;
    background-color: #201c1b;
    color: #09aba0;
    padding: 10px;
    width: auto;
}

.c {
    padding-top: 15px;
    padding: 10px;
    align-items: center;
    margin-left: 27%;
}

.d {
    display: flex;
    background-color: #09aba0;
    width: auto;
    justify-content: center;
    padding: 5px;
    gap: 30px; 
}

.d ul li a {
    color: #201c1b;
    text-decoration: none;
}
.d ul a:hover{
    color: white;
    transform: scale(1.1);
}

ul {
    display: flex;
    flex-direction: row;
    list-style: none;
}

.d ul {
    gap: 30px;
}

/* Trainers Section */
.trainers {
    padding: 60px 20px;
    background-color: #201c1b;
    text-align: center;
}

.trainers h2 {
    color: #201c1b;
    font-size: 36px;
    margin-bottom: 40px;
}

.trainer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.trainer {
    background-color: #201c1b;
    border: 2px solid #09aba0;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 3px 5px 8px #09aba0;
}

.trainer img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.trainer h3 {
    color: #201c1b;
    font-size: 24px;
    margin-bottom: 10px;
}

.trainer p {
    color:#09aba0 ;
    font-size: 16px;
    line-height: 1.5;
}
body{
    background-color: #201c1b;
    font-family: Arial, Helvetica, sans-serif;
}
.aaaa{
    font-size: 30px;
}
@media (max-width:500px){
    .a{
        width:500px;
        height:60px;
        
    }
    .b{
        height:40px;
        
    }
    .aaaa{
        font-size: 20px;
    }
    .c{
        font-size: 15px;
        margin-left: 20px;
        margin-right: 0px;
        margin-bottom: 20px;
        flex-grow: inherit;
    }
}