/*=====================================
   GLOBAL STYLES
======================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

:root{

--primary:#2563eb;
--secondary:#1e40af;
--dark:#0f172a;
--light:#ffffff;
--gray:#64748b;
--bg:#f8fbff;
--border:#e5e7eb;
--success:#22c55e;

--shadow:0 10px 30px rgba(0,0,0,.08);

}

body{

font-family:'Poppins',sans-serif;
background:var(--bg);
color:var(--primary);
line-height:1.8;
overflow-x:hidden;

}

img{

/*width:100%;*/
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

.container{

width:90%;
max-width:1200px;
margin:auto;

}

section{

padding:100px 0;

}

h1,h2,h3,h4{

font-weight:700;
line-height:1.3;

}

p{

color:var(--gray);

}

/*=====================================
HEADER
======================================*/

header{

position:fixed;
top:0;
left:0;
width:100%;
background:#fff;
box-shadow:0 2px 15px rgba(0,0,0,.05);
z-index:999;

}

header .container{

display:flex;
justify-content:space-between;
align-items:center;
height:110px;

}

.logo h2{

color:var(--primary);
font-size:30px;
font-weight:800;

}
.logo h4{

color:var(--secondary);
font-size:20px;
font-weight:800;

}

nav ul{

display:flex;
gap:35px;

}

nav ul li a{

color:var(--dark);
font-weight:500;
transition:.3s;

}

nav ul li a:hover{

color:var(--primary);

}

.menu-btn{

display:none;
font-size:28px;
cursor:pointer;
color:var(--primary);

}

/*=====================================
HERO
======================================*/

.hero{

padding-top:170px;
padding-bottom:120px;
background:linear-gradient(135deg,#eff6ff,#ffffff);

}

.hero-grid{

display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:70px;

}

.hero-text h4{

color:var(--primary);
font-size:18px;
letter-spacing:2px;
margin-bottom:15px;

}

.hero-text h1{

font-size:60px;
font-weight:800;
margin-bottom:15px;

}

.hero-text h2{

font-size:36px;
color:var(--primary);
coach-wrapper-bottom:25px;

}

.hero-text p{

font-size:18px;
max-width:550px;
margin-bottom:35px;

}

/*=====================================
BUTTONS
======================================*/

.hero-buttons{

display:flex;
gap:20px;
flex-wrap:wrap;

}

.btn{

display:inline-block;
background:var(--primary);
color:#fff;
padding:16px 34px;
border-radius:12px;
font-weight:600;
transition:.3s;
box-shadow:var(--shadow);

}

.btn:hover{

background:var(--secondary);
transform:translateY(-3px);

}

.btn-outline{

display:inline-block;
padding:16px 34px;
border:2px solid var(--primary);
color:var(--primary);
border-radius:12px;
font-weight:600;
transition:.3s;

}

.btn-outline:hover{

background:var(--primary);
color:#fff;

}

/*=====================================
HERO IMAGE
======================================*/

.hero-image{

text-align:center;

}

.hero-image img{

max-width:320px;
margin:auto;
animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}

/*=====================================
SECTION TITLES
======================================*/

section h2{

font-size:42px;
text-align:center;
margin-bottom:20px;

}

.section-subtitle{

text-align:center;
max-width:700px;
margin:auto;
margin-bottom:60px;
color:var(--gray);

}

/*=====================================
MOBILE MENU
======================================*/

@media(max-width:991px){

.menu-btn{

display:block;

}

nav{

position:absolute;
top:80px;
left:-100%;
width:100%;
background:#fff;
transition:.4s;
box-shadow:0 10px 20px rgba(0,0,0,.08);

}

nav.active{

left:0;

}

nav ul{

flex-direction:column;
padding:30px;
gap:20px;

}

.hero-grid{

grid-template-columns:1fr;
text-align:center;

}

.hero-text p{

margin:auto;
margin-bottom:35px;

}

.hero-buttons{

justify-content:center;

}

.hero{

padding-top:140px;

}

.hero-text h1{

font-size:46px;

}

.hero-text h2{

font-size:30px;

}

}

@media(max-width:600px){

.hero-text h1{

font-size:36px;

}

.hero-text h2{

font-size:24px;

}

.hero-text p{

font-size:16px;

}

.btn,
.btn-outline{

width:100%;
text-align:center;

}

section{

padding:70px 0;

}

section h2{

font-size:32px;

}

}
<!--Part 2 of your style.css -->

/*=====================================
ABOUT SECTION
======================================*/

.section-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;

}

.section-grid img{

border-radius:20px;
box-shadow:var(--shadow);

}

.section-grid h2{

text-align:left;
margin-bottom:15px;

}

.section-grid h3{

font-size:30px;
color:var(--primary);
margin-bottom:10px;

}

.section-grid p{

margin-bottom:20px;
font-size:17px;

}

/*=====================================
PROBLEMS SECTION
======================================*/

.problems{

background:#eef5ff;

}

.problems h2{

margin-bottom:60px;

}

.cards{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.card{

background:#fff;
padding:40px 25px;
border-radius:20px;
text-align:center;
box-shadow:var(--shadow);
transition:.35s;

}

.card:hover{

transform:translateY(-10px);
box-shadow:0 20px 40px rgba(37,99,235,.15);

}

.card i{

font-size:55px;
color:var(--primary);
margin-bottom:20px;

}

.card h3{

font-size:22px;
margin-bottom:10px;

}

.card p{

font-size:15px;

}

/*=====================================
PROGRAM SECTION
======================================*/

#program{

background:#fff;

}

.program-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;

}

.program-grid div{

background:linear-gradient(135deg,#2563eb,#1e40af);
padding:45px 30px;
border-radius:20px;
text-align:center;
color:#fff;
transition:.3s;
box-shadow:var(--shadow);

}

.program-grid div:hover{

transform:translateY(-8px);

}

.program-grid h3{

font-size:30px;
margin-bottom:15px;

}

.program-grid p{

color:#fff;
font-size:18px;
line-height:1.8;

}

/*=====================================
WEBINAR SECTION
======================================*/

#webinar{

background:linear-gradient(135deg,#1e3a8a,#2563eb);
text-align:center;
color:#fff;

}

#webinar h2{

color:#fff;
font-size:48px;
margin-bottom:25px;

}

#webinar p{

max-width:750px;
margin:auto;
font-size:20px;
color:#e2e8f0;
margin-bottom:40px;

}

#webinar .btn{

background:#22c55e;
color:#fff;
font-size:18px;

}

#webinar .btn:hover{

background:#16a34a;

}

#register .btn{

background:#22c55e;
color:#fff;
font-size:18px;
text-align:center;

}

#register .btn:hover{

background:#16a34a;

}
/*=====================================
SECTION SPACING
======================================*/

#about,
#program,
#webinar{

position:relative;

}

/*=====================================
HOVER EFFECTS
======================================*/

.card,
.program-grid div{

cursor:pointer;

}

.card:hover i{

transform:scale(1.15);
transition:.3s;

}

/*=====================================
RESPONSIVE
======================================*/

@media(max-width:991px){

.section-grid{

grid-template-columns:1fr;
text-align:center;

}

.section-grid h2{

text-align:center;

}

.cards{

grid-template-columns:repeat(2,1fr);

}

.program-grid{

grid-template-columns:1fr;

}

#webinar h2{

font-size:38px;

}

#webinar p{

font-size:18px;

}

}

@media(max-width:600px){

.cards{

grid-template-columns:1fr;

}

.card{

padding:30px 20px;

}

.program-grid div{

padding:35px 20px;

}

.program-grid h3{

font-size:26px;

}

.program-grid p{

font-size:17px;

}

#webinar h2{

font-size:30px;

}

#webinar p{

font-size:16px;

}

}
<!--Part 3 of your style.css-->



/*=====================================
TESTIMONIALS SECTION
======================================*/

#testimonials{

background:#f8fbff;

}

#testimonials h2{

margin-bottom:60px;

}

.testimonial{

background:#fff;
padding:35px;
border-radius:20px;
box-shadow:var(--shadow);
text-align:center;
transition:.35s;

}

.testimonial:hover{

transform:translateY(-8px);
box-shadow:0 20px 40px rgba(37,99,235,.15);

}

.testimonial p{

font-size:17px;
margin:20px 0;
font-style:italic;

}

.testimonial h4{

color:var(--primary);
font-size:18px;

}

/*=====================================
CONTACT SECTION
======================================*/

#contact{

background:#eef5ff;

}

#contact h2{

margin-bottom:50px;

}

form{

max-width:700px;
margin:auto;
background:#fff;
padding:50px;
border-radius:20px;
box-shadow:var(--shadow);

}

form input,
form textarea{

width:100%;
padding:18px;
margin-bottom:20px;
border:1px solid #d1d5db;
border-radius:12px;
font-size:16px;
font-family:'Poppins',sans-serif;
transition:.3s;
background:#fff;

}

form input:focus,
form textarea:focus{

outline:none;
border-color:var(--primary);
box-shadow:0 0 10px rgba(37,99,235,.15);

}

form textarea{

height:180px;
resize:none;

}

form button{

width:100%;
background:var(--primary);
color:#fff;
border:none;
padding:18px;
font-size:18px;
font-weight:600;
border-radius:12px;
cursor:pointer;
transition:.3s;

}

form button:hover{

background:var(--secondary);

}

/*=====================================
FOOTER
======================================*/

footer{

background:#0f172a;
color:#fff;
padding:35px 20px;
text-align:center;

}

footer p{

color:#cbd5e1;
font-size:15px;

}

/*=====================================
SOCIAL ICONS
======================================*/

.social-icons{

display:flex;
justify-content:center;
gap:18px;
margin-top:25px;

}

.social-icons a{

width:48px;
height:48px;
background:#2563eb;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:20px;
transition:.3s;

}

.social-icons a:hover{

background:#1e40af;
transform:translateY(-5px);

}

/*=====================================
WHATSAPP BUTTON
======================================*/

.whatsapp{

position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25D366;
color:#fff;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:34px;
box-shadow:0 10px 30px rgba(0,0,0,.25);
z-index:999;
transition:.3s;

}

.whatsapp:hover{

transform:scale(1.1);

}

/*=====================================
SCROLL TO TOP BUTTON
======================================*/

#topBtn{

position:fixed;
bottom:100px;
right:25px;
width:55px;
height:55px;
background:var(--primary);
color:#fff;
border:none;
border-radius:50%;
cursor:pointer;
display:none;
font-size:20px;
box-shadow:var(--shadow);
transition:.3s;
z-index:999;

}

#topBtn:hover{

background:var(--secondary);

}

/*=====================================
FADE ANIMATION
======================================*/

.fade-up{

opacity:0;
transform:translateY(40px);
transition:all .8s ease;

}

.fade-up.active{

opacity:1;
transform:translateY(0);

}

/*=====================================
RESPONSIVE
======================================*/

@media(max-width:991px){

form{

padding:35px;

}

.testimonial{

padding:30px;

}

.whatsapp{

width:60px;
height:60px;
font-size:30px;

}

}

@media(max-width:600px){

form{

padding:25px;

}

form input,
form textarea{

padding:15px;
font-size:15px;

}

form button{

padding:16px;
font-size:17px;

}

footer{

padding:25px 15px;

}

footer p{

font-size:14px;

}

.social-icons{

gap:12px;

}

.social-icons a{

width:42px;
height:42px;
font-size:18px;

}

.whatsapp{

width:55px;
height:55px;
font-size:28px;
right:18px;
bottom:18px;

}

}


<!--Part 4 of your style.css-->


/* ===========================
   TESTIMONIALS
=========================== */

.testimonials{
    padding:90px 0;
    background:#f8fbff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:50px;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    position:relative;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card::before{
    content:"★★★★★";
    color:#fbbf24;
    font-size:18px;
    display:block;
    margin-bottom:15px;
}

.testimonial-card p{
    color:#475569;
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#1e293b;
    font-size:18px;
}

.testimonial-card span{
    color:#2563eb;
    font-size:14px;
}

/* ===========================
   FINAL CTA
=========================== */

.final-cta{
    padding:100px 20px;
    background:linear-gradient(135deg,#2563eb,#0f172a);
    color:#fff;
    text-align:center;
}

.final-cta h2{
    font-size:46px;
    margin-bottom:20px;
}

.final-cta p{
    font-size:20px;
    max-width:850px;
    margin:auto;
    color:#dbeafe;
}

.final-cta .btn{
    margin-top:40px;
}

/* ===========================
   FAQ SECTION
=========================== */

.faq{
    padding:90px 0;
    background:#ffffff;
}

.faq-item{
    background:#fff;
    border-radius:15px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.faq-question{
    padding:20px 25px;
    cursor:pointer;
    background:#eff6ff;
    font-size:18px;
    font-weight:600;
    color:#1e293b;
}

.faq-answer{
    padding:20px 25px;
    display:none;
    color:#475569;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    display:block;
}

/* ===========================
   CONTACT
=========================== */

.contact{
    padding:90px 0;
    background:#f8fbff;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;
}

.contact-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-box i{
    font-size:45px;
    color:#2563eb;
    margin-bottom:20px;
}

.contact-box h3{
    margin-bottom:10px;
    color:#1e293b;
}

.contact-box p{
    color:#64748b;
}

.contact-box a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#0f172a;
    color:#cbd5e1;
    padding:60px 20px 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    margin-bottom:40px;
}

.footer-logo{
    font-size:28px;
    font-weight:700;
    color:#fff;
}

.footer-links{
    list-style:none;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#ffffff;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#1e293b;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#2563eb;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:20px;
    text-align:center;
    font-size:14px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

.hero h1{
    font-size:42px;
}

.section-title{
    font-size:34px;
}

.final-cta h2{
    font-size:34px;
}

}

@media(max-width:768px){

.nav-links{
    display:none;
}

.hero{
    padding:120px 20px 80px;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:18px;
}

.section-title{
    font-size:28px;
}

.btn{
    width:100%;
    text-align:center;
}

.cards,
.secret-grid,
.bonus-grid,
.testimonial-grid,
.contact-grid,
.footer-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:480px){

.hero h1{
    font-size:30px;
}

.section-title{
    font-size:24px;
}

.final-cta h2{
    font-size:28px;
}

}

.coach-wrapper {
	display:flex;
	
}

.coach-image {
	flex:1;

}

.coach-content {
	flex:1;
}