footer {
  background: #00264d;
  color: #fff;
  font-family: inherit;
  padding: 0;
  margin: 0;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 24px 0 24px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 0 0 30px 0;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 280px;
  text-align: left;
}

/* Logo and Message */
.footer-col-logo-msg {
  text-align: left;
}

.footer-logo-img {
  height: 52px;
  max-width: 170px;
  margin-bottom: 15px;
  margin-top: 0;
  display: block;
}

.footer-company-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.08rem;
}

.footer-col-logo-msg h3 {
  margin: 0 0 8px 0;
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.footer-col-logo-msg p {
  margin: 0;
  font-size: 1.01rem;
  color: #fff;
  line-height: 1.5;
}

/* Quick Links */
.footer-col-links h4,
.footer-col-contact h4,
.footer-col-newsletter h4 {
  color: #ffffff;
  margin: 0 0 15px 0;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: left
}

.footer-col-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer-col-links ul li {
  margin-bottom: 10px;
}

.footer-col-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.18s;
  display: inline-block;
}

.footer-col-links ul li a:hover {
  color: #ffffff;
}

.footer-col-newsletter h4 {
  text-align: left;
}

/* Newsletter Subscribe */
.footer-col-newsletter {
  max-width: 350px;
}

.newsletter-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1 1 180px;
  padding: 12px 15px;
  border-radius: 25px;
  border: none;
  font-size: 14px;
  min-width: 200px;
  color: #333;
  background: #fff;
}

.newsletter-form button {
  flex: 0 0 auto;
  padding: 12px 25px;
  border-radius: 25px;
  border: none;
  background: #96071a;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
}

.newsletter-form button:hover {
  background: #ffffff;
  color: #96071a;
}

/* Footer Bottom */
.footer-bottom-bar {
  background: transparent;
  text-align: center;
  padding: 16px 0;
  font-size: 1rem;
  color: #eee;
  letter-spacing: 0.1px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 10px;
}

.footer-bottom-bar p {
  margin: 0;
  color: #ffffff;
  font-weight: 400;
}

/* Responsive: Mobile styles */
@media (max-width: 800px) {
  .footer-main {
    padding: 20px 8px 0 8px;
  }
  .footer-row {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    padding-bottom: 18px;
  }
  .footer-col {
    min-width: 0;
    max-width: 100%;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
    padding: 0 4vw;
  }
  .footer-logo-img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    height: 48px;
    max-width: 120px;
  }
  .footer-company-name {
    text-align: center;
  }
  .footer-col-logo-msg h3 {
    text-align: center;
    font-size: 1.18rem;
    margin-bottom: 6px;
  }
  .footer-col-logo-msg p {
    text-align: center;
    font-size: 1rem;
  }
  .footer-col-links h4,
  .footer-col-contact h4,
  .footer-col-newsletter h4 {
    text-align: center;
    font-size: 1.09rem;
    margin-bottom: 8px;
  }
  .footer-col-links ul {
    margin-bottom: 0;
    text-align: center;
  }
  .footer-col-links ul li {
    margin-bottom: 8px;
  }
  .footer-col-links ul li a {
    font-size: 1rem;
  }
  .footer-bottom-bar {
    padding: 12px 0;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 12px 2px 0 2px;
    border-radius: 0 0 10px 10px;
  }
  .footer-row {
    gap: 16px;
  }
  .footer-col {
    padding: 0 4vw !important;
  }
  .footer-logo-img {
    height: 38px;
    max-width: 80px;
    margin-bottom: 6px;
  }
  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    min-width: 0;
    border-radius: 17px;
    font-size: 0.97rem;
    padding: 10px 6px;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
    gap: 8px;
  }
  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin-bottom: 0;
    border-radius: 18px;
    font-size: 1rem;
    padding: 11px 10px;
    height: 44px;
    max-height: 48px;
  }
  .newsletter-form input[type="email"] {
    height: 44px;
    max-height: 48px;
  }
  .newsletter-form button {
    font-size: 1rem;
    padding: 12px 0;
    height: 44px;
    max-height: 48px;
  }
}