.site-footer {
  background: linear-gradient(120deg, #0f0f0f, #1a1a1a);
  color: #e0e0e0;
  padding: 60px 30px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid #444;
  padding-bottom: 40px;
}

.footer-section h2, .footer-section h3 {
  color: orange;
  margin-bottom: 15px;
}

.footer-section span {
  color: #ffffff;
}

.footer-section p, .footer-section a {
  color: #ccc;
  line-height: 1.6;
  font-size: 14px;
  text-decoration: none;
}

.footer-section a:hover {
  color: orange;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section form {
  display: flex;
  margin-top: 10px;
}

.footer-section input {
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
  flex: 1;
}

.footer-section button {
  padding: 10px 15px;
  border: none;
  background-color: orange;
  color: white;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: 0.3s;
}

.footer-section button:hover {
  background-color: #ff6600;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.social-icons a {
  color: #ccc;
  margin: 0 10px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: orange;
  transform: scale(1.2);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section form {
    flex-direction: column;
  }

  .footer-section input, .footer-section button {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .social-icons {
    margin-top: 15px;
  }

}