:root {
  --primary: #2d2a5a;
  --accent: #26d0b2;
  --white: #ffffff;
  --text: #333333;
  --bg-light: #f9f9f9;
  --border: #eaeaea;
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  --radius: 20px;
  --container: 1200px;
  --nav-height: 70px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  line-height: 1.7;
  color: var(--text);
  background-color: var(--white);
}

[dir="rtl"] body,
[dir="rtl"] {
  font-family: "Cairo", sans-serif;
  text-align: right;
}

[dir="ltr"] body,
[dir="ltr"] {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: left;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #00c6a9, #00a9ff);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}

.logo-img {
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  inset-inline-start: 0;
  bottom: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-lang {
  background: white;
  border-radius: 20px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.btn-lang:hover,
.lang-btn:hover {
  background: white;
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  flex-shrink: 0;
  padding: 0;
}

.menu-toggle .bar {
  width: 24px;
  height: 3px;
  background-color: white;
  border-radius: 20px;
  transition: 0.3s ease;
  display: block;
}

.menu-toggle .bar + .bar {
  margin-top: 5px;
}

.menu-toggle.is-active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) 20px 60px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 42, 90, 0.45);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.glass-card {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 50px 36px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
}

.highlight {
  color: var(--accent);
}

.hero-desc {
  color: white;
  margin-bottom: 30px;
  font-size: 1.15rem;
}

/* Shared sections */
section {
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

.about-section,
.programs-section,
.volunteer-section,
.contact-section {
  padding: 100px 0;
}

.support-section,
.news-section {
  padding: 80px 0;
}

.about-section,
.support-section,
.news-section,
.contact-section {
  background: var(--bg-light);
}

.programs-section,
.volunteer-section {
  background: white;
}

.section-header,
.news-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.main-title,
.section-header h2,
.news-header h2,
.section-title {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 15px;
}

.sub-title,
.section-header p,
.news-header p,
.support-description {
  color: #666;
  font-size: 1.08rem;
  line-height: 1.9;
}

/* About */
.about-main-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.about-text {
  flex: 1.2;
}

.about-image {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

[dir="rtl"] .about-main-content {
  flex-direction: row;
}

[dir="ltr"] .about-main-content {
  flex-direction: row-reverse;
}

.large-logo-img {
  max-width: 380px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
  transition: 0.4s ease;
}

.large-logo-img:hover {
  transform: translateY(-10px) scale(1.03);
  filter: drop-shadow(0 20px 30px rgba(38, 208, 178, 0.35));
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.about-card {
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  border: 2px solid var(--accent);
  transition: 0.35s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(38, 208, 178, 0.22);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.about-card h3,
.about-card p,
.about-card svg {
  transition: 0.35s ease;
}

.about-card:hover h3,
.about-card:hover p,
.about-card:hover svg {
  color: white;
}

.card-icon {
  width: 75px;
  height: 75px;
  background: rgba(38, 208, 178, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.card-icon svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

/* Programs */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
}

.program-card {
  background: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.35s ease;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(38, 208, 178, 0.22);
}

.program-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.08);
}

.program-info {
  padding: 24px;
  text-align: center;
  flex-grow: 1;
}

.program-info h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.program-info p {
  color: #666;
  font-size: 0.96rem;
  line-height: 1.8;
}

/* Buttons */
.btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(38, 208, 178, 0.3);
}

/* Volunteer */
.volunteer-content-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 70px;
}

.volunteer-text,
.volunteer-image {
  flex: 1;
}

.standard-vol-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 15px 15px 40px rgba(38, 208, 178, 0.25);
  transition: 0.35s ease;
}

.standard-vol-img:hover {
  transform: scale(1.02);
  box-shadow: 18px 18px 48px rgba(38, 208, 178, 0.34);
}

.opp-list {
  list-style: none;
  margin-top: 18px;
}

.opp-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-register {
  display: inline-block;
  margin-top: 24px;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(38, 208, 178, 0.3);
}

.btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(38, 208, 178, 0.4);
}

/* Forms */
.registration-form-container,
.contact-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.registration-form-container {
  border: 2px solid var(--accent);
  box-shadow: 0 10px 30px rgba(38, 208, 178, 0.15);
}

.form-title {
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 1.7rem;
  font-weight: 800;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  outline: none;
  transition: 0.25s ease;
  background: white;
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 4px rgba(38, 208, 178, 0.12);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.06rem;
  cursor: pointer;
  transition: 0.25s ease;
  font-weight: 700;
}

.submit-btn:hover {
  background: var(--accent);
}

/* Support */
.support-content-extra {
  text-align: center;
  margin-bottom: 40px;
}

.support-content-extra h3 {
  margin-top: 18px;
  color: var(--primary);
  font-size: 1.5rem;
}

.donation-cards-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.donation-card {
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 380px;
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  border: 2px solid var(--accent);
  box-shadow: 0 10px 30px rgba(38, 208, 178, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.donation-card:hover {
  transform: translateY(-10px);
}

.support-img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 15px;
}

.btn-donate-now {
  margin-top: 20px;
  padding: 12px 35px;
  background: var(--primary);
  color: white;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-donate-now:hover {
  background: var(--accent);
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.category-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.35s ease;
  text-align: center;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 20px 45px rgba(38, 208, 178, 0.12);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.category-card:hover .card-image img {
  transform: scale(1.08);
}

.card-content {
  padding: 22px;
}

.card-content h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 18px;
}

.view-btn {
  display: inline-block;
  padding: 10px 30px;
  background: linear-gradient(90deg, #1a2a5e 0%, #26d0b2 100%);
  color: white;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.3s ease;
}

.view-btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

/* Contact */
.contact-flex-container {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

[dir="rtl"] .contact-flex-container {
  flex-direction: row-reverse;
}

[dir="ltr"] .contact-flex-container {
  flex-direction: row;
}

.contact-card {
  flex: 1;
  transition: 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 45px rgba(38, 208, 178, 0.12);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  color: #333;
}

.contact-section a,
.icon-link,
.info-text a {
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #f0fdfa;
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--accent);
  transition: 0.3s ease;
  flex-shrink: 0;
}

.contact-item:hover .icon-box {
  background: var(--accent);
  color: white;
  transform: scale(1.08) rotate(10deg);
}

.info-text a {
  display: block;
  color: #333;
  margin-bottom: 3px;
  font-weight: 500;
}

.info-text a:hover {
  color: var(--accent);
}

.info-text p,
.info-text span,
.info-text small {
  color: #555;
}

/* Footer */
.main-footer {
  background: linear-gradient(90deg, #1a2a5e 0%, #26d0b2 100%);
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
}

.footer-about h3 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: bold;
  color: #ffffff;
}

.footer-about p {
  line-height: 1.9;
  font-size: 16px;
  opacity: 0.95;
  margin: 0;
}

.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 25px 0 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: white;
  margin: 0 5px;
  transition: opacity 0.3s;
  font-weight: 500;
}

.footer-links a:hover {
  opacity: 0.75;
}

.separator {
  margin: 0 10px;
  opacity: 0.45;
}

/* Details page */
.details-nav {
  background: linear-gradient(90deg, #1a2a5e 0%, #26d0b2 100%);
  padding: 14px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.nav-logo img {
  height: 45px;
}

.nav-controls {
  display: flex;
  gap: 14px;
  align-items: center;
}

.back-btn-styled {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.back-btn-styled:hover {
  background-color: #26d0b2;
  color: #1a2a5e;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lang-btn {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.lang-btn:hover {
  background: white;
  color: #26d0b2;
}

.details-container {
  padding: 120px 20px 60px;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 80vh;
}

.content-section {
  margin-bottom: 60px;
  padding: 30px;
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  border-inline-start: 6px solid #26d0b2;
  transition: transform 0.3s ease;
}

.content-section:hover {
  transform: scale(1.01);
}

.content-section h2 {
  color: #1a2a5e;
  font-size: 2rem;
  margin-bottom: 25px;
}

.text-block p,
.text-block li,
.content-section p,
.content-section li {
  color: #555;
  line-height: 1.9;
}

.text-block ul,
.content-section ul {
  padding-inline-start: 20px;
  margin: 12px 0;
}

/* Responsive */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex !important;
  }

  .nav-content {
    gap: 8px;
  }

  .logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-img {
    height: 36px;
  }

  .btn-lang {
    padding: 8px 14px;
    font-size: 0.95rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(82vw, 300px);
    height: 100vh;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 90px 24px 24px;
    transition: 0.35s ease;
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0,0,0,0.25);
    display: flex;
  }

  [lang="en"] .nav-links {
    right: auto;
    left: -100%;
  }

  .nav-links.active {
    right: 0;
  }

  [lang="en"] .nav-links.active {
    left: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
  }

  [dir="rtl"] .nav-content {
    flex-direction: row;
  }

  [dir="rtl"] .menu-toggle {
    order: 1;
  }

  [dir="rtl"] .nav-actions {
    order: 2;
  }

  [dir="rtl"] .logo {
    order: 3;
    justify-content: flex-end;
  }

  [dir="ltr"] .logo {
    order: 1;
    justify-content: flex-start;
  }

  [dir="ltr"] .nav-actions {
    order: 2;
  }

  [dir="ltr"] .menu-toggle {
    order: 3;
  }

  .about-main-content,
  .volunteer-content-wrapper,
  .contact-flex-container {
    flex-direction: column !important;
  }

  .volunteer-text,
  .volunteer-image,
  .contact-card {
    width: 100%;
  }

  .standard-vol-img {
    height: 360px;
  }

  .main-title,
  .section-header h2,
  .news-header h2,
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 72px;
  }

  .container,
  .nav-container {
    padding: 0 16px;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .logo-img {
    height: 34px;
  }

  .glass-card {
    padding: 34px 20px;
    border-radius: 22px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .main-title,
  .section-header h2,
  .news-header h2,
  .section-title,
  .content-section h2 {
    font-size: 1.7rem;
  }

  .about-section,
  .programs-section,
  .volunteer-section,
  .contact-section {
    padding: 70px 0;
  }

  .support-section,
  .news-section {
    padding: 60px 0;
  }

  .about-card,
  .registration-form-container,
  .contact-card,
  .content-section {
    padding: 24px 18px;
  }

  .large-logo-img {
    max-width: 280px;
  }

  .programs-grid,
  .about-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .program-image,
  .card-image {
    height: 210px;
  }

  .donation-card {
    min-width: 100%;
    max-width: 100%;
  }

  .support-img {
    min-height: 220px;
  }

  .nav-controls {
    gap: 8px;
  }

  .btn-lang,
  .lang-btn,
  .back-btn-styled {
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  .details-container {
    padding: 110px 16px 40px;
  }

  .nav-logo .logo-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: calc(var(--nav-height) + 24px);
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .glass-card {
    padding: 28px 16px;
  }

  .main-title,
  .section-header h2,
  .news-header h2,
  .section-title,
  .content-section h2 {
    font-size: 1.45rem;
  }

  .standard-vol-img {
    height: 260px;
  }

  .program-image,
  .card-image {
    height: 190px;
  }

  .footer-about p {
    font-size: 14px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu-toggle .bar {
    width: 22px;
  }

  .btn-lang {
    padding: 7px 12px;
    font-size: 0.9rem;
  }
}