/* CTA Section */
.cta-section {
  padding: 2rem 0;
  background: var(--gradient-primary);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><path d="M0,0 L1000,100 L1000,0 Z"></path></svg>');
  background-size: cover;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cta-buttons .btn {
  background: var(--bg-white);
  color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.cta-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.cta-info {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.cta-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .cta-info {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}

/* Small mobile devices (480px and down) */
@media (max-width: 480px) {
  .cta-content h2 {
    font-size: 1.75rem;
  }

  .cta-content p {
    font-size: 0.9rem;
  }
}
