body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Top Bar */
.top-bar {
  background: #2b2e63;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
  border-bottom: 1px solid #444;
}

.top-bar p {
  margin: 5px 0;
}

/* Footer */
.footer {
  background: #1f2354;
  color: #fff;
  padding-top: 40px;
}

/* Container */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px;
}

/* Columns */
.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3 {
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.footer-col h4 {
  margin: 10px 0;
  font-size: 16px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.logo {
  width: 80px;
  margin-bottom: 10px;
}

.tagline {
  font-weight: bold;
  margin: 10px 0;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 14px;
  cursor: pointer;
}

.footer-col ul li:hover {
  text-decoration: underline;
}

/* Button */
.btn {
  background: #f4a621;
  color: #000;
  border: none;
  padding: 10px 15px;
  margin-top: 10px;
  border-radius: 6px;
  cursor: pointer;
}

/* Social */
.follow {
  margin-top: 20px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons i {
  margin-right: 10px;
  font-size: 18px;
  cursor: pointer;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.links {
  color: #ccc;
}

.copy {
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
