footer {
  border-top: 1px solid #e5e5e5;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* ===== HEADER FOOTER ===== */
.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand img {
  width: 60px;
  height: auto;
}

.brand h1 {
  font-size: 22px;
  font-weight: 700;
  color: #0b3c8c;
}

.brand p {
  font-size: 14px;
  color: #333;
  margin-top: 4px;
}

.newsletter {
  max-width: 420px;
  width: 100%;
}

.newsletter h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  background: #f2f2f2;
  border-radius: 6px;
  overflow: hidden;
}

.footer-content ul li {
  list-style: disc;
  color: #000;
}

.newsletter-form input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  background: transparent;
  font-size: 14px;
  outline: none;
}

.newsletter-form button {
  border: none;
  background: transparent;
  padding: 0 16px;
  cursor: pointer;
  font-size: 18px;
  color: #f15a24;
}

/* ===== CONTENT ===== */
.footer-content {
  display: grid;
  grid-template-columns: 4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid #f3f3f3;
}

.footer-box ul {
  list-style: disc;
  padding-left: 18px;
}

.footer-box li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-box strong {
  font-weight: 700;
}

.footer-box a {
  text-decoration: none;
  color: #000;
}

/* ===== COPYRIGHT ===== */
.footer-bottom {
  background: #eef3f7;
  text-align: center;
  padding: 14px 10px;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
        gap: 10px;
  }
}

@media (max-width: 600px) {
  .footer-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* .footer-content {
    grid-template-columns: 1fr;
  } */
  .footer-content .footer-box:first-child{
    grid-column: span 2;
  }
  .brand h1 {
    font-size: 18px;
  }
  .footer-header h2{
    font-size: 18px;
  }
  .footer-header h3{
    font-size: 15px;
  }
}