@keyframes gradient-slide {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes scroll-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes highlight {
  to {
    width: 100%;
  }
}
@keyframes gradient-slide {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes scroll-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes highlight {
  to {
    width: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif !important;
  line-height: 1.6;
  color: #333333;
  background: linear-gradient(to bottom, #091B3A, #012E73, #00317D, #00317D, #012E73, #091B3A);
}

.navbar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 20px 5% !important;
  background-color: #091C3D !important;
  box-shadow: 0 2px 5px rgba(11, 22, 43, 0.1) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  height: 80px !important;
}
.navbar .logo {
  max-height: 80px!important;
  transition: transform 0.3s ease !important;
}
.navbar .logo:hover {
  transform: scale(1.05);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
@media (max-width: 1279px) {
  .container {
    padding: 30px 15px;
  }
}
@media (max-width: 419px) {
  .container {
    padding: 20px 10px;
  }
}

.header {
  margin-bottom: 40px;
  text-align: center;
}
.header h1 {
  font-family: Roboto Condensed, Arial, sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
  color: #FFFFFF;
  position: relative;
  display: inline-block;
}
.header h1::after {
  display: block;
  width: 100%;
  height: 0.2rem;
  background: linear-gradient(90deg, #00317D 0%, #012E73 15%, #3551F2 45%, #83F52C 65%, #83F52C 85%, #00317D 100%);
  background-size: 200% 100%;
  animation: gradient-slide 4s linear infinite;
  content: "";
  margin-top: 10px;
}
.header p, .header h3 {
  color: #FFFFFF;
  font-size: 1.25rem;
}
.header-base{
	position: sticky!important;
}
.content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(11, 22, 43, 0.05);
}
@media (max-width: 1279px) {
  .content {
    padding: 30px;
  }
}
@media (max-width: 419px) {
  .content {
    padding: 20px;
  }
}
.content h2 {
  color: #012E73;
  margin: 30px 0 15px 0;
  font-size: 1.5rem;
  font-family: Roboto Condensed, Arial, sans-serif;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
  font-weight: 800;
}
.content h2::after {
  display: block;
  width: 100%;
  height: 0.2rem;
  background: linear-gradient(90deg, #00317D 0%, #012E73 15%, #3551F2 45%, #83F52C 65%, #83F52C 85%, #00317D 100%);
  background-size: 200% 100%;
  animation: gradient-slide 4s linear infinite;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.content h2:first-child {
  margin-top: 0;
}
.content h3 {
  color: #00317D;
  margin: 25px 0 10px 0;
  font-size: 1.25rem;
  font-family: Roboto Condensed, Arial, sans-serif;
}
.content h4 {
  color: #3551F2;
  margin: 20px 0 10px 0;
  font-size: 1rem;
}
.content p {
  margin-bottom: 20px;
}
.content p:last-child {
  margin-bottom: 0;
}
.content ul, .content ol {
  margin-bottom: 20px;
  margin-left: 20px;
}
.content ul li, .content ol li {
  margin-bottom: 10px;
  position: relative;
}
.content ul li strong, .content ol li strong {
  color: #012E73;
}
.content a {
  color: #3551F2;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}
.content a:hover {
  color: #83F52C;
  border-bottom: 1px solid #83F52C;
}

@media (max-width: 1279px) {
  .header h1 {
    font-size: 2rem;
  }
  .content h2 {
    font-size: 1.25rem;
  }
  .content h3 {
    font-size: 1rem;
  }
}
@media (max-width: 419px) {
  .header h1 {
    font-size: 1.75rem;
  }
  .header p {
    font-size: 1rem;
  }
  .content h2 {
    font-size: 1.25rem;
  }
  .content h3 {
    font-size: 1rem;
  }
  .content h4 {
    font-size: 0.875rem;
  }
  .content p, .content li {
    font-size: 1rem;
  }
}