.footer {
  background-color: #134048;
  padding: 60px 0 20px;
  color: #ffffff;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo img {
  width: 66px;
  height: 56px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 23.5px;
  color: #60EE7F;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-title {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 23.5px;
  color: #60EE7F;
  margin-bottom: 16px;
}

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

.footer-list li {
  margin-bottom: 8px;
}

.footer-list a {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 22.36px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #60EE7F;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 34px;
  height: 34px;
  background-color: #133048;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link img,
.social-link svg {
  width: 12px;
  height: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(96, 238, 127, 0.2);
  padding-top: 20px;
  text-align: center;
}

.copyright {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 22.87px;
  color: #60EE7F;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-brand {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer-brand-name {
    font-size: 18px;
  }
  
  .footer-title {
    font-size: 16px;
  }
}
