.footerx {
  background: linear-gradient(145deg, #10367A, #D3D3D3);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 40px 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 1s ease forwards;
  width: 100%;
}

.footerx-inner {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

.footerx-title {
  font-size: 28px;
  color: #FFFFFF;
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.footerx-slogan {
  font-size: 16px;
  color: #FE5716;
  margin-bottom: 24px;
}

.footerx-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.footerx-links a {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.footerx-links a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #FFFFFF;
  transition: width 0.3s;
  margin: 4px auto 0;
}

.footerx-links a:hover::after {
  width: 100%;
}

.footerx-links a:hover {
  color: #FE5716;
}

.footerx-bottom {
  font-size: 13px;
  color: #D3D3D3;
  margin-top: 10px;
}

/* Animation fade-in */
@keyframes fadeUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .footerx-links {
    flex-direction: column;
    gap: 10px;
  }
}