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

:root {
  --primary: #102a63;
  --primary-light: #1e4a9a;
  --accent: #f6a800;
  --bg: #f2f5ff;
  --card-bg: #ffffff;
  --text-main: #14213d;
  --radius-xl: 26px;
  --radius-lg: 20px;
  --shadow-soft: 0 18px 40px rgba(12, 32, 75, 0.18);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #dce5ff 0, #eef2ff 40%, #f8f9ff 100%);
  min-height: 100vh;
  color: var(--text-main);
}

.bg-layer {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.65) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(16, 42, 99, 0.12) 0, transparent 55%);
  pointer-events: none;
  z-index: -1;
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 16px 40px;
}

.header {
  background: linear-gradient(135deg, rgba(16, 42, 99, 0.98), rgba(30, 74, 154, 0.96));
  border-radius: var(--radius-xl);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  color: #ffffff;
  margin-bottom: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 100px;
  height: auto;
}

.titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.title-ar {
  font-size: 1.6rem;
  font-weight: 800;
}

.title-en {
  font-size: 0.98rem;
  opacity: 0.95;
}

.hero {
  margin-bottom: 22px;
}

.hero-content {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 20px 22px;
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.06);
  border-inline-start: 5px solid var(--accent);
  text-align: center;
}

.hero-text-ar {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-text-en {
  font-size: 0.95rem;
  color: #4a5670;
}

.cta-section {
  margin-top: 8px;
}

.cta-card {
  background: linear-gradient(135deg, #ffffff, #f5f7ff);
  border-radius: var(--radius-xl);
  padding: 24px 22px 26px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.cta-text-ar {
  font-size: 1rem;
  margin-bottom: 6px;
}

.cta-text-en {
  font-size: 0.9rem;
  color: #4f628c;
  margin-bottom: 16px;
}

.cta-button {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(16, 42, 99, 0.35);
}

.cta-button:hover {
  transform: translateY(-1px);
}

.footer {
  text-align: center;
  margin-top: 28px;
  font-size: 0.86rem;
  color: #4f628c;
}

.footer p + p {
  margin-top: 4px;
}

@media (max-width: 600px) {
  .header {
    padding-inline: 18px;
  }

  .brand {
    flex-direction: column;
    text-align: center;
  }
}
