<style>
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
}
*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif}
html{scroll-behavior:smooth}
body{background:#eef2f7;color:#333;}

/* HEADER */
header{
background:linear-gradient(135deg,#0f4c75,#3282b8);
padding:22px 25px;
color:#fff;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:1000;
transition:transform 0.4s ease, opacity 0.4s ease;
}

header.hide{
transform:translateY(-100%);
opacity:0;
}

header.show{
transform:translateY(0);
opacity:1;
}

header h1{font-size:20px;display:flex;align-items:center;gap:10px}

/* LOGO */
.logo{
  height:40px;
  width:auto;
  border-radius:6px;
}

/* NAVIGATION */
.nav-container{
display:flex;
align-items:center;
}

nav{
display:flex;
gap:20px;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:500;
font-size:14px;
position:relative;
padding:5px 0;
}

nav a::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:0%;
height:2px;
background:#fff;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}

/* HAMBURGER */
.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
}

.menu-toggle span{
height:3px;
width:25px;
background:#fff;
margin:4px 0;
display:block;
}

/* MOBILE NAV */
@media(max-width:768px){
nav{
position:absolute;
top:60px;
left:0;
width:100%;
background:#0f4c75;
flex-direction:column;
align-items:center;
display:none;
padding:15px 0;
}

nav.active{
display:flex;
}

.menu-toggle{
display:flex;
}
}

/* HERO */
.hero{
background:linear-gradient(120deg,#dbeafe,#f0f9ff);
padding:40px 20px;
text-align:center;
border-bottom-left-radius:40px;
border-bottom-right-radius:40px;
}

.hero-content{
margin-bottom:20px;
}

.hero-image img{
width:100%;
max-height:300px;
object-fit:cover;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
}
.hero h2{font-size:36px;color:#0f4c75}
.hero p{margin-top:10px;font-size:15px;color:#555}

/* CONTAINER */
.container{
display:grid;
grid-template-columns:2fr 1fr;
gap:20px;
padding:30px 20px;
}

.card{
background:#fff;
padding:20px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.07);
transition:0.3s;
}
.card:hover{transform:translateY(-5px)}
.card h3{margin-bottom:10px;color:#0f4c75}

/* ISSUE SECTION */
.issue-grid{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:20px;
  align-items:center;
  margin-bottom:25px;
  background:#ffffff;
  padding:20px;
  border-radius:15px;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.issue-image img{
  width:100%;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.issue-info p{
  margin-bottom:8px;
  font-size:14px;
  color:#555;
}

@media(max-width:768px){
  .issue-grid{
    grid-template-columns:1fr;
    text-align:center;
  }
}

.btn{
display:inline-block;
margin-top:12px;
padding:10px 16px;
background:linear-gradient(135deg,#3282b8,#0f4c75);
color:#fff;
border-radius:8px;
text-decoration:none;
font-size:14px;
}
.btn:hover{opacity:0.9}

.sidebar .card{margin-bottom:15px}

/* FOOTER */
footer{
background:#0f4c75;
color:#fff;
text-align:center;
padding:15px;
margin-top:30px;
font-size:14px;
}

/* MOBILE RESPONSIVE */
@media(max-width:900px){
.container{
grid-template-columns:1fr;
}
.hero h2{font-size:28px}
}

@media(max-width:500px){
header h1{font-size:16px}
nav a{font-size:12px}
.hero{padding:40px 15px}
.hero h2{font-size:24px}
}
.footer{
    background: #0d5c99;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 30px;
}

.footer-container{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-box{
    flex: 1;
    min-width: 250px;
}

.footer-box h3{
    margin-bottom: 15px;
}

.footer-box p{
    margin-bottom: 10px;
}

.footer-bottom{
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 30px;
    padding-top: 20px;
}

@media (max-width: 768px){
    .footer-container{
        flex-direction: column;
    }

    .footer-box{
        width: 100%;
    }
}

.footer {
    background: #1f2a35;
    color: #ddd;
    padding-top: 40px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
    align-items: flex-start;
}

.footer-box {
    width: calc(33.33% - 14px);
    padding: 10px;
    transition: all 0.3s ease;
}

/* Clean hover */
.footer-box:hover {
    transform: translateY(-6px);
    color: #fff;
}

/* Heading underline animation */
.footer-box h3 {
    margin-bottom: 10px;
    position: relative;
}

.footer-box h3::after {
    content: "";
    width: 0;
    height: 2px;
    background: #1DA1F2;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.footer-box:hover h3::after {
    width: 100%;
}

/* Text hover subtle effect */
.footer-box p {
    margin: 6px 0;
    transition: 0.3s;
}

.footer-box p:hover {
    color: #1DA1F2;
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    background: #162029;
    margin-top: 20px;
    font-size: 14px;
    color: #bbb;
}

/* Tablet View */
@media (max-width: 900px) {
    .footer-box {
        width: calc(50% - 10px);
    }
}

/* Mobile View */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-box {
        width: 100%;
    }
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  display: inline-block;
  padding: 8px 12px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 150px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  color: black !important;
  padding: 10px;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #f2f2f2;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.information-card {
  padding: 20px;
}

.information-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.information-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #1f6fa5, #15507a);
  color: #fff;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.information-links a::after {
  content: "›";
  font-size: 18px;
  font-weight: bold;
}

.information-links a:hover {
  background: linear-gradient(135deg, #15507a, #103d5d);
  transform: translateX(5px);
}
</style>
