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

body{
  background:#f5f5f5;
}

header{
  background:#0d6efd;
  color:white;
  text-align:center;
  padding:25px;
}

nav{
  background:#084298;
  padding:15px;
  text-align:center;
}

nav a{
  color:white;
  text-decoration:none;
  margin:0 15px;
  font-weight:bold;
}

.hero{
  width:90%;
  margin:25px auto;
  background:white;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.hero img{
  width:100%;
  height:400px;
  object-fit:cover;
}

.hero-text{
  padding:20px;
}

.hero-text h2{
  color:#0d6efd;
  margin-bottom:10px;
}

button{
  margin-top:15px;
  padding:10px 18px;
  border:none;
  background:#0d6efd;
  color:white;
  border-radius:6px;
  cursor:pointer;
}

.news-container{
  width:90%;
  margin:20px auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.card{
  background:white;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.content{
  padding:15px;
}

.content h3{
  color:#0d6efd;
  margin-bottom:10px;
}

footer{
  background:#0d6efd;
  color:white;
  text-align:center;
  padding:15px;
  margin-top:30px;
}
