﻿/* Light, calm, human-centered RTL theme based on the provided identity */

:root {
  /* Core palette */
  --primary: #085B43;        /* primary green */
  --primary-500: #22C55E;    /* lively green accents */
  --green-50: #F0FDF4;       /* pale green */
  --green-200: #BBF7D0;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-200: #E5E7EB;
  --text: #0f1f1a;           /* near-black on light bg */
  --muted: #5b6b64;          /* calm supportive text */
  --rose-100: #FCE2E2;
  --rose-400: #EF4444;
  --rose-700: #B91C1C;
  --yellow-300: #FDE047;
  --max: 1180px;
  --pad: clamp(16px, 3vw, 28px);

  /* Surfaces and tokens */
  --bg: var(--white);
  --surface: var(--white);
  --surface-soft: var(--gray-50);
  --line: var(--gray-200);
  --radius: 16px;
  --shadow: 0 8px 24px rgba(15, 76, 58, 0.08);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-padding-top: 72px; }

body {
  margin: 0;
  font-family: "Cairo", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1100px, calc(100% - 32px));
  margin-inline: auto;
}

/* Header */
.topbar{
  position: sticky;
  top:0;
  z-index:1000;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:0.5px;
  color: var(--primary);
}
.brand__mark{
  width:34px;height:34px;border-radius:12px;
  border:1px solid rgba(8,91,67,.20);
  background:
    radial-gradient(14px 14px at 30% 35%, rgba(255,255,255,.16), transparent 70%),
    radial-gradient(22px 18px at 70% 70%, rgba(8,91,67,.22), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0));
  box-shadow: 0 10px 22px rgba(0,0,0,.20);
}
.brand__name{font-weight:800; font-size:15px;}
.brand__tag{font-weight:500; color:var(--muted); font-size:12px;}

.nav-inline{display:flex; align-items:center; gap:10px;}
.nav-inline a{
  padding: 10px 14px;
  color: color-mix(in oklab, var(--primary) 85%, #000 0%);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
}
.nav-inline a:hover{color: var(--primary); background: rgba(8,91,67,.08);}
.nav-inline a[aria-current="page"]{color: var(--primary); background: var(--green-50);}

.menu-toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:5px;
}
.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  background: var(--text);
}

.btn {
  display: inline-block;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  padding: 10px 16px;
  border-radius: 9999px; /* pill style */
  font-weight: 700;
  transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); background-color: rgba(15,76,58,0.06); }
.btn.primary {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.btn.primary:hover { background: #0c3e30; }

.menu-toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:10px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:5px;
}
.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  background: var(--text);
}

.drawer{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.38);
  display:flex;
  justify-content:flex-start;
  opacity:0;
  visibility:hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 999;
}
.drawer__panel{
  width:min(82%, 340px);
  background:#fff;
  height:100%;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.22);
  transform: translateX(20px);
  transition: transform .25s ease;
  display:grid;
  gap:12px;
}
.drawer__panel .brand{justify-content:flex-start;}
.drawer__panel a{
  display:block;
  padding:12px;
  border-radius:12px;
  border:1px solid var(--line);
  color: var(--text);
  font-weight:700;
  background:#f9fbfa;
}
.drawer__panel a.btn{
  text-align:center;
  color:#fff;
  background: var(--primary);
  border-color: var(--primary);
}
body.nav-open{overflow:hidden;}
body.nav-open .drawer{
  opacity:1;
  visibility:visible;
}
body.nav-open .drawer__panel{
  transform: translateX(0);
}

/* ===== Unified Nav (green version of provided frame) ===== */
.law-header{
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
}
.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px;
}
.nav-links{display:flex; gap:24px;}
.nav-links a{
  text-decoration:none;
  color: var(--text);
  font-weight:700;
  font-size: 1rem;
  transition: color .2s;
  font-family: "IBM Plex Sans Arabic", "Cairo", system-ui, sans-serif;
}
.nav-links a:hover{color: var(--primary);}

.actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.consult-btn, .consult{
  background: var(--primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration:none;
  border:1px solid var(--primary);
  transition: background-color .2s, box-shadow .2s;
  font-family: "IBM Plex Sans Arabic", "Cairo", system-ui, sans-serif;
}
.consult-btn:hover, .consult:hover{
  background: #074836;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.menu-toggle.law{
  background: none;
  border: 1px solid var(--line);
  font-size: 1.2rem;
  color: var(--text);
  cursor: pointer;
  display: none;
  border-radius: 12px;
  padding: 8px 10px;
  font-family: "IBM Plex Sans Arabic", "Cairo", system-ui, sans-serif;
}

/* Mega menu overlay */
.mega-menu{
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.55);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition: all 0.3s ease;
  z-index: 1200;
}
.mega-menu.active{
  opacity:1;
  visibility:visible;
}
.mega-content{
  background: #fff;
  width: min(88%, 420px);
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  display:flex;
  flex-direction:column;
  gap: 18px;
  text-align:center;
  position: relative;
}
.close-btn{
  position:absolute;
  top: 14px;
  left: 14px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
}
.mega-content a{
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  padding: 10px;
  border-radius: 12px;
  font-family: "IBM Plex Sans Arabic", "Cairo", system-ui, sans-serif;
}
.mega-content a:hover{color: var(--primary); background: rgba(8,91,67,.08);}
.menu-buttons{
  display:flex;
  flex-direction:column;
  gap: 12px;
  margin-top: 6px;
}
.menu-buttons .consult{width:100%;}

@media(max-width: 992px){
  .nav-links{display:none;}
  .menu-toggle.law{display:block;}
  .consult-btn{display:none;}
}

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: clip;
  background: var(--surface-soft);
}
.hero.slim { padding: 40px 0 24px; }
.hero-bg { display: none; }
.hero-inner { text-align: center; }
.hero h1 { margin: 0 0 12px; font-size: clamp(36px, 7vw, 82px); line-height: 1.08; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
.hero .lead { margin: 0 auto 14px; color: var(--muted); max-width: 68ch; font-weight: 600; font-size: clamp(18px, 2.2vw, 26px); }
.hero .btn { border-color: var(--primary); color: var(--primary); }
.hero .btn:hover { background-color: rgba(15,76,58,0.06); }
.hero .btn.primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.hero .actions { margin-top: 22px; display: inline-flex; gap: 12px; }
.hero .actions .btn { padding: 14px 22px; font-size: 18px; border-width: 2px; }

/* Profile page layout */
.profile-page { background: #f6fbf8; padding-bottom: 40px; }
.profile-hero { padding: 32px 0 8px; }
.hero-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  background: linear-gradient(135deg, #0f5341 0%, #0c3c2f 35%, #0f5341 100%);
  color: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(320px 160px at 80% 20%, rgba(255,255,255,0.12), transparent 60%),
    radial-gradient(220px 120px at 15% 20%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.hero-info { position: relative; z-index: 1; display: grid; gap: 10px; }
.eyebrow { margin: 0; letter-spacing: 1px; font-size: 13px; opacity: 0.8; }
.hero-info h1 { margin: 0; font-size: clamp(28px, 4vw, 36px); }
.subtitle { margin: 0; color: rgba(255,255,255,0.9); line-height: 1.6; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-weight: 700;
}
.hero-avatar {
  position: relative;
  z-index: 1;
  width: 140px;
  height: 140px;
  justify-self: end;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.15);
  background-size: cover;
  background-position: center;
}
.hero-avatar.has-photo .avatar-fallback { display: none; }
.avatar-fallback { color: rgba(255,255,255,0.8); font-weight: 700; }

.profile-sections { padding: 10px 0 40px; }
.section-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(15,76,58,0.08);
  border: 1px solid #e4efe8;
  margin-bottom: 14px;
}
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.section-head h2 { margin: 0; font-size: 18px; }
.section-head .icon { font-size: 18px; }
.section-body { margin: 0; color: #2f3b35; line-height: 1.7; }
.achievements-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.pill {
  background: #e9f7ef;
  color: #0f4c3a;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cde9d8;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.pill.muted { color: #80928a; background: #f3f7f5; border-color: #e1e8e4; }
.quote-card {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f0f9f4;
  border: 1px solid #d6ebdf;
  color: #1f352c;
  line-height: 1.8;
  font-weight: 600;
}

/* About-min */
.about-min { border-bottom: 1px solid var(--line); padding: 20px 0; background: var(--surface); }
.small { font-size: 15px; color: var(--muted); }

/* Quick links */
.quick-links { padding: 20px 0; border-bottom: 1px solid var(--line); }
.links-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.ql { text-align: center; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; background: linear-gradient(180deg, var(--surface), var(--surface-2)); }
.ql:hover { border-color: color-mix(in oklab, var(--line), var(--text) 25%); box-shadow: var(--shadow); transform: translateY(-2px); }

/* Remembrance */
.remembrance { padding: 10px 0; border-bottom: 1px solid var(--line); }
.rem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.rem-card { display: flex; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--line); border-radius: var(--radius); padding: 8px 10px; background: linear-gradient(180deg, var(--surface), var(--surface-2)); }
.rem-card .icon { font-size: 16px; }
.rem-card .t { font-size: 16px; }


/* Stats */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--green-50), #fff); }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; padding: 18px 0; }
.stat { text-align: center; padding: 12px 8px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), var(--surface-2)); }
.stat .num { font-weight: 800; font-size: 24px; color: var(--primary); }
.stat .label { color: var(--muted); font-size: 14px; }

/* Gallery */
.gallery { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface-soft); }
.gallery h2 { margin: 0 0 16px; font-size: 26px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 12px; transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease; cursor: default; box-shadow: 0 6px 18px rgba(0,0,0,0.04); }
.card:focus-visible { outline: 2px solid color-mix(in oklab, var(--accent) 60%, #fff 0%); outline-offset: 2px; }
.card:hover { transform: translateY(-3px); border-color: #cdd8d3; box-shadow: 0 12px 26px rgba(15,76,58,0.12); }
.thumb { height: 180px; border-radius: 14px; margin-bottom: 10px; background-size: cover; background-position: center; background-color: var(--green-50); }
.card h3 { margin: 0 0 4px; font-size: 18px; }
.card .meta { margin: 0; color: var(--muted); font-size: 13px; }

/* Placeholder gradients for thumbs */
.bg1 { background-image: linear-gradient(135deg, #222, #3a1f1f), radial-gradient(500px 200px at 80% 10%, rgba(224,68,68,0.4), transparent 60%); background-blend-mode: screen; }
.bg2 { background-image: linear-gradient(135deg, #1e2330, #2a2f3a), radial-gradient(500px 220px at 20% 10%, rgba(245,159,0,0.35), transparent 60%); background-blend-mode: screen; }
.bg3 { background-image: linear-gradient(135deg, #1c2320, #283530), radial-gradient(500px 220px at 60% 10%, rgba(90,200,250,0.25), transparent 60%); background-blend-mode: screen; }
.bg4 { background-image: linear-gradient(135deg, #2a1f2a, #3a2940), radial-gradient(500px 220px at 30% 10%, rgba(255,105,180,0.25), transparent 60%); background-blend-mode: screen; }
.bg5 { background-image: linear-gradient(135deg, #26261f, #3b3a28), radial-gradient(500px 220px at 50% 10%, rgba(245,159,0,0.3), transparent 60%); background-blend-mode: screen; }
.bg6 { background-image: linear-gradient(135deg, #1f2626, #283a3a), radial-gradient(500px 220px at 50% 10%, rgba(224,68,68,0.3), transparent 60%); background-blend-mode: screen; }

/* About */
.about { padding: 44px 0; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #fff, var(--green-50)); }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; align-items: center; }
.features { padding: 0; margin: 14px 0 0; list-style: none; color: var(--muted); }
.features li { padding: 6px 0; border-bottom: 1px dashed var(--line); }
.panel { height: 220px; border-radius: var(--radius); background:
  radial-gradient(600px 240px at 80% 10%, rgba(187,247,208,0.35), transparent 60%),
  radial-gradient(500px 200px at 10% 0%, rgba(240,253,244,0.9), transparent 60%),
  linear-gradient(180deg, #fff, #fff);
  border: 1px solid var(--line);
}

/* CTA */
.cta { padding: 44px 0; }
.cta h2 { margin: 0 0 6px; }
.cta p { color: var(--muted); margin: 0 0 12px; }

/* Closing */
.closing-note { padding: 20px 0 40px; text-align: center; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 18px 0; color: var(--muted); text-align: center; background: var(--surface-soft); }

/* Forms */
.form-wrap { padding: 30px 0; background: linear-gradient(180deg, var(--green-50), #fff); }
.form { display: grid; gap: 16px; }
.grid-2 { display: grid; gap: 12px; grid-template-columns: repeat(2,1fr); }
.field label { display: block; margin-bottom: 6px; font-weight: 600; }
.field .req { color: var(--accent); }
.field input[type="text"],
.field input[type="number"],
.field input[type="search"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: #96dabb; box-shadow: 0 0 0 3px rgba(34,197,94,0.15); }
.hint { color: var(--muted); }
.counter { text-align: left; color: var(--muted); font-size: 13px; }
.actions.end { display: flex; gap: 10px; justify-content: flex-start; }

.dropzone { border: 2px dashed rgba(15,76,58,0.25); border-radius: 16px; padding: 22px; text-align: center; cursor: pointer; background: linear-gradient(180deg, #fff, var(--green-50)); }
.dz-inner { display: grid; gap: 6px; place-items: center; }

.form-message { margin-top: 8px; color: var(--rose-700); }
.form-message.ok { color: #7ddc7d; }

.filters { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.input { width: 260px; }

/* Loader */
.loader { height: 4px; width: 100%; background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent); overflow: hidden; border-radius: 2px; margin: 8px 0; }
.loader.spinning::before { content: ""; display: block; height: 100%; width: 30%; background: var(--primary); filter: saturate(0.9); animation: loadrun 1.2s linear infinite; border-radius: 2px; }
@keyframes loadrun { 0% { transform: translateX(-40%); } 100% { transform: translateX(340%); } }

.profile .statbox { margin-top: 12px; color: var(--muted); border: 1px solid var(--line); border-radius: 10px; padding: 10px; background: linear-gradient(180deg, var(--surface), var(--surface-2)); }
blockquote.quote { margin: 12px 0; padding: 12px 14px; border-inline-start: 4px solid var(--primary-500); background: var(--green-50); border-radius: 10px; }

/* New homepage structure */
.light { background: var(--surface); }
.core { padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fdfefc; }
.find { padding: 34px 0; border-bottom: 1px solid var(--line); }
.vision-principles { padding: 40px 0; background: #f9fbf9; }
.panel-soft {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 20px rgba(15,76,58,0.05);
}
.find-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.find-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15,76,58,0.04);
}
.find-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--primary);
  border: 1px solid color-mix(in oklab, var(--primary) 40%, #fff 60%);
  border-radius: 50%;
  background: #f6fbf8;
  font-size: 16px;
}
.principles { display: grid; gap: 10px; }
.principle {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdfb;
  font-weight: 700;
  color: var(--text);
}
.section-head-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.fade { animation: fadeIn 0.8s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: repeat(2,1fr); }
  .rem-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav-inline{display:none;}
  .menu-toggle{display:inline-flex;}
  .card-grid { grid-template-columns: 1fr; }
  .thumb { height: 120px; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; }
}

@media (min-width: 900px) {
  .hero { padding: 160px 0 120px; }
}


/* About page */
.about-page { background: #f6fbf8; }
.about-hero { padding: 48px 0 24px; text-align: center; }
.about-hero h1 { margin: 8px 0; font-size: clamp(28px, 5vw, 40px); color: #0f4c3a; font-weight: 800; }
.about-hero .lead { color: #2f3b35; max-width: 720px; margin: 0 auto; }
.values { padding: 20px 0 10px; }
.section-title { text-align: center; font-size: 26px; color: #0f4c3a; margin: 0 0 16px; }
.values-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.value-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e4efe8;
  box-shadow: 0 12px 24px rgba(15, 76, 58, 0.06);
}
.value-card h3 { margin: 0 0 6px; color: #0f4c3a; font-size: 18px; }
.value-card p { margin: 0; color: #2f3b35; line-height: 1.6; }
.value-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f1f5f3;
  color: #0f4c3a;
  font-size: 22px;
}
.guidelines { padding: 20px 0; }
.guidelines-box {
  background: #eef4ff;
  border: 1px solid #d7e3ff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(29, 78, 216, 0.08);
}
.guidelines-box h2 { margin: 0 0 12px; color: #1d4ed8; }
.guidelines-box ul { margin: 0; padding-right: 18px; color: #2f3b35; line-height: 1.7; }
.guidelines-box li { margin-bottom: 8px; }
.contact { padding: 20px 0 40px; }
.contact-box {
  text-align: center;
  background: #fff;
  border: 1px solid #e4efe8;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(15, 76, 58, 0.08);
}
.contact-box h2 { margin: 0 0 10px; color: #0f4c3a; }
.contact-box p { margin: 0 0 14px; color: #2f3b35; }

