﻿.site-footer {
  background: #0056b3; /* solid blue */
  color: #ffffff;
  padding: 10px 40px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-column h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
}

.footer-column p,
.footer-column li {
  font-size: 12px;
  margin: 2px 0;
  list-style: none;
}

.footer-column ul {
  padding: 0;
  margin: 0;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer .footer-bottom {
  display: flex;
  justify-content: space-around;
  font-size: 14px;
  margin-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.footer-section {
  background: #1e293b;
  color: #e2e8f0;
  padding: 32px 20px 0;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 28px;
}

.footer-col {
  min-width: 0;
}

.footer-col h4 {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 1.25rem;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  display: inline-block;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.85rem;
}

.footer-col p {
  margin: 0 0 1rem;
}

.footer-col a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col a:hover {
  color: #ffffff;
  transform: translateX(4px);
  text-decoration: none;
}

.footer-col a i {
  width: 16px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  text-align: center;
}

.footer-col p a {
  font-weight: 500;
}

.footer2 {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  white-space: normal;
  align-items: start !important;
}

.footer-section .footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer-section .footer-bottom p {
  margin: 0;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-section .footer-bottom {
    justify-content: center;
    padding-top: 16px;
  }
}
