:root {
  --brand-primary: #000c5c;
  --brand-secondary: #221f6f;
  --brand-cyan: #22bff8;
  --brand-purple: #5f1187;
  --surface-light: #f4f4f4;
  --surface-white: #ffffff;
  --text-main: #2b3360;
  --text-muted: #59648a;
  --border-soft: #d7d9e6;
  --shadow-soft: 0 8px 25px rgba(0, 0, 0, 0.08);
  --radius-lg: 12px;
  --radius-md: 10px;
  --radius-sm: 7px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-main);
  background-image: url("../media/2024/12/background-fundo-rprnet-purple-scaled.webp");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

.section {
  padding: 58px 0;
}

.section--tight {
  padding: 34px 0;
}

.section-title {
  margin: 0 0 16px;
  color: var(--brand-primary);
  font-size: clamp(1.7rem, 2vw, 2.25rem);
  line-height: 1.18;
}

.section-subtitle {
  margin: 0 0 26px;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 11px 19px;
  line-height: 1;
  transition: transform 0.18s ease, opacity 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  border-color: #fff;
  color: var(--brand-primary);
}

.site-header {
  background: #fff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.14);
  border-radius: 0 0 12px 12px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 14px;
}

.header-left {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.menu-toggle {
  border: none;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  font-size: 0.82rem;
  font-weight: 500;
}

.menu-toggle__icon {
  font-size: 1rem;
  line-height: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 145px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .btn {
  min-width: 150px;
  text-align: center;
}

.header-actions .btn-secondary {
  border-color: var(--brand-primary);
}

.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #eaecf4;
  padding: 8px 0 14px;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav .container {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mobile-nav a {
  font-size: 0.93rem;
  padding: 8px 4px;
  color: var(--brand-primary);
  border-bottom: 1px solid #edf0f8;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav a.is-active {
  font-weight: 700;
}

.home-page {
  padding-top: 14px;
}

.hero-slider {
  padding: 0;
}

.hero-carousel {
  position: relative;
  height: 466px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid #2b92d2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(84, 17, 122, 0.94) 0%, rgba(84, 17, 122, 0.83) 45%, rgba(84, 17, 122, 0.1) 82%);
}

.hero-slide__content {
  position: absolute;
  top: 56px;
  left: 52px;
  max-width: 44%;
  color: #fff;
  z-index: 2;
}

.hero-slide__content h1 {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 3.3vw, 3.25rem);
  line-height: 1.08;
  font-weight: 600;
}

.hero-slide__content p {
  margin: 0 0 26px;
  font-size: 1rem;
  line-height: 1.5;
}

.hero-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
}

.hero-dot.is-active {
  background: #ffffff;
}

.delivery-section {
  padding: 12px 0 0;
}

.delivery-card {
  background-image: linear-gradient(161deg, var(--brand-secondary) 0%, var(--brand-purple) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 41.2% 58.8%;
  min-height: 382px;
}

.delivery-card__title {
  padding: 42px 36px;
  display: flex;
  align-items: center;
}

.delivery-card__title h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.7vw, 4rem);
  font-weight: 300;
  line-height: 0.95;
}

.delivery-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 24px 22px 0;
}

.delivery-card__image img {
  width: 100%;
  border-radius: var(--radius-md);
}

.delivery-mobile {
  display: none;
}

.why-section {
  padding: 62px 0 20px;
}

.why-section .section-title {
  font-size: clamp(1.9rem, 2.35vw, 2.55rem);
}

.why-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.why-card {
  background: #fff;
  border: 2px solid #5a5a5a4a;
  border-radius: 14px;
  padding: 17px;
}

.why-card img {
  width: 42px;
  margin-bottom: 14px;
}

.why-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-primary);
}

.why-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #4a567f;
}

.service-showcase {
  padding: 34px 0 10px;
}

.service-showcase .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-band {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.service-band--light {
  background: var(--surface-light);
}

.service-band--blue {
  background-image: linear-gradient(209deg, #46c8ff 0%, #000c5cc4 100%);
}

.service-band__media {
  display: flex;
  align-items: flex-end;
}

.service-band__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-band__content {
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-band__eyebrow {
  margin: 0 0 8px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #6a7090;
}

.service-band__content h2 {
  margin: 0;
  color: var(--brand-primary);
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.2;
}

.service-band__content p {
  margin: 12px 0 18px;
  color: #4f5b80;
  font-size: 0.94rem;
  line-height: 1.55;
}

.service-band--blue .service-band__eyebrow,
.service-band--blue .service-band__content h2,
.service-band--blue .service-band__content p {
  color: #fff;
}

.service-band--blue .btn-secondary {
  border-color: #fff;
}

.about-section {
  padding: 40px 0 10px;
}

.about-copy {
  margin: 0;
  line-height: 1.95;
  color: #3f4b77;
}

.about-stats {
  margin-top: 20px;
  border-radius: var(--radius-lg);
  background-image: linear-gradient(151deg, #00a4ea 0%, #4dc7fc 100%);
  padding: 20px 14px 15px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  text-align: center;
}

.about-stats article {
  color: #fff;
}

.stat-number {
  font-size: clamp(2.1rem, 3vw, 3.45rem);
  font-weight: 600;
  line-height: 1;
}

.stat-label {
  margin-top: 6px;
  font-size: 0.9rem;
}

.values-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.value-card {
  position: relative;
  min-height: 214px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 74px 24px 20px;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 64, 0.5), rgba(5, 12, 64, 0.75));
}

.value-card h3,
.value-card p {
  position: relative;
  color: #fff;
}

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

.value-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.plans-section {
  padding: 76px 0 10px;
}

.plans-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 22px;
}

.plans-feature__text h2 {
  margin: 0;
  color: var(--brand-primary);
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.22;
}

.plans-feature__text p {
  margin: 12px 0 18px;
  color: #4f5b80;
  line-height: 1.65;
  font-size: 0.95rem;
}

.plans-feature__media img {
  width: 100%;
}

.contact-banner {
  padding: 46px 0 12px;
}

.contact-banner__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-image: linear-gradient(0deg, rgba(41, 29, 97, 0.62), rgba(41, 29, 97, 0.62)), url("../media/2024/11/close-up-young-woman-talking-mobile-phone-front-conference-room-office-1.avif");
  background-size: cover;
  background-position: center right;
  min-height: 336px;
  padding: 88px 30px;
}

.contact-banner__card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.contact-banner__actions {
  margin-top: 30px;
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
}

.contact-banner__actions .btn i,
.faq-help .btn i {
  font-size: 1rem;
}

.faq-contact {
  padding: 48px 0 0;
}

.faq-contact__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 26px;
}

.faq-list details {
  border-bottom: 1px solid #ccd2ea;
  padding: 12px 0;
}

.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--brand-primary);
  padding-right: 24px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
  color: var(--brand-purple);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 10px 0 0;
  color: #47547e;
  font-size: 0.92rem;
  line-height: 1.58;
}

.faq-help {
  padding-top: 6px;
}

.faq-help h2 {
  margin: 0 0 18px;
  color: var(--brand-primary);
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.25;
}

.site-footer {
  margin-top: 44px;
}

.site-footer__main {
  background: #fff;
  border-top: 3px solid #000c5c3d;
  padding: 38px 0 18px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 22px;
}

.footer-logo img {
  width: 155px;
}

.footer-copy {
  margin: 16px 0 0;
  font-size: 0.78rem;
  line-height: 1.7;
  color: #4a567d;
  max-width: 38ch;
}

.footer-heading {
  margin: 16px 0 8px;
  font-size: 0.88rem;
  color: var(--brand-primary);
  text-transform: uppercase;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  margin: 6px 0;
  color: #4a567d;
  font-size: 0.83rem;
}

.footer-list a {
  color: inherit;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.social-links a {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000c5c3d;
  color: var(--brand-primary);
  font-size: 0.9rem;
}

.footer-address {
  margin-top: 14px;
  font-size: 0.77rem;
  line-height: 1.6;
  color: #4a567d;
}

.site-footer__copyright {
  background: #fff;
  text-align: center;
  padding: 8px 0 16px;
  font-size: 0.78rem;
  color: #4a567d;
}

.site-footer__strip {
  background-image: linear-gradient(168deg, var(--brand-secondary) 0%, #4dbbeb 100%);
  padding: 22px 0;
}

.site-footer__strip-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  align-items: center;
  gap: 18px;
}

.strip-item {
  text-align: center;
}

.strip-item h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
}

.strip-item img {
  margin: 0 auto;
}

.strip-item .voia-logo {
  width: 120px;
}

.strip-item .safe-logo {
  width: 34px;
}

.strip-item .privacy-icon {
  color: #fff;
  font-size: 30px;
}

.strip-up {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.26);
  color: #fff;
  font-size: 16px;
}

.strip-up:hover {
  background: rgba(255, 255, 255, 0.36);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1001;
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(0, 12, 92, 0.2);
  border: 1px solid rgba(0, 12, 92, 0.12);
  backdrop-filter: blur(10px);
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
}

.cookie-banner__content p {
  margin: 0;
  color: var(--text-main);
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookie-banner__content a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner__button {
  border: 0;
  border-radius: 999px;
  background: var(--brand-primary);
  color: #fff;
  font: inherit;
  font-weight: 600;
  padding: 11px 18px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(131deg, #0a1a57 0%, #1f2674 48%, #5f1486 100%);
  color: #fff;
  padding: 70px 0 56px;
}

.hero--inner {
  padding: 56px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1.16;
}

.hero p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

.hero-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 8px 13px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--brand-primary);
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.icon-row {
  width: 46px;
  margin-bottom: 14px;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.service-card__body {
  padding: 18px;
}

.service-card__body h3 {
  margin: 0 0 10px;
  color: var(--brand-primary);
}

.service-card__body p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

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

.plan-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.plan-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.plan-card__body {
  padding: 16px;
}

.plan-card__body h3 {
  margin: 0 0 12px;
  color: var(--brand-primary);
}

.faq {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.faq details {
  border-bottom: 1px solid #e8ebf4;
  padding: 10px 0;
}

.faq details:last-child {
  border-bottom: 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--brand-primary);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.support-strip {
  background-image: linear-gradient(168deg, var(--brand-secondary) 0%, #4dbbeb 100%);
  border-radius: 12px;
  color: #fff;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.support-strip p {
  margin: 0;
}

.media-band {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.media-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.media-band__content {
  padding: 30px;
}

.media-band__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.stat-box {
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  text-align: center;
}

.content-legal {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 28px;
  line-height: 1.7;
}

.content-legal h2,
.content-legal h3 {
  color: var(--brand-primary);
}

.content-legal ul {
  margin: 0;
  padding-left: 19px;
}

.post-box {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .why-grid,
  .cards-grid,
  .service-grid,
  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__strip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .header-actions .btn {
    min-width: 132px;
    padding-inline: 12px;
    font-size: 0.83rem;
  }

  .hero-carousel {
    height: 390px;
  }

  .hero-slide__content {
    top: 34px;
    left: 26px;
    max-width: 65%;
  }

  .delivery-card,
  .service-band,
  .plans-feature,
  .faq-contact__grid,
  .hero-grid,
  .media-band__grid {
    grid-template-columns: 1fr;
  }

  .delivery-card__image {
    padding: 0 18px 18px;
  }

  .service-band__content {
    padding: 24px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-banner__card {
    min-height: 280px;
    padding: 62px 24px;
  }

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

@media (max-width: 767px) {
  body {
    background-attachment: scroll;
  }

  .site-header {
    border-radius: 0 0 10px 10px;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand img {
    width: 118px;
  }

  .header-actions {
    display: none;
  }

  .hero-carousel {
    height: 520px;
  }

  .hero-slide__overlay {
    background: linear-gradient(165deg, rgba(84, 17, 122, 0.86) 0%, rgba(84, 17, 122, 0.74) 58%, rgba(84, 17, 122, 0.34) 100%);
  }

  .hero-slide__content {
    max-width: 100%;
    left: 18px;
    right: 18px;
    top: 72px;
    text-align: center;
  }

  .hero-slide__content h1 {
    font-size: 2.15rem;
    line-height: 1.03;
  }

  .hero-slide__content p {
    font-size: 1.02rem;
    margin-bottom: 30px;
  }

  .hero-slide {
    background-position: 76% center;
  }

  .delivery-card {
    min-height: initial;
  }

  .delivery-card__title {
    justify-content: center;
    padding: 24px 16px 12px;
    text-align: center;
  }

  .delivery-card__title h2 {
    font-size: 2.1rem;
  }

  .delivery-desktop {
    display: none;
  }

  .delivery-mobile {
    display: block;
  }

  .service-band__content,
  .plans-feature__text,
  .contact-banner__card,
  .faq-help,
  .service-band__eyebrow {
    text-align: center;
  }

  .service-band__content,
  .plans-feature__text,
  .faq-help {
    align-items: center;
  }

  .contact-banner__actions {
    align-self: center;
  }

  .why-grid,
  .cards-grid,
  .service-grid,
  .plans-grid,
  .site-footer__grid,
  .site-footer__strip-grid {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    font-size: 0.9rem;
  }

  .site-footer__strip {
    padding: 20px 0 16px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__button {
    width: 100%;
  }
}
