.footer {
    width: 100vw;
    background: #001d3b;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin: 48px auto 24px auto;
    display: block;
}

.footer-logo-svg {
    width: 100%;
    height: 100%;
    display: none;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    display: block;
    margin: 0 auto;
}

.footer-columns {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin: 0 auto 32px auto;
    padding: 0 48px;
}

.footer-col {
    width: 100%;
    max-width: 420px;
    min-width: 0;
    text-align: left;
}

.footer-heading {
    font-family: Inter, Arial, sans-serif;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.4;
    color: #c8006e;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-address,
.footer-contact,
.footer-emergency-text {
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 1.7;
}
.footer-address strong,
.footer-contact strong {
    font-weight: bold;
}

.footer-divider {
    width: 100%;
    max-width: 1400px;
    height: 1px;
    margin: 0 auto 24px auto;
    background-color: rgba(255,255,255,0.3);
}

.footer-bottom {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 48px 24px 48px;
    font-size: 14px;
}
.footer-copyright {
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a {
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 0 6px;
}
.footer-links span {
    color: rgba(255,255,255,0.3);
    font-size: 14px;
}
.footer-social {
    display: flex;
    gap: 15px;
    display: none;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}
.footer-social svg {
    width: 100%;
    height: 24px;
}

@media (max-width: 768px) {
  .footer {
    padding: 0;
    align-items: stretch;
  }
  .footer-logo {
    margin: 24px auto 12px auto;
    width: 28px;
    height: 28px;
  }
  .footer-logo-img {
    width: 28px;
    height: 28px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 0;
    padding: 0 16px;
    margin-bottom: 16px;
  }
  .footer-col {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 14px;
  }
  .footer-heading {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .footer-address,
  .footer-contact,
  .footer-emergency-text {
    font-size: 13px;
    line-height: 1.5;
  }
  .footer-divider {
    margin: 0 0 12px 0;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    padding: 0 8px 16px 8px;
    font-size: 12px;
    gap: 6px;
  }
  .footer-links {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 4px 0;
    width: 100%;
  }
  .footer-links a, .footer-links span {
    font-size: 12px;
    padding: 0 6px;
    display: inline-block;
  }
  .footer-links span {
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    padding: 0;
  }
  .footer-social {
    margin-top: 8px;
  }
}

