body{
font-family:Arial, Helvetica, sans-serif;
margin:0;
color:#333;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

header{
background:#0b3c5d;
color:white;
padding:12px 0;
}

.nav-container{
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
height:60px;
}

.nav-links{
list-style:none;
display:flex;
gap:20px;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:bold;
}

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}


.hero{
background-image:url("images/background.png");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
min-height:550px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
padding:80px 20px;
}

.hero h1{
font-size:50px;
margin-bottom:10px;
}

.btn{
background:#f4a900;
padding:12px 25px;
color:white;
text-decoration:none;
border-radius:4px;
display:inline-block;
margin-top:15px;
}

section{
padding:60px 0;
}

.services{
background:#f7f7f7;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.service-card{
background:white;
padding:25px;
border-radius:6px;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.coach-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.coach-card{
text-align:center;
}

.coach-photo{
width:200px;
height:200px;
border-radius:50%;
margin:0 auto 15px auto;
overflow:hidden;
}

.coach-photo img{
width:100%;
height:100%;
object-fit:cover;
}

.pricing{
background:#f7f7f7;
}

.pricing-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.price-card{
background:white;
padding:25px;
text-align:center;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.price{
font-size:28px;
font-weight:bold;
color:#0b3c5d;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

form input,
form textarea{
width:100%;
padding:10px;
margin-bottom:10px;
border:1px solid #ccc;
}

#message{
height:160px;
resize:vertical;
}

footer{
background:#0b3c5d;
color:white;
text-align:center;
padding:20px;
}

.socials i{
color:white;
font-size:26px;
margin:0 12px;
transition:color 0.3s ease, transform 0.2s ease;
cursor:pointer;
}

.socials i:hover{
color:#f4a900;
transform:scale(1.2);
}

@media(max-width:768px){

.nav-links{
display:none;
flex-direction:column;
background:#0b3c5d;
position:absolute;
right:0;
top:70px;
width:200px;
padding:20px;
}

.nav-links.show{
display:flex;
}

.menu-toggle{
display:block;
}

.contact-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:36px;
}

}