*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Segoe UI",Arial,sans-serif;
}

body{
background:#ffffff;
color:#333;
min-height:100vh;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:white;
border-bottom:1px solid #e5e5e5;
flex-wrap:wrap;
}

.logo{
font-size:24px;
font-weight:600;
color:#0066a4;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

nav a{
margin:0 15px;
text-decoration:none;
color:#008676;
font-weight:500;
transition:0.2s;
}

nav a:hover{
color:#0066a4;
}

/* LOGIN BUTTON */

.login-btn a{
padding:10px 18px;
background:#008676;
color:white;
border-radius:25px;
text-decoration:none;
font-weight:500;
}

/* HERO */

.hero{
display:flex;
align-items:center;
justify-content:center;
text-align:center;
min-height:25vh;
padding:30px 20px;
}

.hero-content{
max-width:800px;

}

.hero-content h1{
font-size:42px;
margin-bottom:20px;
color:#0066a4;
}

.hero-content p{
font-size:18px;
margin-bottom:30px;
line-height:1.6;
color:#555;
}

/* BUTTONS */

.hero-buttons{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
}

.hero-buttons a{
text-decoration:none;
padding:14px 28px;
border-radius:30px;
font-weight:500;
}

.primary-btn{
background:#0066a4;
color:white;
}

.secondary-btn{
border:2px solid #0066a4;
color:#0066a4;
}

/* FEATURES */

.features{
display:flex;
justify-content:center;
gap:30px;
padding:60px 40px;
flex-wrap:wrap;
}

.feature-card{
background:#0066a4;
color:white;
padding:30px;
border-radius:10px;
width:280px;
text-align:center;
transition:0.25s;
}

.feature-card:hover{
transform:translateY(-5px);
}

.feature-card h3{
margin-bottom:15px;
}

/* FOOTER */

footer{
text-align:center;
padding:25px;
color:#777;
border-top:1px solid #eee;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width:900px){

.hero-content h1{
font-size:36px;
}

}

@media (max-width:600px){

.navbar{
flex-direction:column;
gap:15px;
text-align:center;
}

nav{
flex-direction:column;
gap:10px;
}

.hero-content h1{
font-size:30px;
}

.hero-content p{
font-size:16px;
}

.features{
padding:40px 20px;
}

.feature-card{
width:100%;
max-width:350px;
}

}