*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
background:#F5F7FA;
color:#1A1A1A;
line-height:1.6;
}

.container{
width:92%;
max-width:1280px;
margin:auto;
}

/* =========================
HEADER
========================= */

header{
background:#FFFFFF;
border-bottom:1px solid #E5E7EB;
position:sticky;
top:0;
z-index:100;
}

.nav{
display:flex;
justify-content:center;
align-items:center;
gap:40px;
min-height:110px;
}

.logo{
height:95px;
width:auto;
}

/* =========================
MENU
========================= */

nav{
display:flex;
align-items:center;
gap:35px;
}

nav a{
color:#1A1A1A;
text-decoration:none;
font-weight:600;
font-size:1rem;
transition:.3s;
}

nav a:hover

/* =========================
HERO
========================= */

.hero{
padding:80px 0;
background:
linear-gradient(
180deg,
#FFFFFF,
#F5F7FA
);
}

.hero .container{
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
}

.hero h1{
max-width:1000px;
font-size:3rem;
line-height:1.2;
margin-bottom:25px;
color:#111827;
font-weight:700;
}

.hero p{
max-width:780px;
color:#4B5563;
font-size:1.05rem;
line-height:1.9;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
justify-content:center;
}

.btn{
display:inline-block;
background:#00AEEF;
color:#FFFFFF;
text-decoration:none;
padding:16px 34px;
border-radius:8px;
font-weight:600;
box-shadow:0 10px 25px rgba(0,174,239,.20);
transition:.3s;
}

.btn:hover{
opacity:.95;
}

/* =========================
SERVICES
========================= */

.services{
padding:40px 0 90px;
}

.services h2{
text-align:center;
font-size:2.1rem;
margin-bottom:50px;
color:#111827;
font-weight:700;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
gap:28px;
}

.card{
background:#FFFFFF;
border:1px solid #E5E7EB;
border-radius:14px;
padding:35px;
transition:all .3s ease;
box-shadow:0 5px 15px rgba(0,0,0,.04);
}

.card:hover{
border-color:#00AEEF;
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.card h3{
margin-bottom:15px;
color:#111827;
font-size:1.25rem;
font-weight:700;
}

.card p{
color:#4B5563;
line-height:1.8;
}

/* =========================
FOOTER
========================= */

footer{
background:#111827;
text-align:center;
padding:60px 20px;
}

.footer-brand{
font-size:1.5rem;
font-weight:600;
letter-spacing:.5px;
color:#FFFFFF;
margin-bottom:15px;
}

footer p{
color:#D1D5DB;
margin-bottom:12px;
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

```
.nav{
    flex-direction:column;
    gap:15px;
    padding:20px 0;
}

.logo{
    height:70px;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.hero h1{
    font-size:2.2rem;
}

.hero p{
    font-size:1rem;
}

.grid{
    grid-template-columns:1fr;
}
```

}
/* HERO V2 */

.hero{
    padding:80px 0;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.hero-left{
    flex:1;
}

.hero-left h1{
    font-size:3.2rem;
    line-height:1.2;
    margin-bottom:25px;
    color:#0f172a;
    text-align:left;
}

.hero-left p{
    font-size:1.15rem;
    line-height:1.8;
    margin-bottom:30px;
    color:#475569;
    text-align:left;
}

.hero-right{
    flex:1;
}

.hero-image{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

@media(max-width:900px){

    .hero-content{
        flex-direction:column;
    }

    .hero-left h1,
    .hero-left p{
        text-align:center;
    }

    .hero-left{
        text-align:center;
    }

}.page-section{
    padding:80px 0;
    min-height:60vh;
}

.page-section h1{
    font-size:2.8rem;
    margin-bottom:25px;
}

.page-section h3{
    margin-top:30px;
    margin-bottom:10px;
    color:#0F4C81;
}

.page-section p{
    font-size:1.05rem;
    line-height:1.9;
    margin-bottom:20px;
}