:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-alt: #efece4;
  --text: #12211a;
  --text-muted: #4d5c55;
  --border: rgba(18, 33, 26, 0.12);
  --accent: #0f5132;
  --accent-2: #c9a227;
  --secondary: #1c3d2c;
  --on-accent: #ffffff;
  --dark: #0c1a13;
  --radius: 0px;
  --btn-radius: 6px;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1040px;
  --section-pad: 68px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--secondary);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(32px, 4.8vw, 50px);
}

h2 {
  font-size: clamp(22px, 3.2vw, 32px);
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

main {
  flex: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
}

.brand-lockup:hover {
  color: var(--accent);
}

.brand-lockup img {
  width: 36px;
  height: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}

.site-nav a {
  display: block;
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  font-variant: small-caps;
  color: var(--text-muted);
  border-radius: var(--btn-radius);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
  background: var(--surface-alt);
}

.independence-notice {
  font-size: 13px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 14px 18px;
  margin: 24px auto;
  max-width: var(--max-width);
  line-height: 1.5;
}

.independence-notice--hero {
  margin-top: 0;
  margin-bottom: 0;
}

.hero-offset {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-offset__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 66.666%;
  height: 100%;
  object-fit: cover;
}

.hero-offset__panel {
  position: relative;
  z-index: 2;
  background: var(--surface);
  width: 55%;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 48px 0 48px 0;
}

.hero-offset__panel p {
  margin-top: 20px;
  color: var(--text-muted);
  max-width: 48ch;
}

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section--dark {
  background: var(--dark);
  color: var(--on-accent);
}

.section--dark h2 {
  color: var(--on-accent);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section-header {
  margin-bottom: 40px;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 60ch;
}

.category-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  border-top: 1px solid var(--border);
}

.category-band:last-child {
  border-bottom: 1px solid var(--border);
}

.category-band--reverse .category-band__image {
  order: 2;
}

.category-band__image {
  overflow: hidden;
}

.category-band__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.3s;
}

.category-band:hover .category-band__image img {
  transform: scale(1.02);
}

.category-band__content {
  padding: 40px 48px;
}

.category-band__content h2 {
  margin-bottom: 12px;
}

.category-band__content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.text-link::after {
  content: '→';
  transition: transform 0.2s;
}

.text-link:hover::after {
  transform: translateX(3px);
}

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

.testimonial-card {
  border: 1px solid var(--border);
  padding: 28px 24px;
  background: var(--surface);
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(18, 33, 26, 0.08);
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.45;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card cite {
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16.666%;
  right: 16.666%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: var(--surface);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.step-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 14px;
  color: var(--text-muted);
}

.about-approach-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.about-approach-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.page-hero {
  padding: 48px 0 32px;
  background: var(--surface-alt);
}

.page-hero .container {
  max-width: var(--max-width);
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero .intro {
  color: var(--text-muted);
  max-width: 60ch;
}

.catalog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.catalog-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: transform 0.2s;
}

.catalog-row:first-child {
  border-top: 1px solid var(--border);
}

.catalog-row:hover {
  transform: translateY(-2px);
}

.catalog-row--reverse {
  direction: rtl;
}

.catalog-row--reverse > * {
  direction: ltr;
}

.catalog-row__image {
  overflow: hidden;
}

.catalog-row__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.3s;
}

.catalog-row__image--square img {
  aspect-ratio: 1 / 1;
  height: auto;
}

.catalog-row:hover .catalog-row__image img {
  transform: scale(1.02);
}

.catalog-row__body h2 {
  font-size: clamp(20px, 2.8vw, 26px);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 8px;
  display: inline-block;
}

.catalog-row__location {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.catalog-row__desc {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
}

.gem-list {
  display: flex;
  flex-direction: column;
}

.gem-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: transform 0.2s;
}

.gem-row:first-child {
  border-top: 1px solid var(--border);
}

.gem-row:hover {
  transform: translateY(-2px);
}

.gem-row__thumb {
  width: 100px;
  height: 100px;
  overflow: hidden;
  flex-shrink: 0;
}

.gem-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gem-row:hover .gem-row__thumb img {
  transform: scale(1.02);
}

.gem-row__body h2 {
  font-size: 20px;
  margin-bottom: 4px;
}

.gem-row__location {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.gem-row__desc {
  font-size: 14px;
  color: var(--text-muted);
}

.gem-row__action {
  flex-shrink: 0;
}

.highlight-card {
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(18, 33, 26, 0.08);
}

.highlight-card__image {
  overflow: hidden;
}

.highlight-card__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s;
}

.highlight-card:hover .highlight-card__image img {
  transform: scale(1.02);
}

.highlight-card__body {
  padding: 20px 24px 24px;
}

.highlight-card__title {
  font-size: 20px;
  margin-bottom: 10px;
}

.highlight-card__title .middot {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 16px;
}

.highlight-card__desc {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.highlight-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  border: 1px solid var(--accent);
  border-radius: var(--btn-radius);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.highlight-card__btn:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.catalog-closing {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 15px;
}

.editorial-content {
  max-width: 70ch;
  margin: 0 auto;
  padding: var(--section-pad) 24px;
}

.editorial-section {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.editorial-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.editorial-section h2 {
  margin-bottom: 20px;
}

.editorial-section p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.editorial-section p:last-child {
  margin-bottom: 0;
}

.legal-content {
  max-width: 70ch;
  margin: 0 auto;
  padding: var(--section-pad) 24px;
}

.legal-content h1 {
  margin-bottom: 8px;
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 18px;
}

.legal-content p {
  margin-bottom: 14px;
  color: var(--text-muted);
}

.legal-content ul {
  margin-bottom: 14px;
  padding-left: 24px;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  padding: var(--section-pad) 0;
}

.contact-intro p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-email {
  font-size: 18px;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--surface);
  color: var(--text);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.form-error {
  font-size: 13px;
  color: #8b1a1a;
  margin-top: 4px;
}

.btn-submit {
  padding: 12px 28px;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: var(--btn-radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}

.btn-submit:hover:not(:disabled) {
  background: var(--secondary);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.confirmation-panel {
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
}

.confirmation-panel h2 {
  margin-bottom: 12px;
}

.confirmation-panel p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: var(--section-pad) 0;
}

.sitemap-group h2 {
  font-size: 18px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.sitemap-group ul {
  list-style: none;
}

.sitemap-group li {
  margin-bottom: 8px;
}

.sitemap-group a {
  font-size: 15px;
  color: var(--text-muted);
}

.sitemap-group a:hover {
  color: var(--accent);
}

.site-footer {
  background: var(--bg);
  margin-top: auto;
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .brand-lockup {
  margin-bottom: 12px;
}

.footer-blurb {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-rule {
  max-width: var(--max-width);
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--border);
}

.footer-bottom {
  background: var(--surface-alt);
  padding: 16px 24px;
}

.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer-bottom-right a,
.footer-bottom-right button {
  font-size: 13px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}

.footer-bottom-right a:hover,
.footer-bottom-right button:hover {
  color: var(--accent);
}

.footer-independence {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-settings-page-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border: 1px solid var(--accent);
  border-radius: var(--btn-radius);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: none;
  font-family: var(--font-body);
}

.cookie-settings-page-btn:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}

.consent-bar[hidden] {
  display: none;
}

.consent-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.consent-bar-text h2 {
  font-size: 16px;
  margin-bottom: 4px;
}

.consent-bar-text p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 52ch;
}

.consent-bar-text a {
  color: var(--accent);
  text-decoration: underline;
}

.consent-bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}

.consent-btn {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.consent-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.consent-btn--accept:hover {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

.consent-dialog {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 26, 19, 0.4);
  padding: 24px;
}

.consent-dialog[hidden] {
  display: none;
}

.consent-dialog-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 440px;
  width: 100%;
  padding: 28px;
  max-height: 90vh;
  overflow-y: auto;
}

.consent-dialog-panel h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.consent-category {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.consent-category:last-of-type {
  border-bottom: none;
}

.consent-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.consent-category-header label {
  font-weight: 600;
  font-size: 15px;
}

.consent-category p {
  font-size: 13px;
  color: var(--text-muted);
}

.consent-toggle {
  position: relative;
  width: 44px;
  height: 24px;
}

.consent-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.consent-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: background 0.2s;
}

.consent-toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}

.consent-toggle input:checked + .consent-toggle-slider {
  background: var(--accent);
  border-color: var(--accent);
}

.consent-toggle input:checked + .consent-toggle-slider::before {
  transform: translateX(20px);
  background: var(--on-accent);
}

.consent-toggle input:disabled + .consent-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.consent-dialog-actions {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-offset__panel {
    width: 60%;
    padding: 40px 32px;
  }

  .about-approach-grid {
    gap: 32px;
  }
}

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

  .site-nav {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    display: none;
  }

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

  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .hero-offset {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .hero-offset__image {
    position: relative;
    width: 100%;
    height: 280px;
  }

  .hero-offset__panel {
    width: 100%;
    margin: 0;
    padding: 40px 24px;
  }

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

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

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

@media (max-width: 768px) {
  :root {
    --section-pad: 48px;
  }

  .category-band {
    grid-template-columns: 1fr;
  }

  .category-band--reverse .category-band__image {
    order: 0;
  }

  .category-band__image img {
    height: 220px;
  }

  .category-band__content {
    padding: 28px 24px;
  }

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

  .steps-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps-row::before {
    display: none;
  }

  .catalog-row {
    grid-template-columns: 1fr;
  }

  .catalog-row--reverse {
    direction: ltr;
  }

  .catalog-row__image img {
    height: 200px;
  }

  .gem-row {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }

  .gem-row__action {
    grid-column: 1 / -1;
    padding-left: 104px;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .consent-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .consent-bar-actions {
    width: 100%;
  }

  .consent-btn {
    flex: 1;
    text-align: center;
  }
}
