/* Custom: 1.css */
@import url('https://fonts.googleapis.com/css2?family=Magra:wght@400;700&family=Montserrat:wght@700&family=Spartan:wght@600&family=Ubuntu:wght@400;500;700&display=swap');

@font-face {
  font-style: normal;
  font-weight: normal;
  font-family: "Material Icons";
  font-display: block;
  src: url(":r:icomoon.woff2") format("woff2");
}
header img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
* {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style-position: inside;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
section {
  margin-bottom: var(--section-gap);
}

body {
 font-family: var(--font-family-main) !important;
 font-weight: var(--font-weight-body) !important;
 font-size: var(--font-size-base) !important;
  background: var(--background);
  color: var(--dark);
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: underline;
}
ul, ol {
  margin: 20px 0;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 14px;
  line-height: 1.6;
}
.content-container {
  padding-left: var(--page-gap);
  padding-right: var(--page-gap);
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .content-container {
    padding-left: var(--page-gap-reduced);
    padding-right: var(--page-gap-reduced);
  }
    section > div > div,
  section > div > div > div {
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 20px var(--page-gap-reduced);
  }



  ul, ol {
    padding-left: 16px;
  }
}

.breadcrumbs-section {
  width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    height: 100%;
}

.breadcrumbs-list .breadcrumbs-list-item {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin: 5px 0;
}

.breadcrumbs-list .breadcrumbs-list-item:last-child {
  color: var(--primary);
}

.breadcrumbs-list .breadcrumbs-list-item a {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
}

.breadcrumbs-list .breadcrumbs-list-item a:hover {
  text-decoration: underline;
}

.breadcrumbs-list .breadcrumbs-list-item a::after {
  content: "";
  margin: 0 10px 0 10px;
  border: solid rgba(0, 0, 0, 0.25);
  border-width: 0 2px 2px 0;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1px;
  padding: 5px;
  transform: rotate(45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.layout-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--section-gap);
  margin: var(--page-gap) auto;
  max-width: 1200px;
}

.main-column {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.sidebar-column {
  position: relative;
}
@media (max-width: 768px) {
 .layout-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar-column {
    grid-row: 1; 
  }

  .main-column {
    grid-row: 2;
  }
}

/* FAQ блок */
details {
  width: 100%;
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--primary);
  transition: var(--transition);
  font-family: var(--font-family-main);
}

details[open] {
  background: var(--accent);
}

details summary {
  cursor: pointer;
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-heading);
  color: var(--light);
  list-style: none;
  outline: none;
  transition: var(--transition);
}

details summary::-webkit-details-marker {
  display: none;
}

details summary:hover {
  background: var(--primary-hover);
}

details[open] summary {
  background: var(--accent-hover);
}

details div {
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-body);
  color: var(--light);
  background: var(--accent-transparent);
  line-height: 1.6;
}

/* Color scheme: color35 */
:root {
    --primary: #7a5c58;
    --primary-hover: #8f716d;
    --accent: #c6a15b;
    --accent-hover: #d4b774;
    --accent-secondary: #e0cfa0;
    --accent-transparent: rgba(198,161,91,0.3);
    --background: #faf7f3;
    --header: #ffffff;
    --shadow: 2px 2px 10px rgba(0,0,0,0.22);
    --page-gap: 20px;
    --page-gap-reduced: calc(var(--page-gap) / 2);
    --section-gap: 30px;
    --dark: #1c1c1c;
    --dark-default: rgba(0,0,0,0.85);
    --dark-muted: rgba(0,0,0,0.45);
    --light: #ffffff;
    --transition: all 0.25s cubic-bezier(0.39, 0, 0.17, 0.99);
    --radius: 4px;
    --font-family-main: 'Inter', sans-serif;
    --font-family-heading: 'Georgia', serif;
    --font-weight-body: 400;
    --font-weight-heading: 700;
    --font-size-base: 16px;
    --font-size-h1: 32px;
    --font-size-h2: 24px;
  }

/* HEADER */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;

  color: var(--light);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

.u_e34f7a {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--header) 80%, transparent 20%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02), var(--shadow);
}

.u_d879a2 {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px var(--page-gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.u_243a57 {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.u_243a57 img {
  height: auto;
  width: auto;
  max-width: 140px;
}

.u_412bd2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.u_c6eb3e {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  transform-origin: center;
}

.u_320b40 {
  padding: 11px 24px;
  font-size: 15px;
}

.u_3549b7 {
  padding: 6px 14px;
  font-size: 13px;
}

.u_7828cc {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: var(--light);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.u_7828cc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.18), transparent 60%);
  opacity: 0.7;
  mix-blend-mode: screen;
  pointer-events: none;
}

.u_7828cc:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--accent));
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.u_7828cc:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
}

.u_a7a965 {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.u_a7a965:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: var(--primary-hover);
  color: var(--primary-hover);
  transform: translateY(-1px);
}

.u_c5fbf5 {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--light);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.7);
}

.u_c5fbf5:hover {
  background: rgba(0, 0, 0, 0.75);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.u_11fdf2 {
  min-height: 100vh;
  background: #000000;
  padding-top: 72px;
}

.u_7e9756 {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  color: var(--light);
}

.u_67e9fc {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  display: block;
  z-index: 1;
}

.u_1e76c4 {
  position: absolute;
  inset: -5% -10%;
  z-index: 0;
  opacity: 0.45;
  transform: translate3d(0, 0, 0) scale(1.05);
  pointer-events: none;
}

.u_1e76c4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(30%) contrast(1.2) saturate(1.1);
}

.u_47c095 {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.14), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.9), #000000);
  mix-blend-mode: normal;
}

.u_62d0de {
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  top: 8%;
  z-index: 1;
  opacity: 0.75;
  filter: blur(2px);
  animation: blobPulse 10s ease-in-out infinite alternate;
}

.u_bc9642 {
  position: absolute;
  inset-inline: 0;
  bottom: -30px;
  height: 260px;
  z-index: 3;
  opacity: 0.6;
  mix-blend-mode: screen;
  pointer-events: none;
}

.u_2fd957 {
  position: relative;
  z-index: 4;
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px var(--page-gap) 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
}

.u_5bcac6 {
  max-width: 540px;
  animation: fadeUp 1.1s ease-out both;
  animation-delay: 0.15s;
  transform-origin: left center;
}

.u_44328b {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 14px;
}

.u_a3b93d {
  font-size: clamp(34px, 4.3vw, 46px);
  line-height: 1.08;
  letter-spacing: 0.03em;
  margin: 0 0 16px;
  color: var(--light);
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.9);
}

.u_7d32c9 {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 460px;
}

.u_bcdf44 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.u_903ccb {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.u_c70f89 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.u_5cb8e6 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.u_a74058 {
  background: #ff3355;
  box-shadow: 0 0 0 0 rgba(255, 51, 85, 0.9);
  animation: pingLive 1.4s infinite;
}

.u_628d1e {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  min-width: 0;
}

.u_eb9dd1 {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.12), transparent 55%),
    rgba(10, 10, 14, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  backdrop-filter: blur(20px);
  animation: fadeUp 1s ease-out both;
  animation-delay: 0.35s;
}

.u_eb9dd1::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.15), transparent 60%);
  opacity: 0.35;
  mix-blend-mode: screen;
  pointer-events: none;
}

.u_593586 {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.u_93d923 {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.u_ee77d6 {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  opacity: 0.2;
  animation: rotateGlow 9s linear infinite;
}

.u_6ec0d4 {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  color: var(--light);
}

.u_9d5d21 {
  min-width: 0;
}

.u_90325a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}

.u_dff8ac {
  font-weight: 600;
  font-size: 15px;
  color: var(--light);
}

.u_be3e47 {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0, 255, 180, 0.08);
  border: 1px solid rgba(0, 255, 180, 0.3);
  color: rgba(210, 255, 240, 0.96);
}

.u_f9671a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.u_71627e {
  margin: 6px 0 10px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.u_5d67f4 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.u_5cb789 {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
}

.u_0f60fc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.u_0e2f1b {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.u_f1ad5d {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.u_1c31f3 {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 3.2;
}

.u_c66913 {
  fill: none;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke: url(#loaderGradient);
  stroke-dasharray: 80;
  stroke-dashoffset: 120;
  transform-origin: 50% 50%;
  animation: loaderSpin 1.4s linear infinite;
}

.u_0bf8e6 {
  display: flex;
  flex-direction: column;
}

.u_37a710 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
}

.u_e595a0 {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.u_c437c1 {
  position: relative;
  padding: 13px 14px 11px;
  border-radius: 16px;
  background: rgba(7, 7, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  animation: fadeUp 1.1s ease-out both;
  animation-delay: 0.5s;
}

.u_c437c1::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.1), transparent 60%);
  opacity: 0.4;
  mix-blend-mode: screen;
  pointer-events: none;
}

.u_2422ed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.u_6a5ccf {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
}

.u_119805 {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0, 255, 180, 0.12);
  color: rgba(200, 255, 235, 0.98);
  border: 1px solid rgba(0, 255, 180, 0.35);
}

.u_2be21c {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.u_eb13bc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.u_02ee47 {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.u_0aa47e {
  background-image: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.u_57e340 {
  background-image: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.u_f900dc {
  background-image: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%);
}

.u_af46ac {
  min-width: 0;
  flex: 1;
}

.u_783fd3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 1px;
}

.u_0fe2b1 {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.u_a02d96 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.u_64cf23 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes pingLive {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 51, 85, 0.9);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 51, 85, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 51, 85, 0);
  }
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
    stroke-dashoffset: 120;
  }
  50% {
    stroke-dashoffset: 50;
  }
  100% {
    transform: rotate(360deg);
    stroke-dashoffset: 120;
  }
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes blobPulse {
  0% {
    transform: translate3d(10px, 0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(-20px, 10px, 0) scale(1.08);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(0, -10px, 0) scale(1.02);
    opacity: 0.75;
  }
}

@media (max-width: 1024px) {
  .u_d879a2 {
    padding-inline: 16px;
  }

  .u_2fd957 {
    padding-inline: 16px;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    gap: 26px;
  }

  .u_628d1e {
    transform: translateY(6px);
  }

  .u_a3b93d {
    font-size: clamp(30px, 4vw, 40px);
  }
}

@media (max-width: 768px) {
  .u_d879a2 {
    padding-inline: 14px;
  }

  .u_412bd2 {
    gap: 8px;
  }

  .u_c6eb3e {
    padding-inline: 14px;
  }

  .u_11fdf2 {
    padding-top: 64px;
  }

  .u_7e9756 {
    min-height: calc(100vh - 64px);
  }

  .u_2fd957 {
    padding: 48px 14px 28px;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .u_5bcac6 {
    max-width: none;
    text-align: left;
  }

  .u_7d32c9 {
    max-width: none;
  }

  .u_bcdf44 {
    justify-content: flex-start;
  }

  .u_628d1e {
    max-width: 460px;
  }

  .u_62d0de {
    width: 360px;
    height: 360px;
    right: -160px;
    top: 14%;
    opacity: 0.6;
  }

  .u_bc9642 {
    opacity: 0.45;
  }
}

@media (max-width: 540px) {
  .u_d879a2 {
    gap: 10px;
  }

  .u_243a57 img {
    max-width: 110px;
  }

  .u_412bd2 {
    flex-wrap: nowrap;
  }

  .u_a7a965 {
    padding-inline: 10px;
    font-size: 12px;
  }

  .u_7828cc {
    padding-inline: 12px;
    font-size: 12px;
  }

  .u_11fdf2 {
    padding-top: 60px;
  }

  .u_7e9756 {
    min-height: calc(100vh - 60px);
  }

  .u_2fd957 {
    padding: 40px 14px 24px;
  }

  .u_44328b {
    font-size: 11px;
  }

  .u_a3b93d {
    font-size: 28px;
  }

  .u_7d32c9 {
    font-size: 14px;
  }

  .u_bcdf44 {
    flex-direction: column;
    align-items: flex-start;
  }

  .u_320b40 {
    width: auto;
    max-width: 100%;
  }

  .u_eb9dd1 {
    padding: 16px 14px 14px;
  }

  .u_0f60fc {
    flex-direction: column;
    align-items: flex-start;
  }

  .u_c437c1 {
    padding-inline: 12px;
  }

  .u_eb13bc {
    padding-inline: 4px;
  }
}

/* LINKS */
.u_847a3e {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-gap);
  box-sizing: border-box;
}

.u_1d7b2f {
  position: relative;
  box-sizing: border-box;
  color: var(--light);
}

.u_04bef8 {
  position: relative;
  margin-bottom: calc(var(--section-gap) * 0.6);
  max-width: 640px;
  z-index: 2;
}

.u_997514 {
  margin: 0 0 0.25em 0;
  font-size: clamp(1.7rem, 2vw + 1rem, 2.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.u_84bff5 {
  margin: 0 0 0.4em 0;
  font-size: clamp(1.2rem, 1.2vw + 1rem, 1.6rem);
  font-weight: 600;
  color: var(--light);
}

.links-block-constellation907-description {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--light);
  opacity: 0.8;
}

.u_3a5e48 {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: visible;
}

.u_89ea3b {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform-origin: center;
  mix-blend-mode: screen;
}

.u_aaddeb {
  width: 380px;
  height: 380px;
  top: -40px;
  right: 5%;
  animation: links-block-constellation907-drift 26s linear infinite;
}

.u_6460a5 {
  width: 260px;
  height: 260px;
  top: 40px;
  right: 18%;
  animation: links-block-constellation907-drift-reverse 32s linear infinite;
}

.u_72b6f8 {
  position: absolute;
  width: 220px;
  height: 220px;
  right: 8%;
  top: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, var(--accent) 0, rgba(0,0,0,0) 60%);
  opacity: 0.25;
  filter: blur(12px);
}

.u_980b7a {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, max-content));
  gap: 14px 18px;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  z-index: 1;
}

.u_980b7a li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.u_980b7a a {
  --tag-bg: rgba(255, 255, 255, 0.04);
  --tag-border: rgba(255, 255, 255, 0.14);
  --tag-glow: rgba(255, 255, 255, 0.45);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  padding: 8px 16px;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: var(--radius);
  background-color: var(--primary);
  color: var(--light);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: none;
  border: 1px solid var(--tag-border);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform-origin: center;
  transition:
    background-color var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    filter var(--transition);
}

.u_980b7a a::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, var(--accent) 0, rgba(255,255,255,0) 55%);
  opacity: 0;
  transform: translate3d(-40%, -40%, 0) scale(0.7);
  transition:
    opacity var(--transition),
    transform var(--transition);
  z-index: -1;
}

.u_980b7a a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 120% 0, rgba(255,255,255,0.4) 0, rgba(255,255,255,0) 45%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity var(--transition);
  z-index: -1;
}

.u_980b7a a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.u_980b7a a .links-block-constellation907-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, var(--light) 0, var(--accent) 60%, rgba(0,0,0,0) 100%);
  box-shadow: 0 0 8px rgba(255,255,255,0.7);
}

.u_980b7a a .links-block-constellation907-label {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.u_980b7a a .links-block-constellation907-chevron {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.u_980b7a a .links-block-constellation907-chevron-icon {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid rgba(255,255,255,0.85);
  border-bottom: 1.5px solid rgba(255,255,255,0.85);
  transform: rotate(-45deg) translateX(-0.5px);
  transform-origin: center;
}

/* Hover / focus states */
.u_980b7a a:hover,
.u_980b7a a:focus-visible {
  background-color: var(--accent);
  color: var(--light);
  outline: none;
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    0 0 14px rgba(0, 0, 0, 0.9),
    0 0 28px rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
}

.u_980b7a a:hover::before,
.u_980b7a a:focus-visible::before {
  opacity: 0.9;
  transform: translate3d(-10%, -10%, 0) scale(1);
}

.u_980b7a a:hover::after,
.u_980b7a a:focus-visible::after {
  opacity: 1;
}

.u_980b7a a:hover .links-block-constellation907-chevron,
.u_980b7a a:focus-visible .links-block-constellation907-chevron {
  transform: translateX(3px);
  border-color: rgba(255,255,255,0.85);
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Individual subtle animations */
.u_980b7a li:nth-child(3n) a {
  animation: links-block-constellation907-fade-up 1s ease-out both;
}

.u_980b7a li:nth-child(3n+1) a {
  animation: links-block-constellation907-fade-delay 1.1s ease-out both;
}

.u_980b7a li:nth-child(3n+2) a {
  animation: links-block-constellation907-fade-soft 1.2s ease-out both;
}

/* Ensure contrast on any unexpected background */
.u_980b7a a,
.u_980b7a a * {
  color: var(--light);
}

/* Responsive */
@media (max-width: 1024px) {
  .u_aaddeb,
  .u_6460a5,
  .u_72b6f8 {
    opacity: 0.18;
  }

  .u_aaddeb {
    right: -4%;
  }

  .u_6460a5 {
    right: 10%;
  }
}

@media (max-width: 768px) {
  .u_847a3e {
    padding: calc(var(--section-gap) * 0.8);
  }

  .u_04bef8 {
    margin-bottom: 1.5rem;
  }

  .links-block-constellation907-description {
    font-size: 0.9rem;
  }

  .u_89ea3b,
  .u_72b6f8 {
    display: none;
  }

  .u_980b7a {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .u_980b7a li {
    flex: 1 1 100%;
  }

  .u_980b7a a {
    width: 100%;
    display: block;
    text-align: left;
    margin: 2px 0;
    padding: 10px 16px;
  }
}

/* Keyframes */
@keyframes links-block-constellation907-drift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(-6px, 4px, 0) rotate(180deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(360deg);
  }
}

@keyframes links-block-constellation907-drift-reverse {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(4px, -6px, 0) rotate(-180deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(-360deg);
  }
}

@keyframes links-block-constellation907-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes links-block-constellation907-fade-delay {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.95);
    filter: blur(2px);
  }
  45% {
    opacity: 0.4;
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes links-block-constellation907-fade-soft {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* FOOTER */
.u_5b78e0 {
  background: var(--header);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
}

.u_21579e {
  max-width: 1120px;
  margin: 0 auto;
  padding: calc(var(--section-gap) * 0.75) var(--page-gap);
  box-sizing: border-box;
  overflow-x: hidden;
}

.u_8a43de {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--page-gap) * 0.75);
  flex-wrap: wrap;
}

.u_0e0228 {
  flex: 0 0 auto;
}

.u_500c06 {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  gap: calc(var(--page-gap) * 0.75);
  flex-wrap: wrap;
}

.u_98428c {
  position: relative;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--primary);
  transition: color var(--transition), opacity var(--transition);
  opacity: 0.9;
}

.u_98428c::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: width var(--transition), background var(--transition);
}

.u_98428c:hover {
  color: var(--primary-hover);
  opacity: 1;
}

.u_98428c:hover::after {
  width: 100%;
}

.u_662fad {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.u_1a6e05 {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 12px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  opacity: 0.9;
}

.u_eb4728 {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  transition: fill var(--transition), transform var(--transition), opacity var(--transition);
}

.u_1a6e05:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px var(--shadow);
  background: rgba(0, 0, 0, 0.18);
  opacity: 1;
}

.u_1a6e05:hover .u_eb4728 {
  fill: var(--primary-hover);
  transform: scale(1.05);
}

.u_bff9d5 {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: calc(var(--page-gap) * 0.9);
  padding-top: calc(var(--page-gap) * 0.6);
}

.u_5fd8dc {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.015em;
  color: var(--primary);
  opacity: 0.95;
}

/* Tablet */
@media (max-width: 960px) {
  .u_21579e {
    padding: calc(var(--section-gap) * 0.8) var(--page-gap-reduced);
  }

  .u_8a43de {
    row-gap: calc(var(--page-gap) * 0.7);
  }

  .u_500c06 {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .u_662fad {
    order: 2;
  }

  .u_bff9d5 {
    margin-top: calc(var(--page-gap) * 0.8);
  }

  .u_5fd8dc {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .u_8a43de {
    flex-direction: column;
    align-items: flex-start;
  }

  .u_0e0228 {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .u_500c06 {
    width: 100%;
    justify-content: center;
    text-align: center;
    gap: 0.9rem;
  }

  .u_662fad {
    width: 100%;
    justify-content: center;
  }

  .u_98428c {
    font-size: 0.86rem;
  }

  .u_21579e {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
  }

  .u_bff9d5 {
    margin-top: var(--page-gap);
  }

  .u_5fd8dc {
    font-size: 0.8rem;
  }
}

/* BODY */
.u_bf535b {

  width: 100%;

  box-sizing: border-box;

  overflow-x: hidden;

  background: var(--background);

  padding: 0;

}



.u_e1c186 {

  max-width: 1080px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: 0;

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 0;

}





.u_cb342d {

  position: relative;

  width: 100%;

  max-width: 100%;

  box-sizing: border-box;

  overflow: hidden;

  display: block;

  border-radius: var(--radius) var(--radius) 0 0;

  isolation: isolate;

}



.u_cb342d img,

.u_cb342d > *:not(.u_592af3) {

  display: block;

  max-width: 100%;

  width: 100%;

  height: 320px;

  object-fit: cover;

  min-height: 220px;

  border-radius: var(--radius) var(--radius) 0 0;

  z-index: 1;

  position: relative;

}





.u_592af3 {

  pointer-events: none;

  position: absolute;

  left: 0; top: 0; width: 100%; height: 100%;

  z-index: 2;

  background: linear-gradient(

    to bottom,

    rgba(20,0,50,0.30) 0%,

    rgba(30,0,85,0.47) 55%,

    rgba(255,255,255,0.0) 100%

  );

  mix-blend-mode: multiply;

  backdrop-filter: blur(0.5px);

  border-radius: var(--radius) var(--radius) 0 0;

  transition: var(--transition);

}





.u_328f7f {

  position: relative;

  width: 100%;

  box-sizing: border-box;

  background: var(--light);

  border-radius: 0 0 var(--radius) var(--radius);

  box-shadow: 0 6px 24px 0 rgba(10,0,93,0.10), var(--shadow);

  margin-top: -60px;

  padding: 40px 48px 36px 48px;

  z-index: 10;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 36px;

}



@media (max-width: 1024px) {

  .u_328f7f {

    padding: 36px 24px 28px 24px;

    gap: 26px;

  }

}



@media (max-width: 768px) {

  .u_e1c186 {

    max-width: 100vw;

    padding: 0;

  }

  .u_328f7f {

    margin-top: -36px;

    padding: 24px 10px 18px 10px;

    gap: 20px;

    border-radius: 0 0 var(--radius) var(--radius);

  }

}



@media (max-width: 520px) {

  .u_328f7f {

    margin-top: -22px;

    padding: 16px 4vw 12px 4vw;

    gap: 14px;

  }

}





.u_1ce35c {

  color: var(--dark);

  font-size: 1.14rem;

  font-family: inherit;

  width: 100%;

  max-width: 730px;

  margin: 0;

  padding: 0;

}



.u_1ce35c h2,

.u_1ce35c h3 {

  color: var(--accent);

  font-weight: 700;

  margin: 0 0 12px 0;

  line-height: 1.18;

  letter-spacing: -0.5px;

}



.u_1ce35c h2 {font-size: 2rem;}

.u_1ce35c h3 {font-size: 1.28rem;}



.u_1ce35c p {

  margin: 0 0 14px 0;

  color: var(--dark-default);

  line-height: 1.62;

}



.u_1ce35c ul,

.u_1ce35c ol {

  padding-left: 1.24em;

  margin: 0 0 14px 0;

}



.u_1ce35c ul li {

  list-style: disc inside;

  margin-bottom: 6px;

  color: var(--dark-muted);

}



.u_1ce35c ol li {

  list-style: decimal inside;

  margin-bottom: 6px;

  color: var(--dark-muted);

}



.u_1ce35c a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.18s;

  word-break: break-all;

}

.u_1ce35c a:hover,

.u_1ce35c a:focus {

  color: var(--primary-hover);

}



.u_1ce35c table {

  width: 100%;

  border-collapse: collapse;

  margin: 12px 0;

  overflow-x: auto;

  font-size: 0.97rem;

}



.u_1ce35c th,

.u_1ce35c td {

  padding: 8px 10px;

  border-bottom: 1px solid var(--accent-secondary);

  text-align: left;

  color: var(--dark-default);

  background: var(--light);

}

.u_1ce35c th {

  background: var(--accent-transparent);

  color: var(--accent);

}



.u_1ce35c b, .u_1ce35c strong { font-weight: 700; }

.u_1ce35c i, .u_1ce35c em { font-style: italic; }



.u_1ce35c::-webkit-scrollbar {

  height: 4px;

  background: var(--background);

}

.u_1ce35c::-webkit-scrollbar-thumb {

  background: var(--accent-secondary);

}





.u_265edd {

  display: inline-block;

  padding: 14px 38px;

  font-size: 1.08rem;

  line-height: 1.14;

  font-weight: 700;

  background: var(--primary);

  color: var(--light);

  border-radius: var(--radius);

  box-shadow: 0 2px 16px 0 rgba(10,0,93,0.09), var(--shadow);

  transition: var(--transition), box-shadow 0.13s;

  text-decoration: none;

  margin-top: 8px;

  min-width: 128px;

  text-align: center;

  position: relative;

  user-select: none;

  white-space: nowrap;

  cursor: pointer;

  will-change: transform, box-shadow;

}



.u_265edd:hover,

.u_265edd:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0 8px 32px 0 rgba(10,0,93,0.13), var(--shadow);

  text-decoration: none;

}



.u_265edd:active {

  background: var(--accent);

  box-shadow: 0 1px 2px rgba(10,0,93,0.08);

}





@media (max-width: 768px) {

  .u_bf535b,

  .u_e1c186,

  .u_cb342d,

  .u_592af3,

  .u_328f7f {

    max-width: 100vw;

    box-sizing: border-box;

  }

}



body {

  overflow-x: hidden;

}

/* BODY1 */
.u_536b6c {
  box-sizing: border-box;
  max-width: 100%;
  padding: var(--section-gap) var(--page-gap);
  background: radial-gradient(circle at top, var(--accent-transparent), transparent 55%);
}

.u_536b6c * {
  box-sizing: border-box;
}

.u_e96973 {
  max-width: 960px;
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--section-gap);
  overflow-x: hidden;
}

.u_32aee4 {
  max-width: 720px;
  width: 100%;
  text-align: center;
  color: var(--dark-default);
}

.u_32aee4 .u_a0bd8e {
  max-width: 100%;
}

.u_32aee4 .u_a0bd8e h2,
.u_32aee4 .u_a0bd8e h3 {
  color: var(--dark);
  margin-bottom: var(--page-gap-reduced);
}

.u_32aee4 .u_a0bd8e p {
  color: var(--dark-muted);
  line-height: 1.6;
  margin-bottom: var(--page-gap-reduced);
}

.u_32aee4 .u_a0bd8e ul,
.u_32aee4 .u_a0bd8e ol {
  padding-left: 1.2em;
  margin: var(--page-gap-reduced) 0;
  color: var(--dark-default);
}

.u_32aee4 .u_a0bd8e li {
  margin-bottom: 6px;
}

.u_32aee4 .u_a0bd8e a {
  color: var(--accent);
  text-decoration: underline;
  transition: var(--transition);
}

.u_32aee4 .u_a0bd8e a:hover {
  color: var(--accent-hover);
}

.u_32aee4 .u_a0bd8e table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--page-gap-reduced);
  color: var(--dark-default);
}

.u_32aee4 .u_a0bd8e thead {
  background: var(--accent-transparent);
}

.u_32aee4 .u_a0bd8e th,
.u_32aee4 .u_a0bd8e td {
  padding: 8px 10px;
  border: 1px solid var(--dark-muted);
}

.u_5ead3a {
  max-width: 760px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.u_c93092 {
  position: relative;
  max-width: 760px;
  width: 100%;
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--header);
}

.u_c93092::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top, var(--accent-transparent), transparent 60%);
  mix-blend-mode: soft-light;
}

.u_c93092 img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.u_0d0cb1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--page-gap-reduced);
}

.u_6ac2bd.u_d81db7,
.u_6ac2bd.u_a0babd {
  display: inline-block;
  padding: 12px 28px;
  border-radius: calc(var(--radius) * 2);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
  max-width: max-content;
}

.u_6ac2bd.u_d81db7 {
  background: var(--primary);
  color: var(--light);
}

.u_6ac2bd.u_d81db7:hover {
  background: var(--primary-hover);
  transform: translateY(-2px) scale(1.01);
}

.u_6ac2bd.u_a0babd {
  background: var(--light);
  color: var(--accent);
  border: 1px solid var(--accent-transparent);
}

.u_6ac2bd.u_a0babd:hover {
  background: var(--accent-transparent);
  color: var(--accent-hover);
  transform: translateY(-2px) scale(1.01);
}

@media (max-width: 768px) {
  .u_536b6c {
    padding: var(--section-gap) var(--page-gap-reduced);
  }

  .u_32aee4 {
    text-align: left;
  }

  .u_c93092 {
    border-radius: calc(var(--radius) * 1.5);
  }

  .u_0d0cb1 {
    justify-content: flex-start;
  }
}

/* BODY2 */
.u_536b6c {
  box-sizing: border-box;
  max-width: 100%;
  padding: var(--section-gap) var(--page-gap);
  background: radial-gradient(circle at top, var(--accent-transparent), transparent 55%);
}

.u_536b6c * {
  box-sizing: border-box;
}

.u_e96973 {
  max-width: 960px;
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--section-gap);
  overflow-x: hidden;
}

.u_32aee4 {
  max-width: 720px;
  width: 100%;
  text-align: center;
  color: var(--dark-default);
}

.u_32aee4 .u_a0bd8e {
  max-width: 100%;
}

.u_32aee4 .u_a0bd8e h2,
.u_32aee4 .u_a0bd8e h3 {
  color: var(--dark);
  margin-bottom: var(--page-gap-reduced);
}

.u_32aee4 .u_a0bd8e p {
  color: var(--dark-muted);
  line-height: 1.6;
  margin-bottom: var(--page-gap-reduced);
}

.u_32aee4 .u_a0bd8e ul,
.u_32aee4 .u_a0bd8e ol {
  padding-left: 1.2em;
  margin: var(--page-gap-reduced) 0;
  color: var(--dark-default);
}

.u_32aee4 .u_a0bd8e li {
  margin-bottom: 6px;
}

.u_32aee4 .u_a0bd8e a {
  color: var(--accent);
  text-decoration: underline;
  transition: var(--transition);
}

.u_32aee4 .u_a0bd8e a:hover {
  color: var(--accent-hover);
}

.u_32aee4 .u_a0bd8e table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--page-gap-reduced);
  color: var(--dark-default);
}

.u_32aee4 .u_a0bd8e thead {
  background: var(--accent-transparent);
}

.u_32aee4 .u_a0bd8e th,
.u_32aee4 .u_a0bd8e td {
  padding: 8px 10px;
  border: 1px solid var(--dark-muted);
}

.u_5ead3a {
  max-width: 760px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.u_c93092 {
  position: relative;
  max-width: 760px;
  width: 100%;
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--header);
}

.u_c93092::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top, var(--accent-transparent), transparent 60%);
  mix-blend-mode: soft-light;
}

.u_c93092 img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.u_0d0cb1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--page-gap-reduced);
}

.u_6ac2bd.u_d81db7,
.u_6ac2bd.u_a0babd {
  display: inline-block;
  padding: 12px 28px;
  border-radius: calc(var(--radius) * 2);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
  max-width: max-content;
}

.u_6ac2bd.u_d81db7 {
  background: var(--primary);
  color: var(--light);
}

.u_6ac2bd.u_d81db7:hover {
  background: var(--primary-hover);
  transform: translateY(-2px) scale(1.01);
}

.u_6ac2bd.u_a0babd {
  background: var(--light);
  color: var(--accent);
  border: 1px solid var(--accent-transparent);
}

.u_6ac2bd.u_a0babd:hover {
  background: var(--accent-transparent);
  color: var(--accent-hover);
  transform: translateY(-2px) scale(1.01);
}

@media (max-width: 768px) {
  .u_536b6c {
    padding: var(--section-gap) var(--page-gap-reduced);
  }

  .u_32aee4 {
    text-align: left;
  }

  .u_c93092 {
    border-radius: calc(var(--radius) * 1.5);
  }

  .u_0d0cb1 {
    justify-content: flex-start;
  }
}