/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
}

.cta-btn {
  padding: 15px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.cta-btn.primary {
  background-color: #007bff;
  color: white;
}

.cta-btn.primary:hover {
  background-color: #0056b3;
}

.cta-btn.secondary {
  background-color: #333;
  color: white;
}

.cta-btn.secondary:hover {
  background-color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 10px;
    position: fixed;
    bottom: 0;
    padding: 20px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Sticky area background */
    z-index: 10;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }

  .cta-secondary-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  .cta-btn.secondary {
    flex: 1;
  }
}