:root {
  --orange: #f15b22;
  --orange-dark: #d94d18;
  --charcoal: #2a2730;
  --charcoal-deep: #1f1d24;
  --text: #333333;
  --muted: #6b6b6b;
  --light: #f7f7f7;
  --white: #ffffff;
  --border: #ececec;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Nunito Sans", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.container-wide {
  width: min(1400px, calc(100% - 24px));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 70px 0;
}

.subtitle {
  display: block;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  margin-bottom: 8px;
  font-size: 15px;
}

.subtitle.blue {
  color: #3b4a8a;
}

.section-title {
  font-size: 42px;
  color: var(--orange);
}

.section-title.dark {
  color: var(--charcoal);
}

.section-title.white {
  color: var(--white);
}

.text-center {
  text-align: center;
}

.lead {
  color: var(--muted);
  font-size: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border: 2px solid transparent;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover {
  background: var(--orange-dark);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
}

.btn-white:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--orange);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--orange);
}

.btn-block {
  width: 100%;
}

/* Top bar */
.topbar {
  background: var(--charcoal);
  color: #d5d5d5;
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 46px;
}

.topbar-left,
.topbar-right,
.topbar-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar a:hover {
  color: var(--orange);
}

.topbar i {
  color: var(--orange);
  margin-right: 6px;
}

.btn-donate {
  background: var(--orange);
  color: var(--white) !important;
  padding: 13px 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-donate:hover {
  background: var(--orange-dark);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.brand-text span {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--charcoal);
  font-weight: 700;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--charcoal);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
}

.search-toggle,
.menu-toggle {
  background: none;
  border: 0;
  color: var(--charcoal);
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle {
  display: none;
}

.search-panel {
  display: none;
  padding: 0 0 18px;
}

.search-panel.open {
  display: block;
}

.search-panel form {
  display: flex;
  max-width: 420px;
  margin-left: auto;
}

.search-panel input {
  flex: 1;
  border: 1px solid var(--border);
  padding: 10px 14px;
}

.search-panel button {
  background: var(--orange);
  color: #fff;
  border: 0;
  padding: 0 16px;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 640px;
  background: center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero::before,
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 24, 0.58);
}

.hero-content,
.page-banner h1 {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 62px;
  max-width: 900px;
  margin: 0 auto 28px;
  color: var(--white);
}

.page-banner {
  min-height: 280px;
  background: center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner h1 {
  color: var(--white);
  font-size: 56px;
  margin: 0;
}

/* Mission */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.mission-photo {
  position: relative;
}

.mission-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  left: 0;
  bottom: 30px;
  background: var(--charcoal);
  color: var(--white);
  padding: 22px 30px;
  font-family: var(--serif);
  font-size: 22px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  gap: 14px;
}

.feature-item i,
.icon-circle {
  width: 54px;
  height: 54px;
  border: 2px solid var(--orange);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 20px;
}

.feature-item h4 {
  margin-bottom: 6px;
  font-size: 20px;
  color: var(--charcoal);
}

.feature-item p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

/* Split CTA */
.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-box {
  min-height: 240px;
  padding: 70px 60px;
  color: var(--white);
  background: center/cover no-repeat;
  position: relative;
}

.split-box::before {
  content: "";
  position: absolute;
  inset: 0;
}

.split-box.dark::before {
  background: rgba(42, 39, 48, 0.92);
}

.split-box.orange::before {
  background: rgba(241, 91, 34, 0.92);
}

.split-box > * {
  position: relative;
  z-index: 1;
}

.split-box h3 {
  font-size: 32px;
  color: var(--white);
}

.split-box p {
  max-width: 460px;
}

/* Campaigns */
.campaign-grid,
.card-grid-3,
.event-grid,
.blog-grid,
.volunteer-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.campaign-card,
.event-card,
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: 0.25s ease;
}

.campaign-card:hover,
.event-card:hover,
.blog-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.campaign-card img,
.event-card img,
.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.tag {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.card-body h3 {
  font-size: 24px;
  color: var(--charcoal);
}

.progress {
  height: 8px;
  background: #eee;
  border-radius: 8px;
  overflow: hidden;
  margin: 16px 0 10px;
}

.progress span {
  display: block;
  height: 100%;
  background: var(--orange);
}

.raised {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.card-actions .btn {
  padding: 10px 16px;
  font-size: 12px;
}

/* Stats */
.stats {
  background: var(--charcoal) center/cover no-repeat;
  position: relative;
  color: var(--white);
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 39, 48, 0.9);
}

.stats .container {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats-grid i {
  font-size: 36px;
  color: var(--orange);
  margin-bottom: 10px;
}

.stats-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
}

/* Help icons */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.help-item {
  text-align: center;
  padding: 10px 20px;
}

.help-item i {
  font-size: 42px;
  color: var(--orange);
  margin-bottom: 16px;
}

.help-item h3 {
  color: var(--charcoal);
}

/* FAQ */
.faq-split,
.two-col,
.contact-grid,
.donate-grid,
.article-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.faq-split img,
.about-intro img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.accordion-item {
  border: 1px solid var(--border);
  margin-bottom: 12px;
  background: var(--light);
}

.accordion-item.active {
  background: var(--white);
}

.accordion-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--charcoal);
}

.accordion-item.active .accordion-btn {
  color: var(--orange);
}

.accordion-body {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}

.accordion-item.active .accordion-body {
  display: block;
}

/* Volunteers */
.volunteer-row {
  grid-template-columns: repeat(4, 1fr);
}

.volunteer-card {
  text-align: center;
}

.volunteer-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 14px;
}

.volunteer-card h4 {
  margin-bottom: 4px;
}

.volunteer-card span {
  color: var(--orange);
  font-size: 14px;
}

.quad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quad-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.vol-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Testimonials */
.testimonials {
  background: var(--light) center/cover no-repeat;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card i {
  color: var(--orange);
  font-size: 28px;
  margin-bottom: 12px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-user img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

/* Gallery strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-strip img,
.gallery-masonry img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-masonry img:nth-child(1),
.gallery-masonry img:nth-child(6) {
  height: 360px;
}

/* Donate box */
.donate-lead {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: stretch;
}

.donate-copy {
  padding: 70px 50px;
  background: var(--light) center/cover no-repeat;
}

.donate-form-box {
  background: var(--orange);
  color: var(--white);
  padding: 50px 40px;
}

.donate-form-box h3,
.donate-form-box p {
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid .full,
.form-row {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #ddd;
  background: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--orange);
  border-color: var(--orange);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #c0392b;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 14px;
}

.field-error {
  color: #c0392b;
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

.field-error.show,
.form-error.show {
  display: block;
}

.success-msg {
  display: none;
  background: var(--white);
  color: var(--charcoal);
  padding: 22px;
  font-weight: 700;
  border-left: 4px solid var(--orange);
}

.success-msg.show {
  display: block;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.checkbox input {
  width: auto;
}

/* Blog */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.blog-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.meta {
  color: var(--muted);
  font-size: 13px;
}

.meta i {
  color: var(--orange);
  margin-right: 4px;
}

.read-more {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.sidebar-box {
  background: var(--light);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-box h4 {
  color: var(--charcoal);
  margin-bottom: 16px;
}

.sidebar-box ul li {
  margin-bottom: 10px;
}

.sidebar-box ul i {
  color: var(--orange);
  margin-right: 8px;
}

.related-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.related-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.author-box {
  text-align: center;
}

.author-box img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
}

blockquote.quote {
  background: var(--charcoal);
  color: var(--white);
  padding: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  margin: 28px 0;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 24px;
  color: var(--muted);
}

.speakers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
  margin-top: 24px;
}

.speakers img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
}

.volunteer-apply {
  background: var(--charcoal);
  color: var(--white);
  padding: 28px;
}

.volunteer-apply h3 {
  color: var(--orange);
}

.mid-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.mid-cta {
  min-height: 220px;
  padding: 40px 30px;
  color: var(--white);
  background: center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.mid-cta::before {
  content: "";
  position: absolute;
  inset: 0;
}

.mid-cta.photo::before {
  background: rgba(20, 18, 24, 0.55);
}

.mid-cta.plain {
  background: var(--white);
  color: var(--charcoal);
}

.mid-cta.plain::before {
  display: none;
}

.mid-cta.orange::before {
  background: rgba(241, 91, 34, 0.78);
}

.mid-cta > * {
  position: relative;
  z-index: 1;
}

/* Newsletter bar */
.newsletter-bar,
.involve-bar {
  background: var(--orange);
  color: var(--white);
}

.newsletter-inner,
.involve-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
}

.involve-inner h3,
.newsletter-inner h3 {
  color: var(--white);
  margin: 0;
  font-size: 28px;
}

.newsletter-inner form {
  display: flex;
  gap: 0;
  min-width: 420px;
}

.newsletter-inner input {
  flex: 1;
}

.hands-icon {
  width: 62px;
  height: 62px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  background: var(--charcoal) center/cover no-repeat;
  color: #cfcfcf;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 39, 48, 0.94);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 36px;
  padding: 80px 0 40px;
}

.site-footer h4 {
  color: var(--white);
  margin-bottom: 18px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 52px;
  height: 52px;
}

.footer-logo strong,
.footer-logo span {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.15;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a::before {
  content: "› ";
  color: var(--orange);
}

.footer-links a:hover,
.site-footer a:hover {
  color: var(--orange);
}

.social-circles {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.social-circles a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.social-circles .fb {
  background: #3b5998;
}
.social-circles .tw {
  background: #1da1f2;
}
.social-circles .yt {
  background: #ff0000;
}
.social-circles .ig {
  background: #555;
}

.footer-form input {
  background: #3a3742;
  border: 1px solid #4a4752;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-form input::placeholder {
  color: #bbb;
}

.copyright {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 16px 0;
  font-size: 13px;
}

.copyright-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.copyright-links a {
  color: #ddd;
}

.legal-content h2 {
  color: var(--orange);
  font-size: 28px;
  margin-top: 28px;
}

.legal-content h3 {
  font-size: 20px;
  color: var(--charcoal);
  margin-top: 18px;
}

.contact-info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-info-row i {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.dark-band {
  background: var(--charcoal);
  color: var(--white);
  padding: 70px 0;
}

.dark-band h2 {
  color: var(--orange);
}

.help-prompt {
  background: var(--light) center/cover no-repeat;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

/* Event cards mixed */
.event-card .card-body h3 {
  color: var(--orange);
}

/* Activities band */
.activities-band {
  background: var(--charcoal);
  color: var(--white);
  padding: 70px 0;
}

.activities-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.activities-inner h2 {
  color: var(--orange);
  max-width: 620px;
}

/* Legal / subscribe pages */
.simple-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 42px;
  }
  .section-title,
  .page-banner h1 {
    font-size: 36px;
  }
  .campaign-grid,
  .card-grid-3,
  .event-grid,
  .blog-grid,
  .help-grid,
  .stats-grid,
  .mid-cta-grid {
    grid-template-columns: 1fr 1fr;
  }
  .volunteer-row,
  .gallery-masonry,
  .gallery-strip,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mission-grid,
  .faq-split,
  .two-col,
  .contact-grid,
  .donate-grid,
  .article-layout,
  .vol-intro,
  .donate-lead,
  .blog-layout,
  .split-cta {
    grid-template-columns: 1fr;
  }
  .newsletter-inner,
  .involve-inner,
  .activities-inner {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-inner form {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 12px 20px 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }
  .main-nav.open {
    display: flex;
  }
  .navbar {
    position: relative;
  }
  .topbar-left span {
    display: none;
  }
  .campaign-grid,
  .card-grid-3,
  .event-grid,
  .blog-grid,
  .help-grid,
  .stats-grid,
  .volunteer-row,
  .gallery-masonry,
  .gallery-strip,
  .footer-grid,
  .feature-grid,
  .testimonial-grid,
  .blog-main-grid,
  .mid-cta-grid,
  .speakers,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 460px;
  }
  .hero h1,
  .page-banner h1 {
    font-size: 32px;
  }
  .section {
    padding: 60px 0;
  }
  .split-box,
  .donate-copy,
  .donate-form-box {
    padding: 40px 24px;
  }
}
