.site-footer {
  margin-top: 80px;
  padding: 44px 0;
  background: #1f3a5f;
  color: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-left strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.footer-left p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-right span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-icon svg {
  width: 18px;
  height: 18px;
}

.footer-icon:hover {
  background: #f2c572;
  color: #1f3a5f;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}