*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}


body{
background:white;
color:black;
}


.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:#141414;
}


.navbar .logo{
font-size:22px;
font-weight:bold;
}


.navbar a{
color:#ccc;
margin-left:20px;
text-decoration:none;
}


.navbar a.active,
.navbar a:hover{
color:#00c2ff;
}


.hero{
padding:60px 40px;
background:linear-gradient(135deg,#00c2ff,#005bea);
color:#000;
}


.hero h1{
font-size:36px;
margin-bottom:15px;
}


.content{
max-width:1000px;
margin:50px auto;
padding:0 30px;
}


.content section{
margin-bottom:40px;
}


.content h2{
color:#00c2ff;
margin-bottom:12px;
}


.content p,
.content li{
line-height:1.7;
color:black;
}


.content ul,
.content ol{
margin-left:20px;
}

.main-footer{
  background:linear-gradient(180deg,#0b3aa8,#0a2f86);
  color:#fff;
  font-family:Arial, Helvetica, sans-serif;
}

/* Top strip */
.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 8%;
  background:#1e63f0;
  font-size:14px;
}

.explore-btn{
  color:#fff;
  text-decoration:underline;
  font-weight:bold;
}

/* Units Section */
.footer-units{
  padding:50px 8%;
}

.footer-units h2{
  font-size:22px;
  margin-bottom:25px;
}

.unit-card{
  background:rgba(255,255,255,0.12);
  border-radius:16px;
  padding:25px;
  margin-bottom:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition:.3s;
}

.unit-card:hover{
  background:rgba(255,255,255,0.22);
  transform:translateY(-4px);
}

.unit-card h3{
  font-size:20px;
  margin-bottom:5px;
}

.unit-card span{
  font-size:14px;
  opacity:.9;
}

.unit-card a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  border-bottom:1px solid #fff;
}

/* Footer Links */
.footer-links{
  padding:20px 8%;
  border-top:1px solid rgba(255,255,255,0.3);
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#fff;
  text-decoration:underline;
  font-size:14px;
}

/* Bottom Section */
.footer-bottom{
  padding:30px 8%;
  text-align:center;
}

.footer-bottom p{
  margin-bottom:20px;
  font-size:14px;
  opacity:.9;
}

.badges{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.badge{
  background:#fff;
  color:#0b3aa8;
  padding:12px 20px;
  border-radius:10px;
  font-size:13px;
  font-weight:bold;
  text-align:center;
  min-width:120px;
}
