:root {
  --navy: #16365f;
  --navy-dark: #0e294a;
  --yellow: #ffe78a;
  --yellow-light: #fff7cf;
  --cream: #fffdf5;
  --white: #ffffff;
  --text: #26384b;
  --muted: #627185;
  --shadow: 0 14px 35px rgba(22, 54, 95, 0.11);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-140%);
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 9999;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: transform 0.2s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  background: rgba(255, 253, 245, 0.97);
  border-bottom: 1px solid rgba(22, 54, 95, 0.09);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.logo-mark {
  display: block;
  width: 90px;
  height: 60px;
  flex: 0 0 auto;
  object-fit: contain;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-navigation a {
  position: relative;
  color: var(--navy);
  font-size: 0.89rem;
  font-weight: 700;
  text-decoration: none;
}

.main-navigation .nav-placeholder {
  color: var(--muted);
  font-size: 0.89rem;
  font-weight: 700;
}

.main-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--yellow);
  border-radius: 3px;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after,
.main-navigation a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-navigation .language-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  background: rgba(22, 54, 95, 0.06);
  border-radius: 9px;
}

.main-navigation .language-option {
  padding: 5px 7px;
  border-radius: 7px;
  font-size: 0.72rem;
  white-space: nowrap;
}

.main-navigation .language-option::after {
  display: none;
}

.main-navigation .language-option.active {
  color: var(--white);
  background: var(--navy);
}

.main-navigation .language-option:hover,
.main-navigation .language-option:focus-visible {
  background: var(--yellow-light);
}

.main-navigation .language-option.active:hover,
.main-navigation .language-option.active:focus-visible {
  color: var(--white);
  background: var(--navy-dark);
}

@media (min-width: 961px) {
  .main-navigation > ul {
    gap: 10px;
  }

  .main-navigation > ul > li > a:not(.language-option) {
    font-size: 0.76rem;
  }

  .main-navigation .language-option {
    padding: 4px 5px;
    font-size: 0.58rem;
  }
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: var(--navy);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 2px;
}

.home-image-hero {
  width: min(1320px, calc(100% - 40px));
  height: clamp(480px, 38vw, 540px);
  margin: 32px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-image-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: 60px;
  width: min(1180px, calc(100% - 40px));
  min-height: 590px;
  padding: 76px 0 92px;
  margin: 0 auto;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 35px;
  right: -8vw;
  bottom: 35px;
  left: -8vw;
  content: "";
  background: linear-gradient(120deg, var(--yellow-light), #fffbed 72%);
  border-radius: 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.15;
}

h1 {
  max-width: 800px;
  margin: 0 0 26px;
  font-size: clamp(2.65rem, 5.5vw, 5rem);
  letter-spacing: -0.045em;
}

.hero-text {
  max-width: 730px;
  margin: 0 0 34px;
  font-size: clamp(1.05rem, 1.7vw, 1.27rem);
}

.button {
  display: inline-block;
  padding: 14px 24px;
  color: var(--white);
  background: var(--navy);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(22, 54, 95, 0.2);
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
}

.hero-logo {
  display: block;
  z-index: 2;
  width: min(100%, 430px);
  height: 320px;
  object-fit: contain;
}

.hero-buttons {
  justify-content: flex-start;
}

.announcement-section {
  width: min(1020px, calc(100% - 40px));
  margin: -38px auto 0;
}

.announcement {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 27px 32px;
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calendar-icon {
  display: grid;
  flex: 0 0 76px;
  height: 76px;
  place-content: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 16px;
  line-height: 1;
  text-align: center;
}

.calendar-icon span {
  font-size: 1.65rem;
  font-weight: 800;
}

.calendar-icon small {
  margin-top: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.announcement-label {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement h2 {
  margin: 0;
  font-size: clamp(1.18rem, 2.2vw, 1.6rem);
}

.offers {
  width: min(1180px, calc(100% - 40px));
  padding: 100px 0 110px;
  margin: 0 auto;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 45px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  letter-spacing: -0.035em;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.info-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(22, 54, 95, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.info-card:hover {
  box-shadow: 0 18px 42px rgba(22, 54, 95, 0.15);
  transform: translateY(-5px);
}

.card-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 17px;
  font-size: 1.65rem;
  font-weight: 800;
}

.ukraine-icon {
  background: linear-gradient(#80b9ee 0 50%, var(--yellow) 50%);
}

.advice-icon {
  position: relative;
}

.advice-icon span {
  position: absolute;
  width: 27px;
  height: 20px;
  background: var(--navy);
  border-radius: 8px;
}

.advice-icon span::after {
  position: absolute;
  bottom: -5px;
  width: 8px;
  height: 8px;
  content: "";
  background: inherit;
  transform: rotate(45deg);
}

.advice-icon span:first-child {
  top: 14px;
  left: 12px;
}

.advice-icon span:first-child::after {
  left: 5px;
}

.advice-icon span:last-child {
  right: 11px;
  bottom: 13px;
  border: 3px solid var(--yellow);
}

.advice-icon span:last-child::after {
  right: 4px;
}

.info-card h3 {
  margin: 0 0 13px;
  font-size: 1.55rem;
}

.info-card p {
  min-height: 88px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.98rem;
}

.info-card a {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.info-card a span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 180ms ease;
}

.info-card a:hover span {
  transform: translateX(4px);
}

.content-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  scroll-margin-top: 105px;
}

.content-section h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -0.035em;
}

.content-section p {
  margin: 0;
}

.advice-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: 70px;
  padding: 25px 0 110px;
}

.content-copy > p:last-child {
  max-width: 720px;
}

.feature-list,
.activity-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list {
  display: grid;
  gap: 13px;
  padding: 27px;
  background: var(--yellow-light);
  border-radius: var(--radius);
}

.feature-list li {
  position: relative;
  padding: 11px 14px 11px 45px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  top: 50%;
  left: 16px;
  display: grid;
  width: 20px;
  height: 20px;
  content: "✓";
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 0.7rem;
  transform: translateY(-50%);
}

.about-section {
  padding: 64px;
  margin-bottom: 110px;
  background: var(--yellow-light);
  border: 1px solid rgba(22, 54, 95, 0.06);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.about-copy {
  max-width: 900px;
}

.about-copy p + p {
  margin-top: 16px;
}

.activity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.activity-list li {
  padding: 9px 16px;
  color: var(--navy);
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 5px 14px rgba(22, 54, 95, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

.subpage-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 65px;
  width: min(1180px, calc(100% - 40px));
  min-height: 530px;
  padding: 70px 0 80px;
  margin: 0 auto;
}

.subpage-hero::before {
  position: absolute;
  z-index: -1;
  top: 35px;
  right: -8vw;
  bottom: 35px;
  left: -8vw;
  content: "";
  background: linear-gradient(120deg, var(--yellow-light), #fffbed 72%);
  border-radius: 42px;
}

.subpage-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.3vw, 4.7rem);
}

.hero-photo {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.hero-photo figcaption {
  padding: 17px 20px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.details-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: min(1020px, calc(100% - 40px));
  margin: -20px auto 0;
  scroll-margin-top: 105px;
}

.detail-card {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 22px;
  padding: 30px;
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-icon {
  display: grid;
  flex: 0 0 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 15px;
  font-size: 1.8rem;
  font-weight: 700;
}

.detail-card h2 {
  margin: 2px 0 15px;
  font-size: 1.5rem;
}

.detail-card p {
  margin: 3px 0;
}

.detail-card address {
  margin-bottom: 12px;
  font-style: normal;
}

.text-link {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.page-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.donations-section {
  padding: 110px 0 105px;
}

.donation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.donation-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 16px 18px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(22, 54, 95, 0.08);
  border-radius: 15px;
  box-shadow: 0 7px 20px rgba(22, 54, 95, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.donation-grid li span {
  display: grid;
  flex: 0 0 30px;
  height: 30px;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 9px;
}

.donation-note {
  max-width: 850px;
  padding: 20px 24px;
  margin: 30px auto 0;
  color: var(--navy);
  background: var(--yellow-light);
  border-left: 5px solid var(--yellow);
  border-radius: 12px;
  text-align: center;
}

.gallery-section {
  padding: 90px 0 105px;
  border-top: 1px solid rgba(22, 54, 95, 0.08);
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: 75%;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--yellow-light), var(--white));
  border: 1px solid rgba(22, 54, 95, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-item::before {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(22, 54, 95, 0.4);
  content: "Bild folgt";
  font-size: 0.9rem;
  font-weight: 700;
  transform: translate(-50%, -50%);
}

.gallery-item img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gallery-button {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: inherit;
  cursor: zoom-in;
}

.gallery-button:focus-visible {
  outline: 4px solid var(--navy);
  outline-offset: -4px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(52px, 1fr) minmax(0, auto) minmax(52px, 1fr);
  align-items: center;
  padding: 70px 24px 32px;
  background: rgba(5, 15, 27, 0.9);
}

.lightbox-image {
  display: block;
  grid-column: 2;
  grid-row: 1;
  max-width: min(1100px, calc(100vw - 160px));
  max-height: calc(100vh - 102px);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-arrow {
  display: grid;
  color: var(--white);
  background: rgba(22, 54, 95, 0.92);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
  place-content: center;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
  color: var(--navy);
  background: var(--yellow);
}

.lightbox-close:focus-visible,
.lightbox-arrow:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-arrow {
  width: 52px;
  height: 52px;
  font-size: 2.5rem;
  line-height: 1;
}

.lightbox-previous {
  justify-self: center;
  grid-column: 1;
  grid-row: 1;
}

.lightbox-next {
  justify-self: center;
  grid-column: 3;
  grid-row: 1;
}

body.lightbox-open {
  overflow: hidden;
}

.placeholder-photo img {
  background: var(--yellow-light);
  object-fit: contain;
}

.consulting-section {
  padding: 105px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(22, 54, 95, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 22px 0 16px;
  font-size: 1.5rem;
}

.service-card ul {
  padding-left: 22px;
  margin: 0;
}

.service-card li {
  margin: 7px 0;
}

.contact-card-section {
  padding-bottom: 105px;
}

.contact-card {
  display: flex;
  gap: 26px;
  max-width: 900px;
  padding: 42px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.contact-card p {
  margin: 5px 0;
}

.contact-name {
  color: var(--navy);
  font-size: 1.25rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 18px;
  font-style: normal;
}

.contact-details a {
  color: var(--navy);
  font-weight: 800;
  text-underline-offset: 4px;
}

.appointment-section {
  padding: 90px 40px;
  margin-bottom: 105px;
  background: var(--yellow-light);
  border-radius: 30px;
}

.appointment-buttons {
  justify-content: center;
}

.hero-contact-card {
  padding: 38px;
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-contact-card h2 {
  margin: 22px 0 12px;
  font-size: 1.7rem;
}

.hero-contact-card address {
  margin-bottom: 14px;
  font-style: normal;
}

.hero-contact-card a {
  color: var(--navy);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.contact-cards-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 105px 0;
}

.contact-cards-section .detail-card > div:last-child {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.contact-cards-section .button {
  padding: 11px 18px;
  margin-top: auto;
  font-size: 0.9rem;
}

.home-intro {
  padding: 45px 0 105px;
}

.home-intro-copy {
  max-width: 820px;
  margin: 0 auto;
}

.home-intro-copy p + p {
  margin-top: 18px;
}

.home-offers {
  padding: 0 0 105px;
  scroll-margin-top: 105px;
}

.home-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-offer-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.home-offer-card > img,
.home-contact-graphic {
  display: block;
  width: 100%;
  height: 225px;
  flex: 0 0 auto;
}

.home-offer-card > img {
  object-fit: cover;
}

.home-contact-graphic {
  position: relative;
  display: grid;
  background: linear-gradient(135deg, var(--yellow-light), var(--white));
  place-items: center;
}

.home-contact-envelope {
  position: relative;
  width: 118px;
  height: 78px;
  border: 6px solid var(--navy);
  border-radius: 12px;
}

.home-contact-envelope::before,
.home-contact-envelope::after {
  position: absolute;
  top: 13px;
  width: 69px;
  height: 6px;
  content: "";
  background: var(--navy);
}

.home-contact-envelope::before {
  left: 2px;
  transform: rotate(32deg);
}

.home-contact-envelope::after {
  right: 2px;
  transform: rotate(-32deg);
}

.home-contact-at,
.home-contact-phone {
  position: absolute;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border: 4px solid var(--yellow-light);
  border-radius: 50%;
  font-size: 1.45rem;
  font-weight: 800;
}

.home-contact-at {
  right: calc(50% - 88px);
  bottom: 43px;
}

.home-contact-phone {
  top: 43px;
  left: calc(50% - 88px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
}

.home-offer-content {
  display: flex;
  align-items: flex-start;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.home-offer-content h3 {
  margin-bottom: 13px;
}

.home-offer-card .home-offer-content p {
  min-height: 0;
  margin-bottom: 24px;
}

.home-offer-card .button {
  padding: 12px 20px;
  margin-top: auto;
  color: var(--white);
  font-size: 0.94rem;
}

.home-offer-card .button:hover,
.home-offer-card .button:focus-visible {
  color: var(--white);
}

.home-news {
  padding: 0 0 105px;
}

.home-news {
  padding: 0 0 105px;
}

.home-news-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.home-news-card {
  display: flex;
  gap: 24px;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-news-card > div {
  min-width: 0;
}

.home-news-card .detail-icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  font-size: 1.8rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.home-news-card h3 {
  margin: 2px 0 10px;
  font-size: 1.5rem;
}

.home-news-card p {
  margin: 0 0 18px;
}

.home-news-card a.button {
  display: inline-flex;
  align-items: center;
}

.home-news-card a.button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

@media (max-width: 960px) {
  .home-news-grid {
    grid-template-columns: 1fr;
  }
}

.donation-hero-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.donation-hero-list li {
  position: relative;
  padding: 9px 12px 9px 38px;
  color: var(--navy);
  background: var(--yellow-light);
  border-radius: 10px;
  font-weight: 700;
}

.donation-hero-list li::before {
  position: absolute;
  top: 50%;
  left: 13px;
  content: "✓";
  font-size: 0.85rem;
  transform: translateY(-50%);
}

.donation-intro {
  padding: 45px 0 105px;
}

.donation-intro-copy {
  max-width: 820px;
  margin: 0 auto;
}

.donation-intro-copy p + p {
  margin-top: 18px;
}

.donation-purpose-section {
  padding: 0 0 105px;
}

.donation-purpose-grid .info-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.donation-purpose-grid .info-card a {
  margin-top: auto;
}

.bank-details-section {
  padding: 90px 0 105px;
  border-top: 1px solid rgba(22, 54, 95, 0.08);
  scroll-margin-top: 105px;
}

.bank-details-card {
  display: flex;
  gap: 24px;
  max-width: 850px;
  padding: 38px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bank-details-card h3 {
  margin: 2px 0 12px;
  font-size: 1.6rem;
}

.bank-details-card p {
  margin: 0 0 22px;
}

.bank-details-card dd,
.bank-details-card strong {
  overflow-wrap: anywhere;
}

.donation-goods-note {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.donation-trust-note .button {
  margin-top: 26px;
}

.activities-hero .hero-photo img {
  height: 360px;
}

.featured-event-section {
  padding: 45px 0 105px;
}

.featured-event {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.featured-event > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.featured-event > img.featured-event-placeholder {
  background: var(--yellow-light);
  object-fit: contain;
}

.featured-event-content {
  align-self: center;
  padding: 45px;
}

.featured-event-content h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.featured-event-content p {
  margin: 0 0 18px;
}

.featured-event-meta {
  color: var(--navy);
}

.past-events-section,
.regular-activities-section {
  padding: 0 0 105px;
}

.past-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.past-event-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(22, 54, 95, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.past-event-card img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.past-event-card img.past-event-image-portrait {
  background: var(--yellow-light);
  object-fit: contain;
  object-position: center;
}

.past-event-image-placeholder {
  display: grid;
  width: 100%;
  height: 170px;
  place-items: center;
  color: var(--muted);
  background: linear-gradient(135deg, var(--yellow-light), var(--white));
  font-size: 0.9rem;
  font-weight: 700;
}

.past-event-card > div {
  padding: 25px;
}

.past-event-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.past-event-card p {
  margin: 0;
}

.ukraine-hero .hero-photo img {
  height: 360px;
  object-fit: cover;
  object-position: center;
}

.ukraine-stories-section {
  padding: 0 0 105px;
}

.ukraine-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(22, 54, 95, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ukraine-story img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.ukraine-stories-section .ukraine-story:first-of-type img {
  object-position: center 45%;
}

.ukraine-stories-section .ukraine-story:last-child img {
  background: var(--yellow-light);
  object-fit: contain;
  object-position: center;
}

.ukraine-story > div {
  padding: 42px;
}

.ukraine-story h3 {
  margin: 0 0 15px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.ukraine-story p {
  margin: 0;
}

.ukraine-story-reverse img {
  grid-column: 2;
  grid-row: 1;
}

.ukraine-story-reverse > div {
  grid-column: 1;
  grid-row: 1;
}

.ukraine-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ukraine-support-grid .service-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.ukraine-support-grid .service-card p {
  margin: 0 0 24px;
}

.ukraine-support-grid .button {
  margin-top: auto;
}

.ukraine-gallery {
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.ukraine-gallery .gallery-item:first-child img,
.ukraine-gallery .gallery-item:last-child img {
  background: var(--yellow-light);
  object-fit: contain;
  object-position: center;
}

.festival-hero .hero-photo img {
  height: 360px;
  background: var(--yellow-light);
  object-fit: contain;
}

.festival-subtitle {
  margin: -10px 0 18px;
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
}

.festival-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  padding: 16px 20px;
  margin: 14px 0 22px;
  color: var(--navy);
  background: var(--yellow-light);
  border-radius: 12px;
  list-style: none;
}

.festival-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.festival-facts li span {
  flex: 0 0 auto;
}

.festival-expectations {
  padding: 45px 0 105px;
}

.festival-program {
  max-width: 720px;
  padding: 28px;
  margin: 0 auto;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 7px 20px rgba(22, 54, 95, 0.08);
}

.festival-program p {
  margin: 0 0 15px;
  text-align: center;
}

.festival-program ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.festival-program li {
  padding: 10px 14px;
  background: var(--yellow-light);
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
}

.festival-participation-section {
  padding: 0 0 105px;
}

.festival-participation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.festival-participation-grid .service-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.festival-participation-grid .service-card p {
  margin: 0 0 24px;
}

.festival-participation-grid .button {
  margin-top: auto;
}

#anfahrt {
  scroll-margin-top: 105px;
}

#anfahrt address {
  margin: 0 0 22px;
  font-style: normal;
}

.help-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  width: min(1180px, calc(100% - 40px));
  padding: 50px 56px;
  margin: 0 auto 105px;
  background: var(--yellow);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.help-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.help-cta p {
  max-width: 670px;
  margin: 0;
}

.button-group {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--navy);
  background: var(--white);
}

.accessibility-actions .button:not(.button-secondary) {
  color: var(--white);
}

.accessibility-actions .button:not(.button-secondary):hover,
.accessibility-actions .button:not(.button-secondary):focus-visible {
  color: var(--white);
}

.accessibility-actions .button-secondary:hover,
.accessibility-actions .button-secondary:focus-visible {
  color: var(--navy);
  background: var(--white);
}

.site-footer {
  position: relative;
  padding: 34px 20px;
  color: var(--white);
  background: var(--navy);
  text-align: center;
}

.easter-egg-link {
  position: absolute;
  bottom: 12px;
  left: 14px;
  display: grid;
  width: 36px;
  height: 38px;
  border-radius: 12px;
  place-items: center;
}

.easter-egg {
  display: block;
  width: 25px;
  height: 29px;
  background:
    linear-gradient(155deg, transparent 42%, #fff7cf 43% 54%, transparent 55%),
    linear-gradient(25deg, transparent 38%, #ef7293 39% 50%, transparent 51%),
    linear-gradient(90deg, #70c6c4, #ffe78a 48%, #ef7293);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50% 50% 48% 48% / 58% 58% 42% 42%;
  box-shadow: 0 2px 5px rgba(5, 15, 27, 0.25);
}

.easter-egg-link:focus-visible {
  outline-color: var(--white);
}

.site-footer p {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
}

.site-footer p + p {
  margin-top: 5px;
}

.site-footer p a {
  color: var(--white);
  text-underline-offset: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 10px;
}

.footer-links a {
  color: var(--white);
  font-size: 0.82rem;
  text-underline-offset: 4px;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}

.legal-hero,
.legal-content {
  width: min(860px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.legal-hero {
  padding: 80px 0 48px;
}

.legal-hero h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 1.05;
}

.legal-hero .hero-text {
  max-width: 720px;
  margin-bottom: 0;
}

.legal-content {
  padding-bottom: 105px;
}

.legal-intro {
  padding: 18px 22px;
  margin: 0 0 24px;
  color: var(--navy);
  background: var(--yellow-light);
  border-radius: 14px;
  font-weight: 700;
}

.legal-section {
  padding: 30px 32px;
  margin-bottom: 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 7px 20px rgba(22, 54, 95, 0.08);
}

.legal-section h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.3;
}

.legal-section p,
.legal-section address,
.legal-section dl,
.legal-section ul {
  margin-top: 0;
}

.legal-section p:last-child,
.legal-section address:last-child,
.legal-section dl:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-section address {
  font-style: normal;
}

.legal-section a {
  color: var(--navy);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.legal-section a:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  border-radius: 3px;
}

.legal-data {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
}

.legal-data div {
  display: grid;
  grid-template-columns: minmax(130px, 180px) 1fr;
  gap: 12px;
}

.legal-data dt {
  color: var(--navy);
  font-weight: 800;
}

.legal-data dd {
  min-width: 0;
  margin: 0;
}

.accessibility-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 18px 20px;
  margin-top: 22px;
  color: var(--navy);
  background: var(--yellow-light);
  border-radius: 14px;
}

.accessibility-actions {
  flex-wrap: wrap;
  margin-top: 24px;
}

.not-found-main {
  display: grid;
  min-height: calc(100vh - 230px);
  padding: 80px 20px 105px;
  place-items: center;
}

.not-found-card {
  width: min(780px, 100%);
  padding: clamp(34px, 7vw, 70px);
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.not-found-card h1 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 1.08;
}

.not-found-card > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 30px;
}

.not-found-card .button-group {
  justify-content: center;
}

.not-found-links {
  padding-top: 32px;
  margin-top: 38px;
  border-top: 1px solid rgba(22, 54, 95, 0.12);
}

.not-found-links h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 1.2rem;
}

.not-found-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.not-found-links a {
  color: var(--navy);
  font-weight: 700;
  text-underline-offset: 4px;
}

.photography-hero {
  padding-bottom: 34px;
}

.photography-note {
  padding: 14px 18px;
  margin: 26px 0 0;
  color: var(--navy);
  background: var(--yellow-light);
  border-radius: 12px;
  font-weight: 700;
}

.photography-gallery-section {
  padding-top: 20px;
}

.photography-gallery {
  width: 100%;
  gap: 28px;
}

.photography-gallery .gallery-item {
  min-height: 0;
  aspect-ratio: 3 / 2;
}

.photography-gallery .gallery-button,
.photography-gallery .gallery-item img {
  min-height: 0;
}

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .donation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .past-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ukraine-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .main-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 12px 20px 22px;
    background: var(--cream);
    border-bottom: 1px solid rgba(22, 54, 95, 0.09);
    box-shadow: 0 15px 25px rgba(22, 54, 95, 0.08);
  }

  .main-navigation.open {
    display: block;
  }

  .main-navigation ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .main-navigation .language-switcher {
    align-items: center;
    align-self: flex-start;
    flex-direction: row;
    gap: 3px;
    margin-top: 10px;
  }

  .main-navigation a {
    display: block;
    padding: 10px 0;
  }

  .main-navigation .nav-placeholder {
    display: block;
    padding: 10px 0;
  }

  .main-navigation a::after {
    display: none;
  }

  .home-image-hero {
    height: clamp(320px, 48vw, 440px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 65px;
  }

  .hero-visual {
    display: none;
  }

  .advice-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .subpage-hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 65px;
  }

  .hero-photo img {
    height: 270px;
  }

  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
    width: 85%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards-section {
    grid-template-columns: 1fr;
  }

  .home-offers-grid {
    grid-template-columns: 1fr;
  }

  .featured-event {
    grid-template-columns: 1fr;
  }

  .activities-hero .hero-photo img {
    height: 300px;
  }

  .featured-event > img {
    height: 330px;
    min-height: 0;
  }

  .ukraine-hero .hero-photo img {
    height: 300px;
  }

  .festival-hero .hero-photo img {
    height: 300px;
  }

  .ukraine-story {
    grid-template-columns: 1fr;
  }

  .ukraine-story img,
  .ukraine-story-reverse img {
    grid-column: 1;
    grid-row: 1;
  }

  .ukraine-story > div,
  .ukraine-story-reverse > div {
    grid-column: 1;
    grid-row: 2;
  }

  .ukraine-support-grid {
    grid-template-columns: 1fr;
  }

  .festival-participation-grid {
    grid-template-columns: 1fr;
  }

  .info-card p {
    min-height: 0;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .legal-hero,
  .legal-content {
    width: min(100% - 28px, 860px);
  }

  .legal-hero {
    padding: 52px 0 36px;
  }

  .legal-section {
    padding: 25px 20px;
  }

  .legal-data div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .accessibility-facts {
    flex-direction: column;
    gap: 4px;
  }

  .not-found-main {
    min-height: auto;
    padding: 52px 14px 80px;
  }

  .not-found-card {
    padding: 36px 20px;
    border-radius: 24px;
  }

  .home-footer {
    padding-bottom: 64px;
  }

  .easter-egg-link {
    bottom: 13px;
    left: 10px;
  }

  .header-inner,
  .hero,
  .announcement-section,
  .offers,
  .content-section,
  .subpage-hero,
  .details-section,
  .page-section,
  .help-cta {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 72px;
  }

  .logo-mark {
    width: 84px;
    height: 56px;
  }

  .home-image-hero {
    width: calc(100% - 28px);
    height: clamp(220px, 62vw, 340px);
    margin-top: 20px;
    border-radius: 18px;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 80px;
  }

  .hero::before {
    top: 14px;
    right: -14px;
    bottom: 25px;
    left: -14px;
    border-radius: 0 0 28px 28px;
  }

  .subpage-hero {
    min-height: auto;
    padding: 52px 0 70px;
  }

  .subpage-hero::before {
    top: 14px;
    right: -14px;
    bottom: 25px;
    left: -14px;
    border-radius: 0 0 28px 28px;
  }

  .subpage-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.25rem);
  }

  .hero-photo img {
    height: 220px;
  }

  .details-section {
    grid-template-columns: 1fr;
    margin-top: -8px;
  }

  .detail-card {
    padding: 24px 20px;
  }

  .detail-icon {
    flex-basis: 50px;
    height: 50px;
  }

  .donations-section {
    padding: 80px 0;
  }

  .donation-grid,
  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    width: 100%;
  }

  .donation-note {
    text-align: left;
  }

  .gallery-section {
    padding: 70px 0 80px;
  }

  .gallery-item,
  .gallery-item img,
  .gallery-button {
    min-height: 230px;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 18px;
    padding: 76px 14px 20px;
  }

  .lightbox-image {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: calc(100vw - 28px);
    max-height: calc(100vh - 170px);
  }

  .lightbox-arrow {
    width: 54px;
    height: 54px;
  }

  .lightbox-previous {
    justify-self: end;
    grid-column: 1;
    grid-row: 2;
  }

  .lightbox-next {
    justify-self: start;
    grid-column: 2;
    grid-row: 2;
  }

  .consulting-section {
    padding: 80px 0;
  }

  .service-card {
    padding: 25px;
  }

  .contact-card-section {
    padding-bottom: 80px;
  }

  .contact-card {
    flex-direction: column;
    padding: 30px 25px;
  }

  .appointment-section {
    padding: 65px 24px;
    margin-bottom: 80px;
  }

  .appointment-buttons {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .appointment-buttons .button {
    text-align: center;
  }

  .hero-contact-card {
    padding: 30px 25px;
  }

  .contact-cards-section {
    padding: 80px 0;
  }

  .home-intro {
    padding: 35px 0 80px;
  }

  .home-offers,
  .home-news {
    padding-bottom: 80px;
  }

  .donation-intro {
    padding: 35px 0 80px;
  }

  .donation-purpose-section,
  .bank-details-section {
    padding-bottom: 80px;
  }

  .bank-details-card {
    flex-direction: column;
    padding: 28px 22px;
  }

  .donation-goods-note {
    text-align: left;
  }

  .activities-hero .hero-photo img {
    height: 250px;
  }

  .featured-event-section {
    padding: 35px 0 80px;
  }

  .featured-event {
    border-radius: 24px;
  }

  .featured-event > img {
    height: 240px;
  }

  .featured-event-content {
    padding: 28px 22px;
  }

  .past-events-section,
  .regular-activities-section {
    padding-bottom: 80px;
  }

  .past-events-grid {
    grid-template-columns: 1fr;
  }

  .past-event-card img {
    height: 155px;
  }

  .past-event-image-placeholder {
    height: 155px;
  }

  .ukraine-hero .hero-photo img {
    height: 250px;
  }

  .ukraine-stories-section {
    padding-bottom: 80px;
  }

  .ukraine-story img {
    height: 240px;
  }

  .ukraine-story > div {
    padding: 28px 22px;
  }

  .ukraine-gallery {
    grid-template-columns: 1fr;
  }

  .festival-hero .hero-photo img {
    height: 250px;
  }

  .festival-facts {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 15px 16px;
  }

  .festival-expectations,
  .festival-participation-section {
    padding-bottom: 80px;
  }

  .festival-expectations {
    padding-top: 35px;
  }

  .festival-program {
    padding: 22px 18px;
  }

  .festival-program ul {
    grid-template-columns: 1fr;
  }

  .home-offer-card > img,
  .home-contact-graphic {
    height: 210px;
  }

  .home-offer-content {
    padding: 26px 22px;
  }

  .home-news-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 22px;
  }

  .help-cta {
    padding: 35px 25px;
    margin-bottom: 80px;
    border-radius: 24px;
  }

  .button-group {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .button-group .button {
    text-align: center;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.35rem);
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .announcement-section {
    margin-top: -20px;
  }

  .announcement {
    align-items: flex-start;
    gap: 17px;
    padding: 22px 18px;
  }

  .calendar-icon {
    flex-basis: 60px;
    height: 65px;
  }

  .calendar-icon span {
    font-size: 1.35rem;
  }

  .announcement h2 br {
    display: none;
  }

  .offers {
    padding: 78px 0 80px;
  }

  .info-card {
    padding: 28px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .advice-section {
    padding: 0 0 80px;
  }

  .feature-list {
    padding: 20px;
  }

  .about-section {
    padding: 36px 25px;
    margin-bottom: 80px;
    border-radius: 24px;
  }

  .activity-list {
    align-items: stretch;
    flex-direction: column;
  }

  .activity-list li {
    text-align: center;
  }

  .site-footer span {
    display: block;
    height: 0;
    overflow: hidden;
  }

  .footer-links span {
    display: inline;
    height: auto;
    overflow: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Right-to-left layout for the Arabic translation. */
html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .skip-link {
  right: 0;
  left: auto;
}

html[dir="rtl"] .easter-egg-link {
  right: 14px;
  left: auto;
}

html[dir="rtl"] .feature-list li,
html[dir="rtl"] .donation-hero-list li {
  padding-right: 45px;
  padding-left: 14px;
}

html[dir="rtl"] .feature-list li::before,
html[dir="rtl"] .donation-hero-list li::before {
  right: 16px;
  left: auto;
}

html[dir="rtl"] .donation-note {
  border-right: 5px solid var(--yellow);
  border-left: 0;
}

html[dir="rtl"] .service-card ul {
  padding-right: 22px;
  padding-left: 0;
}

html[dir="rtl"] .info-card a span {
  margin-right: 6px;
  margin-left: 0;
}

html[dir="rtl"] .info-card a:hover span {
  transform: translateX(-4px);
}

html[dir="rtl"] .contact-card {
  padding-right: 38px;
  padding-left: 12px;
}

@media (max-width: 720px) {
  html[dir="rtl"] .easter-egg-link {
    right: 10px;
    left: auto;
  }
}
