
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}


.navbar {
  background: linear-gradient(90deg, #0a1a33, #0d2a4d);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
}

.nav-links a {
  color: #dbe4f0;
  text-decoration: none;
  font-size: 0.95rem;
  padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #4da3ff;
  border-bottom: 2px solid #4da3ff;
}


.news-container {
  max-width: 1000px;
  margin: 70px auto;
  padding: 0 20px;
}

.news-container h1 {
  font-size: 2.4rem;
  color: #0a2540;
  margin-bottom: 10px;
}

.intro {
  color: #4b5563;
  margin-bottom: 45px;
  line-height: 1.6;
}


.news-item {
  background: #ffffff;
  padding: 28px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border-left: 5px solid #0a2540;
}

.news-item h2 {
  font-size: 1.3rem;
  color: #0a2540;
  margin-bottom: 8px;
}

.news-date {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 8px;
}

.news-item p {
  line-height: 1.7;
  color: #374151;
}


.news-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 9px 16px;
  background: #0a2540;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
}

.news-btn:hover {
  background: #143d6b;
}


.footer {
  text-align: center;
  padding: 25px;
  background: #f3f4f6;
  color: #374151;
  margin-top: 60px;
}



:root {
  --navy-dark: #0f172a;
  --navy: #1e3a8a;
  --accent: #60a5fa;
  --bg: #ffffff;
}

footer, .footer {
  background: #0f172a !important;
  color: white !important;
  text-align: center !important;
  padding: 20px !important;
  font-size: 16px !important;
}

.navbar {
  background: rgba(15, 23, 42, 0.95) !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #60a5fa !important;
}


@media (min-width: 901px) {
  .nav-container, .navbar-container {
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 18px 30px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-sizing: border-box !important;
    min-height: 70px !important;
  }
}

