.creativeland-footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: auto;
  border-top: 1px solid #262626;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  width: 135px;
  height: auto;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #74D1F3;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.footer-section p {
  color: #b0b0b0;
  line-height: 1.6;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #74D1F3;
}

.footer-bottom {
  border-top: 1px solid #262626;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
