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

body{

    font-family:Arial, Helvetica, sans-serif;
    background:#f5f7fb;
    color:#333;
    line-height:1.6;

}


.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #333;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.nav-bar {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px;
}

.nav-row a {
  text-decoration: none;
  color: white;
 /* background-color: #555;
  padding: 12px 18px;
  border-radius: 5px;*/
  transition: 0.3s;
}

.nav-row a:hover {
  background-color: #1E2294;
}





.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

header{

    background:#0b1d39;
    color:white;
    padding:60px 0;
    text-align:center;

}

header h1{

    font-size:3rem;
    margin-bottom:10px;

}

header p{

    font-size:1.2rem;
    color:#d6d6d6;

}

.featured-news{

    display:grid;
    grid-template-columns:1fr 1fr;
    background:white;
    margin:50px 0;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.featured-news img{

    width:100%;
    height:100%;
    object-fit:cover;

}

.featured-content{

    padding:40px;

}

.category{

    background:#0077ff;
    color:white;
    padding:6px 14px;
    border-radius:20px;
    font-size:.8rem;
    display:inline-block;
    margin-bottom:20px;

}

.featured-content h2{

    margin-bottom:10px;
    font-size:2rem;

}

.date{

    color:#888;
    margin-bottom:20px;

}

.button{

    display:inline-block;
    margin-top:25px;
    background:#0b1d39;
    color:white;
    text-decoration:none;
    padding:12px 25px;
    border-radius:6px;
    transition:.3s;

}

.button:hover{

    background:#0077ff;

}

.section-title{

    margin-bottom:25px;

}

.news-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-bottom:60px;

}

.news-card{

    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 6px 15px rgba(0,0,0,.08);
    transition:.3s;

}

.news-card:hover{

    transform:translateY(-8px);

}

.news-card img{

    width:100%;
    height:220px;
    object-fit:cover;

}

.card-content{

    padding:25px;

}

.card-content h3{

    margin:15px 0;

}

.card-content a{

    display:inline-block;
    margin-top:20px;
    text-decoration:none;
    color:#0077ff;
    font-weight:bold;

}

.card-content a:hover{

    text-decoration:underline;

}

footer{

    background:#0b1d39;
    color:white;
    text-align:center;
    padding:30px 0;

}

.site-footer {
  background-color: #1f1f1f;
  color: #ffffff;
  padding: 40px 20px 10px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #cccccc;
  text-decoration: none;
}

.footer-section a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 13px;
}

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

  .footer-section {
    width: 100%;
  }

@media(max-width:900px){

.featured-news{

grid-template-columns:1fr;

}

.featured-news img{

height:300px;

}

header h1{

font-size:2.3rem;

}

}
