/* CTA Section */
.cta-section {
  padding: 60px 20px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-container {
  text-align: center;
  background: #eaf2ff;
  padding: 40px 30px;
  border-radius: 15px;
  max-width: 800px;
  width: 100%;
}

.cta-container h2 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.cta-container p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

.btn-primary:hover {
  background: #1e40af;
}

.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  background: transparent;
}

.btn-outline:hover {
  background: #2563eb;
  color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}
