.cta-container {
  width: 100%;
  margin-top: 30px;
}

.cta-button {
  display: block;
  width: 100%;
  background-color: #c4201e;
  text-align: center;
  direction: rtl;
  padding: 14px 16px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-family: 'Tajawal', sans-serif;
  border: 2px solid #c4201e;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #ffffff;
  color: #c4201e;
}

.cta-button:active {
  background-color: #ffffff;
  color: #a21717;
  transform: scale(0.97);
}

.icon-pointer {
  font-size: 24px;
  margin-left: 8px;
  vertical-align: middle;
  color: white !important;
  animation: pointing 1s infinite;
}

@keyframes pointing {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 480px) {
  .cta-button {
    font-size: 16px;
    padding: 12px;
  }

  .icon-pointer {
    font-size: 20px;
  }
}
