*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f5f5f5;
}

/* HEADER */

.header{
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 40px;
background:#111;
color:#fff;
}

/* LOGO */

.logo{
display:flex;
align-items:center;
font-size:22px;
font-weight:bold;
gap:8px;
}

.logo i{
color:#00bcd4;
}

/* MENU */

.menu{
display:flex;
gap:25px;
}

.menu a{
text-decoration:none;
color:white;
font-size:16px;
transition:0.3s;
}

.menu a i{
margin-right:6px;
}

.menu a:hover{
color:#00bcd4;
}

/* BUTTON */

.consult-btn{
background:#00bcd4;
padding:10px 20px;
color:white;
text-decoration:none;
border-radius:5px;
}

.consult-btn:hover{
background:#0097a7;
}

/* MENU BUTTON */

.menu-btn{
display:none;
font-size:22px;
cursor:pointer;
}

/* HERO SECTION */

.hero{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
padding:80px 10%;
background:#f5f7fa;
}

.hero-text{
width:50%;
}

.hero-text h1{
font-size:48px;
margin-bottom:20px;
line-height:1.3;
}

.hero-text span{
color:#00bcd4;
}

.hero-text p{
font-size:18px;
color:#555;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
}

.btn-primary{
background:#00bcd4;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:6px;
}

.btn-secondary{
border:2px solid #00bcd4;
color:#00bcd4;
padding:12px 25px;
text-decoration:none;
border-radius:6px;
}

.hero-image{
width:50%;
text-align:right;
}

.hero-image img{
width:100%;
max-width:500px;
border-radius:10px;
}

/* MOBILE */

@media(max-width:900px){

.menu{
position:absolute;
top:70px;
left:-100%;
flex-direction:column;
background:#111;
width:100%;
text-align:center;
padding:20px 0;
transition:0.4s;
}

.menu a{
display:block;
padding:12px 0;
}

.menu.active{
left:0;
}

.menu-btn{
display:block;
}

.header-right{
display:none;
}

.hero{
flex-direction:column;
text-align:center;
}

.hero-text,
.hero-image{
width:100%;
}

.hero-buttons{
justify-content:center;
}

.hero-image{
text-align:center;
margin-top:30px;
}

}

/* WHY CHOOSE SECTION */

.why-section{
padding:100px 10%;
background:#ffffff;
text-align:center;
}

.why-header h2{
font-size:36px;
margin-bottom:10px;
}

.why-header span{
color:#00bcd4;
}

.why-header p{
color:#666;
margin-bottom:50px;
}

/* GRID */

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

/* CARD */

.why-card{
background:#f7f9fc;
padding:35px 20px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.why-card:hover{
transform:translateY(-8px);
}

.why-card i{
font-size:35px;
color:#00bcd4;
margin-bottom:15px;
}

.why-card h4{
font-size:16px;
}

/* TABLET */

@media(max-width:900px){

.why-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media(max-width:500px){

.why-grid{
grid-template-columns:1fr;
}

}