.cta {
  background-color: #ede9fe;
  text-align: center;
  padding: 6rem 2rem;
  border-radius: 2rem;
  margin: 5rem auto;
}
.cta h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.cta p {
  font-size: 1.7rem;
  max-width: 95rem;
  margin: 0 auto 3rem;
  color: #6b7280;
}
.cta .buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.cta .buttons button {
  font-size: 1.7rem;
  padding: 1.2rem 3.4rem;
  border: none;
  border-radius: 999rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.cta .buttons button.primary {
  background-color: #111;
  color: #fff;
}
.cta .buttons button.secondary {
  background-color: transparent;
  border: 3px solid #111;
  color: #111;
  font-weight: bold;
}
.cta .buttons button:hover {
  opacity: 0.9;
}

.footer {
  padding: 6rem 6rem 2rem;
  background-color: #fafafa;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 4rem;
  margin: 0 auto;
}
.footer .footer-block h4 {
  font-size: 1.5rem;
  margin-bottom: 1.6rem;
}
.footer .footer-block ul {
  list-style: none;
  padding: 0;
}
.footer .footer-block ul li {
  font-size: 1.5rem;
  color: #6b7280;
  margin-bottom: 1rem;
  cursor: pointer;
}
.footer .footer-block.brand {
  display: flex;
  gap: 1.6rem;
}
.footer .footer-block.brand .logo {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  width: 9.4rem;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.footer .footer-block.brand h3 {
  font-size: 1.5rem;
}
.footer .footer-block.brand p {
  font-size: 1.5rem;
  color: #6b7280;
  margin-top: 0.8rem;
}
.footer .social-icons {
  display: flex;
  gap: 1.6rem;
  font-size: 2rem;
  color: #9ca3af;
}
.footer .footer-bottom {
  text-align: center;
  margin-top: 4rem;
}
.footer .footer-bottom p {
  font-size: 1.2rem;
  color: #9ca3af;
}/*# sourceMappingURL=footer.css.map */