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

body {
  font-family: sans-serif, Arial, Helvetica;
  background-color: #f5f5f5;
  color: #1a1a1a;
  line-height: 1.5;
}

.navbar {
  background-color: #d4e4f7;
  padding: 1rem 2rem;
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-link:hover {
  text-decoration: underline;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.header {
  text-align: center;
  margin-bottom: 2rem;
}

.header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.25rem;
}

.date {
  font-size: 0.9rem;
  color: #666;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}


.card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-header {
  background: linear-gradient(135deg, #1e5bb8 0%, #2b7de9 100%);
  color: white;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon {
  width: 25px;
  height: auto;
}

.card-header h2 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.card-body {
  padding: 1.25rem;
  background-color: #fafafa;
}

.info-item {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e5e5;
}

.info-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.info-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  letter-spacing: 0.3px;
}

.info-item p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}

footer {
  width: 100%;
  background: linear-gradient(135deg, #1e5bb8 0%, #2b7de9 100%);
  display: flex;
  gap: 20px;
  flex-direction: row;
  justify-content: space-between;
  color: white;
  padding: 15px 95px;
  font-size: 14px;

}

footer .footer-text {
  font-size: 12px;
}

@media (max-width: 767px) {
  footer {
    padding: 10px 20px;
  }
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 1200px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}