.footer-fullwidth {
  background-color: #1f4ca6; /* Dark blue background */
  color: #fff;
  width: 100%;
  padding: 40px 20px;
}

.footer-fullwidth .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* === Footer Columns === */
.footer-col {
  flex: 1 1 30%;
  min-width: 250px;
}

.footer-widget {
  color: #fff;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

/* === Footer Links === */
.footer-links {
  list-style: none;        /* Removes bullets */
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;          /* White links */
  text-decoration: none;   /* No underline */
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;            /* Subtle hover effect instead of color change */
}

/* === Responsive Layout === */
@media (max-width: 768px) {
  .footer-fullwidth .container {
    flex-direction: column;
  }

  .footer-col {
    width: 100%;
  }

  .footer-links a {
    font-size: 15px;
  }
}
