/* Headings Bold & Clean */
h1, h2, h3, .section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Body Text */
body, p, li {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #333;
}

/* Buttons */
a.button, .btn, .primary-btn {
  background: #004080;
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 8px;
  transition: 0.3s ease;
}
a.button:hover, .btn:hover, .primary-btn:hover {
  background: #ff6600;
  transform: scale(1.05);
}

/* Footer */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: #ff6600;
}
footer {
  background: #0a0a0a;
  color: #ccc;
  padding: 40px 20px;
}
.footer-copy {
  text-align: center;
  margin-top: 20px;
  color: #aaa;
}
.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: #ccc;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #ff6600;
}