/* Newsletter */
.subscribe {
  background: rgb(2, 159, 221);
  color: #fff;
  padding: 50px 20px;
}

.sub-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 20px;
  flex-wrap: wrap;
}

.sub-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.sub-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sub-form input {
  padding: 12px;
  border-radius: 5px;
  border: none;
  flex: 1;
  min-width: 220px;
}

.sub-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  background: #FF6700;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.sub-form button:hover {
  background: #ffffff;
}

/* Footer */
.footer {
  background: #0284C7;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer h4 {
  color: #fffdfc;
  margin-bottom: 15px;
}

.footer .list {
  list-style: none;
  padding: 0;
}

.footer .list li {
  margin-bottom: 10px;
}

.footer .list a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer .list a:hover {
  color: #FF6700;
}

.footer .socials a {
  color: #fff;
  margin-right: 15px;
  font-size: 20px;
  transition: 0.3s;
}

.footer .socials a:hover {
  color: #FF6700;
}

.footbar {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 15px;
  margin-top: 20px;
  font-size: 14px;
  color: #bbb;
}

/* Responsive */
@media (max-width: 768px) {
  .sub-inner {
    flex-direction: column;
    text-align: center;
  }

  .sub-form {
    justify-content: center;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
