.footer-section {
  background: #181c2f;
  color: #f5f5f5;
  padding: 60px 20px 30px;
  font-family: sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-about,
.footer-links,
.footer-social {
  flex: 1 1 250px;
}

.footer-title {
  color: #ff9500;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

.footer-links h4,
.footer-social h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ff9500;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.footer-icons a {
  display: inline-block;
  margin-right: 15px;
  color: #ff9500;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-icons a:hover {
  color: #ffa733;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #2a2e45;
  padding-top: 20px;
  margin-top: 40px;
  font-size: 0.95rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .footer-icons a {
    margin: 0 10px;
  }
}
