
/* footer */

.footer {
  background: #0f141a;
  color: #fff;
  font-family: sans-serif;
  padding: 40px 20px 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #ddd;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-section.social .icons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-section.social .icons img {
  width: 30px;
  height: 30px;
}

.subscribe-btn {
  background-color: #f54e4e;
  border: none;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.footer-bottom img {
  height: 40px;
  margin-bottom: 10px;
}

.footer-bottom .links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 8px;
  font-size: 14px;
}

.footer-bottom .links a:hover {
  text-decoration: underline;
}

.footer-bottom p {
  font-size: 12px;
  color: #777;
  margin-top: 10px;
}