:root {
  --primary-orange: #f57215; /* Exact orange from user spec */
  --whatsapp-green: #25d366;
  --text-color: #f57215;
  --bg-color: #ffffff;
}

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

body {
  font-family: "Cairo", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  direction: rtl;
}

.container {
  width: 100%;
  max-width: 480px; /* Mobile width constraint */
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-container {
  width: 100%;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.logo {
  max-width: 80%;
  height: auto;
  object-fit: contain;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.main-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.subtitle {
  font-size: 1.6rem;
  font-weight: 600;
}

.instruction {
  font-size: 1.4rem;
  margin-top: 0.5rem;
}

.disclaimer {
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.action-area {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.whatsapp-btn {
  background-color: var(--whatsapp-green);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

.whatsapp-btn i {
  /* Adjust icon specifically if needed */
}

/* Responsive Adjustments */
@media (max-width: 380px) {
  .main-title {
    font-size: 1.3rem;
  }
  .subtitle,
  .instruction,
  .disclaimer {
    font-size: 1.1rem;
  }
}
