header, main {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  max-width: 1200px;
}

header {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #13294b;
}

.logo-1 {
  width: 12rem;
  height: auto;
  display: block;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-1 {
}

.nav-list-1 {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-list-1 li a {
  text-decoration: none;
  color: black;
  font-weight: normal;
}

.nav-list-1 li a:hover {
  text-decoration: underline;
}

.feature-article-1 {
  border-bottom: 1px solid #13294b;
}

.feature-section-1 {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.5rem 0;
}

.feature-image-1 {
  width: 40%;
  height: auto;
  object-fit: cover;
}

.feature-content-1 {
  flex: 1;
}

.feature-content-1 h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: normal;
  color: #13294b;
}

.feature-content-1 p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.button-1 {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #13294b;
  color: #fff;
  text-decoration: none;
  font-weight: normal;
}

.button-1:hover {
  background-color: #333;
}

@media (max-width: 768px) {
  .feature-section-1 {
    flex-direction: column;
    text-align: center;
  }

  .feature-image-1 {
    width: 100%;
  }

  .feature-content-1 {
    width: 100%;
  }
}

.featured-section-2 {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0;
  flex-wrap: wrap;
}

.featured-horizontal-card-2 {
  display: flex;
  flex: 1 1 48%;
  gap: 0.75rem;
  padding: 0.5rem;
  align-items: center;
}

.featured-image-2 {
  width: 40%;
  height: auto;
  object-fit: cover;
}

.featured-content-2 {
  flex: 1;
}

.featured-content-2 h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: normal;
  color: #13294b;
}

.featured-content-2 p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.featured-heading-link-2 {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.featured-heading-link-2 h2:hover {
  text-decoration: underline;
  color: #13294b;
  cursor: pointer;
}

@media (max-width: 768px) {
  .featured-section-2 {
    flex-direction: column;
  }

  .featured-horizontal-card-2 {
    flex-direction: column;
    text-align: center;
  }

  .featured-image-2 {
    width: 100%;
  }

  .featured-content-2 {
    width: 100%;
  }
}

.featured-video-section-1 {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0;
  flex-wrap: wrap;
}

.video-card-1 {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.video-thumbnail-1 {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.video-title-link-1 {
  text-decoration: none;
}

.video-title-link-1 h2 {
  font-size: 1.25rem;
  color: #13294b;
  font-weight: normal;
  margin: 0;
}

.video-title-link-1:hover h2 {
  text-decoration: underline;
}

.video-card-1 p {
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .featured-video-section-1 {
    flex-direction: column;
  }

  .video-card-1 {
    flex: 1 1 100%;
  }
}

footer {
  text-align: center;
  font-size: 0.875rem;
  color: #000000;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#important-notice {
    background-color: red;
}


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