.footer {
  background-color: #1a5fb4;
  color: #ecf0f1;
  width: 100%;
  margin-top: auto;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer .footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 0 30px;
}

.footer .footer-container .footer-sections {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.footer .footer-container .footer-sections .footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer .footer-container .footer-sections .footer-section .footer-section-title {
  font-size: 19px;
  margin-bottom: 22px;
  color: white;
  position: relative;
  padding-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: left;
}

.footer .footer-container .footer-sections .footer-section .footer-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
}

.footer .footer-container .footer-sections .footer-section.subscribe-section {
  margin-right: 20px;
}

.footer .footer-container .footer-sections .footer-section.subscribe-section p {
  color: #e0e7f0;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer .footer-container .footer-sections .footer-section.subscribe-section .subscribe-form {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer .footer-container .footer-sections .footer-section.subscribe-section .subscribe-form .subscribe-input {
  flex: 1;
  height: 40px;
  padding: 10px;
  border: none;
  background-color: #ffffff;
  color: #1a5fb4;
  font-size: 14px;
  transition: all 0.3s ease;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.footer .footer-container .footer-sections .footer-section.subscribe-section .subscribe-form .subscribe-input:focus {
  outline: none;
  background-color: #f8fbff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.footer .footer-container .footer-sections .footer-section.subscribe-section .subscribe-form .subscribe-input::placeholder {
  color: #8fa6c0;
}

.footer .footer-container .footer-sections .footer-section.subscribe-section .subscribe-form .subscribe-btn {
  background-color: #ffffff;
  color: #1a5fb4;
  height: 42px;
  border: 1px solid #1a5fb4;
  padding: 5px 15px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.footer .footer-container .footer-sections .footer-section.subscribe-section .subscribe-form .subscribe-btn:hover {
  background-color: #cbe1fe;
  color: #0f4a9c;
}

.footer .footer-container .footer-sections .footer-section.subscribe-section .subscribe-form .subscribe-btn:active {
  transform: translateY(0);
}

.footer .footer-container .footer-sections .footer-section .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-container .footer-sections .footer-section .footer-links li {
  margin-bottom: 12px;
}

.footer .footer-container .footer-sections .footer-section .footer-links li a {
  color: #e0e7f0;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: block;
  padding: 2px 0;
  opacity: 0.9;
}

.footer .footer-container .footer-sections .footer-section .footer-links li a:hover {
  color: white;
  opacity: 1;
}

.footer .footer-container .footer-sections .footer-section .contact-info {
  margin-top: 10px;
}

.footer .footer-container .footer-sections .footer-section .contact-info .contact-item {
  margin-bottom: 15px;
  font-size: 14px;
  color: #e0e7f0;
}

.footer .footer-container .footer-sections .footer-section .contact-info .contact-item a{
  color: #e0e7f0;
  text-decoration: none;
}

.footer .footer-container .footer-sections .footer-section .contact-info .contact-item a:hover{
  text-decoration: underline;
}

.footer-center{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-social-pay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
  padding: 0;
}

.footer-social-pay .social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-pay .social-icons .social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.footer-social-pay .social-icons .social-icon:hover {
  background-color: #ffffff;
  color: #1a5fb4;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.payway-wrapper {
  display: flex;
  gap: 10px;
}

.payway-container {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.payway-container .payway-img {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  border-radius: 5px;
}

.payway-container .payway-img img {
  height: 20px;
}

.footer .footer-container .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .footer-container .footer-bottom .copyright {
  font-size: 13px;
  color: #c4d1e0;
  text-align: center;
}