.cta {
  background-color: #1f1f21;
  color: #f1f1f1;
  text-align: center;
  padding: 64px 32px;
}

.cta h2 {
  font-size: 40px;
  font-weight: bold;
}

.cta h2 span {
  color: white;
}

.cta p {
  font-size: 16px;
  margin: 16px 0 32px;
}

.cta-button {
  background-color: #1b8641;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #156c34;
}

.cta-button span {
  margin-left: 8px;
  font-size: 19.2px;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 64px 32px;
  background-color: #fff;
  color: #1f1f21;
  gap: 32px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 400px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 48px;
  background: black;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
}

.logo h3 {
  font-size: 36px;
  margin: 0;
}

.logo-text {
  font-size: 14.4px;
  line-height: 1.6;
  margin: 0;
}

.newsletter {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.newsletter input {
  padding: 12px;
  border: none;
  background-color: #000;
  color: white;
  border-radius: 6px;
  font-size: 16px;
  max-width: 320px;
  width: 100%;
}

.newsletter button {
  background-color: #1b8641;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  max-width: 320px;
  width: 100%;
}

.newsletter button:hover {
  background-color: #156c34;
}

.footer-right {
  display: flex;
  gap: 64px;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 200px;
  max-width: 300px;
}

.footer-column h4 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #1f1f21;
  text-decoration: none;
  font-size: 14.4px;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
  }
  .footer-left, .footer-right {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .footer-right {
    justify-content: center;
    gap: 32px;
  }
  .newsletter input, .newsletter button {
    max-width: 100%;
  }
  .logo-text {
    text-align: center;
  }
  .footer-left {
    align-items: center;
  }
}
