

.footer-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0 0;
  font-family: Arial, sans-serif;
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
}

.footer-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #ffffff;
  margin-top: 5px;
  border-radius: 2px;
}

.footer-text {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.footer-social img:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  transition: color 0.3s, margin-left 0.3s;
}

.footer-links li a:hover {
  color: #ffffff;
  margin-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  border-top: 1px solid #333;
  padding: 20px 0;
  background-color: #000000;
  box-sizing: border-box;
  margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-title { font-size: calc(20px - 2px); }
  .footer-text, .footer-links li a { font-size: calc(14px - 1px); }
  .footer-social img { width:30px; height:30px; }
  .footer-bottom { font-size: calc(14px - 2px); padding:15px 0; }
}
