@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

.site-footer {
  background: #001070;
  color: white;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  padding-top: 30px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 0 15px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  color: #ccc;
  max-width: 400px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  background: #000c40;
  font-size: 13px;
  text-align: center;
  padding: 12px 15px;
  color: #aaa;
}
.footer-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
  }
  
  .footer-socials .follow-label {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
  }
  
  .social-icons {
    display: flex;
    gap: 12px;
  }
  
  .social-icons a img {
    width: 24px;
    height: 24px;
    filter: brightness(80%);
    transition: filter 0.3s ease;
  }
  
  .social-icons a:hover img {
    filter: brightness(100%);
  }

  @media (max-width: 768px) {
    .footer-main {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px 15px;
    }
  
    .footer-brand p {
      max-width: 100%;
    }
  
    .footer-links {
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin: 15px 0;
    }
  
    .footer-socials {
      align-items: center;
      text-align: center;
    }
  
    .social-icons {
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .footer-bottom {
      font-size: 12px;
      padding: 12px 10px;
    }
  }
  