/* Basic, printable, framework-free styles */
:root {
  --bg: #ffffff;
  --ink: #0b0f14;
  --muted: #6b7280;
  --brand: #60A96D;
  --surface: #f6f7f8;
  --border: #4A4A4A;
  --card: #ffffff;
  --radius: 16px;
  --pad: 24px;
  --max: 980px;
  --h1: clamp(35px, 3.6vw, 36px);
  --h2: clamp(18px, 2.4vw, 24px);
  --body: 16px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Cairo", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, Inter, Arial, sans-serif;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 16px;
}
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 12px 24px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(16px, 3vw, 28px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.heading-gradient{
margin-bottom: 18px;
font-weight: 700;
font-size: 35px;
letter-spacing: -0.02em;
background: linear-gradient(95.81deg, #000000 45.38%, #60A96D 98.12%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;


}
.h1 {
  font-size: 35px;
  margin: 0 0 8px;
  color: var(--brand);
  letter-spacing: -2%;

}
.heading-wrapper {
  display: flex;
  justify-content: center; 
  gap: 8px;            
}
.home-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0; 
  margin-top: 20px;
}
.lead {
  margin: 0 0 16px;
  font-weight: 600;
  font-size: 15.6px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0 55px;
  background: #fff;
  font-size: 15px;
  min-height: 110px;
}
.btn:hover {
  border-color: #cbd5e1;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
  border-top: 1px solid #e0e0e0;
  padding: 12px 16px ;
}
.footer small {
  color: #787878;
  font-weight: bold;

}
.row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.col {
  flex: 1 1 440px;
  min-width: 260px;
}
.list-intro {
  font-weight: 600;
  font-size: 12px;
  width: 79%;
 }
 .list-header {
  font-weight: bold;  font-size: 12px;
  margin: 0;

 }
.list {
 text-align: start;  font-size: 12px;

}

.qr {
  display: flex;
  justify-content: end;
 }

 .back {
margin-bottom: 20px;
font-weight: 600;
font-size: 12px;
line-height: 100%;
letter-spacing: 0%;
color: #777777;
 }
[dir="rtl"] .brand {
  flex-direction: row-reverse;
}
[dir="rtl"] .footer {
  flex-direction: row-reverse;
}
[dir="rtl"] .list {
  padding: 0 18px 0 0;
}

[dir="rtl"] .heading-wrapper {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .grid-3,.grid-2 {
    grid-template-columns: 1fr;
  }
  .btn {
    padding: 0 15px;
  }
  .list-intro {
   
    width: 100%;
   }
   .qr {
    justify-content: center;
   }
}