*{
box-sizing:border-box;
margin:0;
padding:0;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial,sans-serif;
background:#f5fbff;
color:#0f2a44;
line-height:1.6;
overflow-x:hidden;
}

/* NAVIGATION */

nav{
background:white;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:999;
width:100%;
}

.nav-container{
max-width:1150px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 20px;
}

.nav-logo{
font-size:24px;
font-weight:bold;
text-decoration:none;
color:#0077cc;
}

.menu{
display:flex;
gap:24px;
align-items:center;
}

.menu a{
text-decoration:none;
font-weight:bold;
color:#0f2a44;
transition:0.2s;
}

.menu a:hover{
color:#0077cc;
}

.hamburger{
display:none;
background:none;
border:none;
font-size:30px;
cursor:pointer;
color:#0077cc;
}

/* LANGUAGE BUTTON */

.language-toggle{
position:fixed;
top:80px;
right:15px;
z-index:999;
background:white;
color:#0077cc;
border:none;
padding:10px 16px;
border-radius:10px;
font-weight:bold;
box-shadow:0 4px 12px rgba(0,0,0,0.15);
cursor:pointer;
transition:0.2s;
}

.language-toggle:hover{
transform:translateY(-2px);
}

/* HERO */

header{
background:linear-gradient(135deg,#0077cc,#00c897);
color:white;
padding:60px 20px 90px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
}

.logo-wrapper{
margin-bottom:22px;
}

.logo{
width:170px;
background:white;
padding:10px;
border-radius:22px;
box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

header h1{
font-size:48px;
margin-bottom:18px;
max-width:900px;
}

header p{
font-size:19px;
max-width:760px;
}

.hero-btn{
display:inline-block;
margin-top:30px;
padding:16px 34px;
background:white;
color:#0077cc;
border-radius:10px;
text-decoration:none;
font-weight:bold;
font-size:18px;
transition:0.2s;
}

.hero-btn:hover{
background:#f0f0f0;
transform:translateY(-2px);
}

/* GENERAL */

.container{
max-width:1150px;
margin:auto;
padding:30px 20px;
}

.section{
margin-top:75px;
text-align:center;
}

.section h2{
font-size:34px;
margin-bottom:14px;
color:#0f2a44;
}

.highlight{
font-size:18px;
max-width:780px;
margin:15px auto;
color:#2b4a66;
}

/* CARDS */

.pricing{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
margin-top:40px;
}

.card{
background:white;
border-radius:20px;
padding:28px;
width:320px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.25s ease;
}

.card:hover{
transform:translateY(-6px);
}

.featured{
border:3px solid #00c897;
}

.preview{
width:100%;
border-radius:14px;
margin-bottom:16px;
}

.price{
font-size:38px;
color:#00c897;
margin:12px 0;
font-weight:bold;
}

.btn{
display:inline-block;
margin-top:18px;
padding:14px 28px;
background:#0077cc;
color:white;
border-radius:10px;
text-decoration:none;
font-weight:bold;
transition:0.2s;
}

.btn:hover{
background:#005fa3;
}

/* INCLUDED LIST */

.includes{
text-align:left;
margin-top:20px;
padding-top:15px;
border-top:1px solid #dbe7f1;
}

.includes h4{
margin-bottom:12px;
color:#0077cc;
font-size:18px;
}

.includes p{
margin:8px 0;
font-size:15px;
}

/* ONLINE COACHING */

.online-box{
background:white;
border-radius:20px;
padding:34px;
max-width:950px;
margin:35px auto 0;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.online-steps{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:22px;
margin-top:28px;
}

.step{
background:#f5fbff;
border-radius:16px;
padding:24px;
width:260px;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.step h3{
color:#0077cc;
margin-bottom:10px;
}

/* FAQ */

.faq-box{
background:white;
border-radius:20px;
padding:34px;
max-width:950px;
margin:35px auto 0;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
text-align:left;
}

.faq-item{
padding:20px 0;
border-bottom:1px solid #dbe7f1;
}

.faq-item:last-child{
border-bottom:none;
}

.faq-item h3{
color:#0077cc;
margin-bottom:10px;
font-size:21px;
}

.faq-item p{
color:#2b4a66;
font-size:16px;
}

/* CONTACT */

.contact-box{
background:white;
border-radius:20px;
padding:34px;
max-width:850px;
margin:35px auto 0;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.contact-links{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:18px;
margin-top:24px;
}

.contact-link{
display:inline-block;
padding:14px 28px;
background:#0077cc;
color:white;
text-decoration:none;
border-radius:10px;
font-weight:bold;
transition:0.2s;
}

.contact-link:hover{
background:#005fa3;
}

/* CALENDAR */

.calendar{
margin-top:35px;
background:white;
padding:22px;
border-radius:18px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

iframe{
width:100%;
height:550px;
border:none;
border-radius:14px;
}

/* FOOTER */

footer{
margin-top:70px;
padding:28px;
background:#081c2f;
color:white;
font-size:15px;
text-align:center;
}

/* MOBILE */

@media(max-width:768px){

.hamburger{
display:block;
}

.menu{
display:none;
flex-direction:column;
position:absolute;
top:70px;
right:20px;
background:white;
padding:20px;
width:230px;
border-radius:14px;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.menu.active{
display:flex;
}

header{
padding:50px 16px 70px;
}

.logo{
width:140px;
}

header h1{
font-size:36px;
}

header p{
font-size:16px;
}

.hero-btn{
font-size:16px;
padding:14px 28px;
}

.section{
margin-top:60px;
}

.section h2{
font-size:28px;
}

.highlight{
font-size:16px;
}

.pricing{
gap:22px;
}

.card{
width:100%;
max-width:350px;
padding:24px;
}

.price{
font-size:34px;
}

.online-box,
.faq-box,
.contact-box{
padding:24px;
}

.step{
width:100%;
max-width:320px;
}

iframe{
height:420px;
}

.language-toggle{
top:72px;
padding:9px 14px;
font-size:14px;
}

}