footer {
  background: #07141f;
  color: #ffffff;
  padding: 60px 40px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 200px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icons a {
  color: #ffffff;
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin: 50px 0;
  padding: 0 20px;
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: "EditorsNoteRegular", sans-serif;
}

.footer-section ul {
  list-style: none;
  line-height: 1.3rem;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 300;
}

.footer-section ul li a:hover {
  color: #64b5f6;
}

.contact-info a {
  color: #64b5f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #90caf9;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .footer-logo h1 {
    font-size: 3rem;
  }

  .footer-sections {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  footer {
    padding: 40px 20px 20px;
  }
}
