:root {
  --bg: #0f1724;
  --card: #0b1220;
  --accent: #06b6d4;
  --muted: #9aa4b2;
  --glass: rgba(255, 255, 255, 0.03);
  --container: 1200px;
}
* {
  box-sizing: border-box;
}


body {
  margin: 0;
  font-family: "Cairo", system-ui, Segoe UI, Roboto, Arial;
  color: #e6eef6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  /* padding:40px 20px; */
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(3, 7, 18, 0.6);
}
.logo svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.45));
}
h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
p.lead {
  margin: 0;
  color: var(--muted);
}

main {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

/* content */
.content {
  
  padding: 28px;
  border-radius: 14px;
}
.section {
  margin-bottom: 20px;
}
.section h2 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #0e0e0e;
}
.policy-text {
  background: var(--glass);
  padding: 18px;
  border-radius: 12px;
  color: #323232;
}
ul {
  padding-right: 18px;
  margin: 12px 0 0 0;
}


.navbar-nav{
    margin: 0;
}

/* aside */
aside {
  position: sticky;
  top: 32px;
}
.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.01)
  );
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--accent);
  color: #032024;
  font-weight: 700;
  text-decoration: none;
}
.small {
  font-size: 13px;
  color: var(--muted);
}

/* responsive */
@media (max-width: 900px) {
  main {
    grid-template-columns: 1fr;
  }
  aside {
    position: relative;
    top: 0;
  }
}

/* small helpers */
.kicker {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 600;
  color: var(--muted);
  font-size: 13px;
}
.muted {
  color: var(--muted);
}
.meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

/* readable long text */
.policy-text p {
  margin: 0 0 10px 0;
  text-align: justify;
}
.contact {
  direction: ltr;
  text-align: left;
}
