/* CTA Section Component Styles */
.cta-section {
  background: linear-gradient(to top,
      var(--background-default-brand-dark) 0%,
      var(--background-default-brand-dark) 50%,
      #fff 50%,
      #fff 100%);
  color: #fff;
  padding: 28px 0 64px;
  text-align: center;
}

.cta-section .cta-content {
  background: var(--background-default-brand);
  padding: 82px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-section .container {
  padding: 0 40px;
}

.cta-content h2 {
  font-size: 48px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
}

.cta-content p {
  font-size: 18px;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-direction: column;
}

.cta-section .cta-content div {
  text-align: left;
}

.cta-section .cta-content h2 {
  font-family: var(--font-family-title);
  font-size: var(--font-size-4x-large);
  font-style: normal;
  font-weight: 550;
  line-height: var(--font-line-height-4x-large);
  letter-spacing: -1.08px;
  margin: 0;
}

.cta-logo {
  margin-bottom: 24px;
}

.cta-logo img {
  max-width: 200px;
  height: auto;
  display: block;
}

/* Tablet Responsive */
@media (max-width: 1040px) {
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-logo {
    margin-bottom: 20px;
  }

  .cta-logo img {
    width: 180px;
  }

  .cta-section .cta-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 32px;
    align-items: flex-start;
  }

  .cta-content p {
    font-size: 15px;
    line-height: 20px;
    width: 336px;
    margin: 0;
  }

  .cta-section .cta-content div {
    gap: 28px;
    align-items: flex-start;
  }

  .cta-section .cta-content h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .cta-content div {
    text-align: center;
  }
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .cta-section {
    padding: 24px 0 40px;
  }

  .cta-section .container {
    padding: 0 20px;
  }

  .cta-section .cta-content {
    padding: 24px 24px 40px;
  }

  .cta-section .cta-content {
    gap: 32px;
    height: unset;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 15px;
    width: unset;
  }

  .cta-logo img {
    max-width: 200px;
  }

  .cta-logo {
    margin-bottom: 0;
  }

  .cta-section .cta-content div {
    gap: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .cta-section .cta-content .btn-group {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .cta-section .cta-content .btn-group a {
    width: 100%;
  }
}