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

body {
  background: #f1f4f9;
  color: #222;
}

header {
  background: #002b5c;
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 50px;
  width: 50px;
}

header h1 {
  font-size: 1.2rem;
  font-weight: 600;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color: #ffcc00;
}

main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.intro {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.intro h2 {
  color: #002b5c;
  margin-bottom: 10px;
}

.button {
  display: inline-block;
  background: #002b5c;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
}

.button:hover {
  background: #001f45;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.news {
  position: relative;
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.news h3 {
  font-size: 1.2rem;
  color: #002f6c;
  margin-bottom: 10px;
}

.news p {
  color: #333;
  line-height: 1.4;
}

footer {
  text-align: center;
  margin: 50px 0 20px;
  color: #555;
  font-size: 0.9rem;
}
