body {
  font-family: 'Tajawal', Arial, sans-serif;
  background: #fff;
  color: #222;
  direction: rtl;
  text-align: right;
}
.primary-btn {
  background: #F37021;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.primary-btn:hover {
  background: #d95d13;
}
.secondary-btn {
  background: #fff;
  color: #F37021;
  border: 2px solid #F37021;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.secondary-btn:hover {
  background: #F37021;
  color: #fff;
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column !important;
    gap: 32px !important;
    padding: 32px 0 16px 0 !important;
  }
  .hero .content {
    max-width: 100% !important;
  }
} 