
:root {
  --ghe-green: #1f8f4d;
  --ghe-blue: #6aaedb;
  --ghe-sage: #e7f2eb;
  --ghe-sand: #f3ece2;
  --ghe-white: #ffffff;
  --ghe-ink: #0f1d16;
  --ghe-gray: #f5f7f6;
  --ghe-muted: #5a6a62;
  --ghe-border: rgba(15, 29, 22, 0.1);
  --ghe-shadow: 0 20px 40px rgba(15, 29, 22, 0.08);
  --ghe-radius: 24px;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--ghe-ink);
  background:
    radial-gradient(circle at top left, rgba(106, 174, 219, 0.16), transparent 30%),
    linear-gradient(180deg, #fbfdfb 0%, #f2f7f4 100%);
  line-height: 1.6;
  margin: 0;
}

a {
  color: var(--ghe-green);
  text-underline-offset: 0.18em;
}

.ghe-shell {
  min-height: 100vh;
}

.ghe-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 16px 0;
}

.ghe-site-header__inner {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 26px;
  box-shadow: 0 14px 32px rgba(15, 29, 22, 0.08);
  backdrop-filter: blur(18px);
  transition: padding 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ghe-site-header.is-condensed .ghe-site-header__inner {
  padding-block: 10px;
  box-shadow: 0 10px 24px rgba(15, 29, 22, 0.12);
}

.ghe-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ghe-ink);
  min-width: 0;
}

.ghe-brand:hover,
.ghe-brand:focus {
  color: var(--ghe-ink);
}

.ghe-brand__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #123527, #1f8f4d 70%, #6aaedb);
  color: var(--ghe-white);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ghe-brand__text {
  display: grid;
  gap: 2px;
}

.ghe-brand__text strong {
  font-size: 1rem;
}

.ghe-brand__text span {
  color: var(--ghe-muted);
  font-size: 0.84rem;
}

.ghe-site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.ghe-site-nav__menu>nav,
.ghe-site-nav__menu .menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ghe-site-nav__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ghe-site-nav__menu li {
  margin: 0;
}

.ghe-site-nav__menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ghe-ink);
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.ghe-site-nav__menu a:hover,
.ghe-site-nav__menu a:focus,
.ghe-site-nav__menu a.is-active {
  background: rgba(31, 143, 77, 0.1);
  color: var(--ghe-green);
}

.ghe-site-nav__actions,
.ghe-site-footer__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ghe-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: var(--ghe-green);
  color: var(--ghe-white);
  box-shadow: 0 12px 22px rgba(31, 143, 77, 0.16);
}


.ghe-nav-cta--ghost {
  background: rgba(31, 143, 77, 0.08);
  color: var(--ghe-green);
  box-shadow: none;
}

.ghe-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: rgba(31, 143, 77, 0.08);
  cursor: pointer;
}

.ghe-nav-toggle span:not(.visually-hidden) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ghe-ink);
  border-radius: 999px;
}

.ghe-shell__breadcrumb,
.ghe-shell__messages,
.ghe-shell__highlighted,
.ghe-shell__help {
  width: min(100%, 1240px);
  margin: 12px auto 0;
  padding-inline: 20px;
  box-sizing: border-box;
}

.ghe-main {
  padding: 24px 20px 64px;
}

.ghe-site-footer {
  background:
    radial-gradient(circle at top right, rgba(106, 174, 219, 0.14), transparent 26%),
    linear-gradient(180deg, #0f1d16 0%, #15241c 100%);
  color: rgba(255, 255, 255, 0.9);
  margin-top: 72px;
  padding: 56px 20px 26px;
}

.ghe-site-footer a {
  color: rgba(255, 255, 255, 0.92);
}

.ghe-site-footer__inner,
.ghe-site-footer__bottom,
.ghe-site-footer__region {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.ghe-site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: start;
}

.ghe-site-footer__lead h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  max-width: 12ch;
}

.ghe-site-footer__lead p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 56ch;
}

.ghe-site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ghe-site-footer__column h3 {
  margin: 0 0 12px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ghe-site-footer__column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ghe-site-footer__column li {
  color: rgba(255, 255, 255, 0.72);
}

.ghe-site-footer__column a {
  text-decoration: none;
}

.ghe-site-footer__column a:hover,
.ghe-site-footer__column a:focus {
  text-decoration: underline;
}

.ghe-site-footer__bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.ghe-site-footer__region {
  margin-top: 20px;
}

.view-content {
  display: grid;
  gap: 18px;
}

.layout-content,
.region-content>* {
  max-width: 1240px;
  margin: 0 auto;
}

.node__content {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.ghe-page,
.ghe-view-page {
  display: grid;
  gap: 28px;
}

.ghe-page-header,
.ghe-section,
.ghe-two-column,
.ghe-three-column,
.ghe-category-grid,
.ghe-topic-strip,
.ghe-faq-list {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.ghe-page-header {
  padding: 16px 0 0;
}

.ghe-page-header h1,
.ghe-hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1.05;
  margin: 0;
  max-width: 12ch;
}

.ghe-lead {
  color: var(--ghe-muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 14px 0 0;
}

.ghe-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ghe-green);
  margin-bottom: 14px;
}

.ghe-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.ghe-hero {
  background:
    linear-gradient(135deg, rgba(31, 143, 77, 0.15), rgba(106, 174, 219, 0.2)),
    linear-gradient(180deg, #ffffff 0%, #eef6f1 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 48px 40px;
  box-shadow: var(--ghe-shadow);
}

.ghe-hero--homepage {
  width: min(100%, 1160px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: end;
}

.ghe-hero__content {
  display: grid;
  gap: 14px;
}

.ghe-hero__panel,
.ghe-card {
  background: var(--ghe-white);
  border-radius: var(--ghe-radius);
  padding: 24px;
  border: 1px solid var(--ghe-border);
  box-shadow: var(--ghe-shadow);
}

.ghe-panel-image,
.ghe-inline-image,
.ghe-photo,
.ghe-banner-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}

.ghe-panel-image {
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
}

.ghe-intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.9fr);
  gap: 20px;
  align-items: center;
}

.ghe-inline-image {
  min-height: 220px;
}

.ghe-hero__badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ghe-sage);
  color: var(--ghe-green);
  font-weight: 700;
  margin-bottom: 14px;
}

.ghe-inline-points,
.ghe-detail-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.ghe-hero p,
.ghe-card p,
.ghe-feature-card p,
.ghe-process-step p {
  color: var(--ghe-muted);
}

.ghe-hero__actions {
  margin-top: 8px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ghe-hero__button {
  background: var(--ghe-green);
  color: var(--ghe-white);
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(31, 143, 77, 0.18);
}

.ghe-hero__button:hover,
.ghe-hero__button:focus {
  color: var(--ghe-white);
}

.ghe-hero__button--alt {
  background: var(--ghe-blue);
  box-shadow: 0 14px 24px rgba(106, 174, 219, 0.22);
}

.ghe-section-heading {
  margin-bottom: 18px;
}

.ghe-section-heading h2,
.ghe-card h2,
.ghe-feature-card h3,
.ghe-process-step h3 {
  margin: 0;
}

.ghe-feature-grid,
.ghe-check-grid,
.ghe-testimonial-preview,
.ghe-two-column,
.ghe-three-column,
.ghe-category-grid,
.ghe-process-grid {
  display: grid;
  gap: 18px;
}

.ghe-feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.ghe-feature-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--ghe-border);
  border-radius: var(--ghe-radius);
  padding: 22px;
}

.ghe-feature-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ghe-green), #53b977);
  color: var(--ghe-white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.ghe-section--contrast {
  background: linear-gradient(180deg, rgba(243, 236, 226, 0.55), rgba(231, 242, 235, 0.58));
  border: 1px solid rgba(31, 143, 77, 0.08);
  border-radius: 32px;
  padding: 34px;
}

.ghe-check-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ghe-check-card {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid var(--ghe-border);
  font-weight: 600;
}

.ghe-check-card::before {
  content: "+";
  color: var(--ghe-green);
  margin-right: 10px;
}

.ghe-testimonial-preview {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ghe-quote-card {
  background: var(--ghe-white);
  border-radius: var(--ghe-radius);
  padding: 24px;
  border: 1px solid var(--ghe-border);
  box-shadow: var(--ghe-shadow);
}

.ghe-quote-card strong,
.ghe-quote-card span {
  display: block;
}

.ghe-quote-card strong {
  margin-top: 18px;
}

.ghe-quote-card span {
  color: var(--ghe-muted);
}

.ghe-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ghe-three-column {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ghe-card--soft {
  background: linear-gradient(180deg, #ffffff, #f5faf7);
}

.ghe-card--photo {
  background: linear-gradient(180deg, #eef4ff, #ffffff);
}

.ghe-photo {
  aspect-ratio: 4 / 5;
  margin-bottom: 16px;
}

.ghe-blockquote {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.35;
}

.ghe-process-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.ghe-process-step {
  background: var(--ghe-white);
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--ghe-border);
  box-shadow: var(--ghe-shadow);
}

.ghe-process-step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--ghe-sage);
  color: var(--ghe-green);
  font-weight: 700;
  margin-bottom: 16px;
}

.ghe-card--cta {
  background: linear-gradient(135deg, #123527, #1f8f4d);
  color: var(--ghe-white);
}

.ghe-card--media {
  padding: 12px;
}

.ghe-banner-image {
  aspect-ratio: 16 / 7;
}

.ghe-card--cta p {
  color: rgba(255, 255, 255, 0.8);
}

.ghe-card--cta .ghe-hero__button {
  background: var(--ghe-white);
  color: var(--ghe-ink);
  box-shadow: none;
}

.ghe-card--cta .ghe-hero__button--alt {
  background: rgba(255, 255, 255, 0.16);
  color: var(--ghe-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.ghe-card .webform-submission-form {
  display: grid;
  gap: 18px;
  margin-top: 14px;
}

.ghe-card .webform-submission-form .form-item,
.ghe-card .webform-submission-form .js-form-item,
.ghe-card .webform-submission-form .form-wrapper {
  margin: 0;
}

.ghe-card .webform-submission-form label,
.ghe-card .webform-submission-form legend {
  display: block;
  margin-bottom: 8px;
  color: var(--ghe-ink);
  font-weight: 700;
  font-size: 0.96rem;
}

.ghe-card .webform-submission-form .description {
  margin-top: 8px;
  color: var(--ghe-muted);
  font-size: 0.92rem;
}

.ghe-card .webform-submission-form input[type="text"],
.ghe-card .webform-submission-form input[type="email"],
.ghe-card .webform-submission-form input[type="tel"],
.ghe-card .webform-submission-form input[type="number"],
.ghe-card .webform-submission-form select,
.ghe-card .webform-submission-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--ghe-border);
  border-radius: 16px;
  background: #f9fcfa;
  color: var(--ghe-ink);
  box-sizing: border-box;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.ghe-card .webform-submission-form textarea {
  min-height: 148px;
  resize: vertical;
}

.ghe-card .webform-submission-form input:focus,
.ghe-card .webform-submission-form select:focus,
.ghe-card .webform-submission-form textarea:focus {
  outline: none;
  border-color: rgba(31, 143, 77, 0.45);
  box-shadow: 0 0 0 4px rgba(31, 143, 77, 0.12);
  background: var(--ghe-white);
}

.ghe-card .webform-submission-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.ghe-card .webform-submission-form .fieldset-wrapper {
  display: grid;
  gap: 10px;
}

.ghe-card .webform-submission-form input[type="radio"] {
  accent-color: var(--ghe-green);
}

.ghe-card .webform-submission-form .form-radios {
  display: grid;
  gap: 10px;
}

.ghe-card .webform-submission-form .form-radios .form-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--ghe-border);
  border-radius: 16px;
  background: #f9fcfa;
}

.ghe-card .webform-submission-form .form-radios .form-item label {
  margin: 0;
  font-weight: 600;
}

.ghe-card .webform-submission-form .form-actions {
  margin-top: 6px;
}

.ghe-card .webform-submission-form .form-actions input[type="submit"],
.ghe-card .webform-submission-form .form-actions button,
.ghe-card .webform-submission-form .webform-button--submit {
  appearance: none;
  border: 0;
  background: linear-gradient(135deg, #123527, #1f8f4d);
  color: var(--ghe-white);
  padding: 15px 22px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(31, 143, 77, 0.18);
}

.ghe-card .webform-submission-form .form-actions input[type="submit"]:hover,
.ghe-card .webform-submission-form .form-actions input[type="submit"]:focus,
.ghe-card .webform-submission-form .form-actions button:hover,
.ghe-card .webform-submission-form .form-actions button:focus,
.ghe-card .webform-submission-form .webform-button--submit:hover,
.ghe-card .webform-submission-form .webform-button--submit:focus {
  outline: none;
  transform: translateY(-1px);
}

.ghe-view-page .views-view-grid {
  display: grid;
  gap: 18px;
}

.ghe-view-page .views-view-grid .views-row {
  display: contents;
}

.ghe-view-page .views-view-grid .views-col,
.ghe-faq-list .views-row {
  background: var(--ghe-white);
  border-radius: var(--ghe-radius);
  border: 1px solid var(--ghe-border);
  box-shadow: var(--ghe-shadow);
  padding: 22px;
}

.ghe-view-page--conditions .views-view-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ghe-view-page--testimonials .views-view-grid,
.ghe-view-page--blog .views-view-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ghe-category-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ghe-disclaimer-card {
  width: min(100%, 1160px);
  margin: 0 auto;
  background: #fffdf9;
}

.ghe-topic-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ghe-topic-strip span {
  background: var(--ghe-white);
  border: 1px solid var(--ghe-border);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
}

.ghe-faq-list {
  display: grid;
  gap: 16px;
}

.ghe-faq-list .views-field-field-question {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ghe-faq-list .views-field-field-answer {
  color: var(--ghe-muted);
}

.ghe-view-page .views-field-title,
.ghe-view-page .views-field-field-patient-name,
.ghe-view-page .views-field-field-condition-category,
.ghe-view-page .views-field-field-country,
.ghe-view-page .views-field-field-disease-treated {
  margin-bottom: 10px;
}

.ghe-view-page .views-field-title a,
.ghe-view-page .views-field-field-patient-name {
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ghe-ink);
}

.ghe-view-page .views-field-body,
.ghe-view-page .views-field-field-experience {
  color: var(--ghe-muted);
}

.ghe-legal-copy {
  width: min(100%, 900px);
  margin: 0 auto;
}

.ghe-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  background: #25d366;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 900px) {
  .ghe-site-header {
    padding-inline: 12px;
  }

  .ghe-site-header__inner {
    padding: 12px 14px;
    gap: 14px;
    flex-wrap: wrap;
  }

  .ghe-nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .ghe-site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-top: 8px;
  }

  .ghe-site-nav.is-open {
    display: flex;
  }

  .ghe-site-nav__menu>nav,
  .ghe-site-nav__menu .menu,
  .ghe-site-nav__menu ul,
  .ghe-site-nav__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ghe-site-nav__menu a,
  .ghe-nav-cta {
    width: 100%;
  }

  .ghe-site-footer__inner,
  .ghe-site-footer__grid,
  .ghe-hero--homepage,
  .ghe-two-column,
  .ghe-three-column,
  .ghe-intro-card {
    grid-template-columns: 1fr;
  }

  .ghe-hero,
  .ghe-section--contrast {
    padding: 28px 22px;
  }

  .ghe-page-header h1,
  .ghe-hero h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .ghe-brand__text span {
    display: none;
  }

  .ghe-main {
    padding: 18px 14px 56px;
  }

  .ghe-site-footer {
    padding-inline: 14px;
  }

  .ghe-site-footer__bottom {
    flex-direction: column;
  }

  .region-content {
    padding: 24px 14px 56px;
  }

  .ghe-hero__actions,
  .ghe-topic-strip {
    flex-direction: column;
  }

  .ghe-hero__button {
    text-align: center;
  }
}
