.certification-badge:hover,
.social-icons a:hover {
  transform: translateY(-3px)
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

.site-footer {
  background: #0d0d0d;
  color: #ccc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 40px 0 20px
}

.cta-link,
.site-footer a:hover,
.social-icons a:hover {
  color: #104ea8
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
  transition: color .3s
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 25px !important
}

.footer-column {
  flex: 1 1 180px;
  margin: 20px;
  min-width: 200px
}

.bottom-footer,
.footer-content {
  margin: 0 auto;
  display: flex;
  max-width: 1300px
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #104ea8;
  margin-top: 8px;
  transition: width .4s
}

.footer-column h3:hover::after {
  width: 60px
}

.footer-column ul {
  list-style: none;
  padding: 0
}

.footer-column ul li {
  margin-bottom: 10px
}

.cta-link {
  font-weight: 700
}

.bottom-footer {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333;
  padding: 20px 15px
}

.bottom-left,
.bottom-right {
  display: flex;
  align-items: center;
  gap: 15px
}

.footer-search,
.language-selector,
.newsletter-form input {
  padding: 8px 10px;
  border: none;
  border-radius: 4px
}

.footer-search {
  width: 180px
}

.newsletter-form {
  display: flex
}

.newsletter-form input {
  width: 220px
}

.newsletter-form button {
  background: #104ea8;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .3s
}

.newsletter-form button:hover {
  background: #0e4392
}

.social-icons a {
  font-size: 18px;
  color: #ccc;
  transition: transform .3s, color .3s
}

.secure-badge {
  font-size: 14px
}

.footer-bottom-text {
  text-align: center;
  font-size: 14px;
  padding: 0 15px
}

.footer-bottom-text a {
  color: #ccc;
  margin: 0 5px
}

.footer-intro {
  padding: 30px 0;
  border-bottom: 1px solid #333
}

.footer-content {
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 15px
}

.footer-logo {
  align-items: center;
  display: inline-block;
  border-radius: 4px
}

.footer-logo img {
  max-height: 60px;
  display: block;
  max-width: 85%;
  height: auto
}

.footer-description {
  max-width: 600px;
  color: #fff
}

.footer-description p {
  margin: 0;
  font-size: 1em;
  line-height: 1.6
}

.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 15px;
  width: 100%;
  margin-bottom: 12px
}

.certification-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  padding: 8px 12px;
  border-radius: 4px;
  transition: transform .3s
}

.certification-badge img {
  height: 65px;
  width: auto
}

.certification-badge span {
  font-size: 14px;
  color: #fff
}

@media (max-width:992px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start
  }

  .footer-description {
    max-width: 100%
  }

  .certifications {
    justify-content: flex-start
  }

  .bottom-right {
    margin-top: 15px
  }
}

@media (max-width:768px) {
  .footer-column {
    min-width: 150px;
    margin: 10px
  }

  .bottom-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
  }

  .footer-search,
  .newsletter-form,
  .newsletter-form input {
    width: 100%
  }
}

@media (max-width:576px) {
  .footer-container {
    flex-direction: column
  }

  .footer-column {
    width: 100%;
    margin: 10px 0
  }

  .bottom-footer,
  .certifications {
    flex-direction: column;
    align-items: flex-start
  }

  .bottom-right {
    margin-top: 15px;
    width: 100%;
    justify-content: space-between
  }
}