/* 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: color30 */
:root {
    --primary: #dc143c;
    --primary-hover: #e33a5d;
    --accent: #20b2aa;
    --accent-hover: #3cc3bb;
    --accent-secondary: #57d4cc;
    --accent-transparent: rgba(32, 178, 170, 0.3);
    --background: #fffafa;
    --header: #ffffff;
    --shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    --page-gap: 20px;
    --page-gap-reduced: calc(var(--page-gap) / 2);
    --section-gap: 30px;
    --dark: #000000;
    --dark-default: rgba(0, 0, 0, 0.8);
    --dark-muted: rgba(0, 0, 0, 0.4);
    --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 */
html {

  box-sizing: border-box;

}

*, *:before, *:after {

  box-sizing: inherit;

}

body {

  margin: 0;

  padding: 0;

  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  background: var(--background);

  overflow-x: hidden;

  color: var(--dark);

}





.u_b9763e {

  position: absolute;

  top: 0; left: 0; right: 0;

  z-index: 10;

  width: 100%;

  background: var(--header);

  box-shadow: none;

  min-height: 72px;

}



.u_cb3221 {

  max-width: 1240px;

  margin: 0 auto;

  padding: 24px var(--page-gap);

  display: flex;

  align-items: center;

  min-height: 72px;

  width: 100%;

}





.u_a86a15 {

  min-height: 100vh;

  width: 100vw;

  padding: 0;

  margin: 0;

  display: flex;

}

.u_38c288 {

  position: relative;

  width: 100vw;

  height: 100vh;

  min-height: 500px;

  display: flex;

  align-items: stretch;

  justify-content: center;

  overflow: hidden;

}

.u_38c288 img {

  width: 100vw;

  height: 100vh;

  min-height: 500px;

  object-fit: cover;

  display: block;

  pointer-events: none;

  user-select: none;

  position: absolute;

  top: 0; left: 0;

}





.u_0e40f8 {

  position: absolute;

  z-index: 1;

  top: 0; left: 0; right: 0; bottom: 0;

  background:

    linear-gradient(180deg, rgba(20,20,40,0.65) 0%, rgba(20,10,50,0.45) 70%, rgba(30,20,50,0.65) 100%);

  backdrop-filter: blur(0.5px) saturate(1.3);

  pointer-events: none;

}





.u_9d4cf4 {

  z-index: 2;

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%,-50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  width: min(95vw, 540px);

  padding: calc(var(--section-gap) * 1.2) 2vw;

  background: rgba(0,0,0,0.06);

  border-radius: var(--radius);

}

.u_9d4cf4 h1 {

  font-size: clamp(2.2rem, 5vw, 3.4rem);

  font-weight: 700;

  letter-spacing: -0.01em;

  line-height: 1.12;

  color: var(--light);

  text-shadow: 0 4px 24px rgba(24, 20, 48, 0.28);

  margin-bottom: 36px;

  margin-top: 0;

  transition: color var(--transition);

}

.u_a34575 {

  display: inline-block;

  padding: 15px 42px;

  font-size: 1.12rem;

  font-weight: 600;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary), var(--accent) 95%);

  border: none;

  border-radius: var(--radius);

  box-shadow: 0 4px 22px 0 rgba(0,0,0,0.13);

  text-decoration: none;

  cursor: pointer;

  transition:

    background var(--transition),

    transform 0.19s cubic-bezier(.45,.05,.55,.95),

    box-shadow var(--transition),

    filter 0.24s;

  will-change: transform, box-shadow;

  min-width: 180px;

  box-sizing: border-box;

}

.u_a34575:hover, .u_a34575:focus-visible {

  background: linear-gradient(90deg, var(--primary-hover) 62%, var(--accent-hover) 100%);

  filter: brightness(1.11) drop-shadow(0 4px 20px var(--accent-transparent));

  transform: scale(1.04) translateY(-3px);

  box-shadow: 0 14px 42px -8px var(--shadow), 0 6px 24px 0 rgba(0,0,0,0.12);

}





@media (max-width: 1024px) {

  .u_cb3221 { max-width: 96vw; padding: 14px var(--page-gap-reduced); }

  .u_9d4cf4 { padding: calc(var(--section-gap) * 0.7) 4vw; }

  .u_a86a15, .u_38c288 {

    min-height: 85vh;

    height: 85vh;

  }

}

@media (max-width: 768px) {

  .u_cb3221 {

    padding: 12px var(--page-gap-reduced);

  }

  .u_b9763e {

    min-height: 48px;

    background: var(--header);

  }

  .u_a86a15, .u_38c288 {

    min-height: 69vh;

    height: 69vh;

  }

  .u_9d4cf4 h1 {

    font-size: clamp(1.55rem, 5.7vw, 2.25rem);

    margin-bottom: 26px;

  }

  .u_a34575 {

    padding: 12px 22px;

    font-size: 1rem;

    min-width: 130px;

  }

}

@media (max-width: 480px) {

  .u_cb3221 { padding: 7px 3vw; }

  .u_9d4cf4 {

    padding: 14vw 3vw;

    width: 99vw;

    border-radius: 0;

  }

  .u_38c288,

  .u_a86a15 {

    min-height: 34vh;

    height: 34vh;

  }

  .u_9d4cf4 h1 {

    font-size: 1.12rem;

    margin-bottom: 20px;

  }

  .u_a34575 {

    font-size: 0.98rem;

    padding: 11px 16px;

    min-width: unset;

    width: max-content;

  }

}

/* FOOTER */
.u_b82584 {
  background: var(--header);
  padding: var(--page-gap);
  box-shadow: var(--shadow);
  overflow-x: hidden;
}

.u_20b935 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--page-gap);
  max-width: 100%;
  flex-wrap: nowrap;
}

.u_fe7d8d {
  flex-shrink: 0;
  display: block;
  max-width: 100%;
  height: auto;
}

.u_f0bbea {
  color: var(--primary);
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .u_20b935 {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--page-gap-reduced);
  }
  .u_f0bbea {
    white-space: normal;
    margin-top: var(--page-gap-reduced);
  }
}

/* BODY */
.u_25f67e {

  box-sizing: border-box;

  background: var(--light);

  border: 1.5px solid var(--accent);

  box-shadow: 0 10px 36px 0 var(--shadow), 0 1.5px 4px 0 var(--accent-transparent);

  border-radius: var(--radius);

  padding: 0;

  overflow-x: hidden;

  width: 100%;

  margin: 0 auto var(--section-gap) auto;

  max-width: 1240px;

  transition: var(--transition);

}



.u_0547b3 {

  display: flex;

  align-items: stretch;

  min-width: 0;

  width: 100%;

  gap: 0;

  background: var(--light);

  border-radius: var(--radius);

  overflow: hidden;

}



.u_298262 {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-start;

  background: linear-gradient(120deg, var(--accent-transparent) 40%, transparent 100%);

  padding: 0 0 var(--section-gap) 0;

  min-width: 0;

  width: 56%;

  box-sizing: border-box;

  position: relative;

  z-index: 2;

  border-right: 1px solid var(--accent-secondary);

}



.u_298262 img {

  max-width: 96%;

  height: auto;

  display: block;

  border-radius: calc(var(--radius) * 1.5) calc(var(--radius) * 1.5) calc(var(--radius) * 0.8) calc(var(--radius) * 0.8);

  box-shadow: 0 4px 28px var(--shadow), 0 0.5px 2px var(--accent-transparent);

  margin: var(--page-gap) auto 28px auto;

  backdrop-filter: blur(0.5px);

  background: var(--light);

  transition: transform 0.32s cubic-bezier(0.33, 1, 0.68, 1), box-shadow var(--transition);

}



.u_79b57e {

  display: flex;

  align-items: center;

  flex: 1 1 0;

  justify-content: center;

  min-width: 0;

  background: transparent;

  padding: var(--section-gap) calc(var(--section-gap) + 10px);

}



.u_79b57e .u_d40925 {

  width: 100%;

  max-width: 410px;

  color: var(--dark);

  font-size: 1.125rem;

  font-family: inherit;

  line-height: 1.5;

  letter-spacing: 0;

  word-break: break-word;

  min-width: 0;

}



.u_79b57e h2,

.u_79b57e h3 {

  color: var(--accent);

  font-weight: 800;

  margin: 0 0 14px 0;

  letter-spacing: -0.5px;

}



.u_79b57e p {

  color: var(--dark-default);

  margin-bottom: 16px;

}



.u_79b57e ul,

.u_79b57e ol {

  padding-left: 1.25em;

  margin-bottom: 16px;

}



.u_79b57e ul li {

  list-style: disc inside;

  margin-bottom: 6px;

  color: var(--dark);

}



.u_79b57e ol li {

  list-style: decimal inside;

  margin-bottom: 6px;

  color: var(--dark);

}



.u_79b57e b,

.u_79b57e strong {

  color: var(--primary);

  font-weight: 700;

}



.u_79b57e i,

.u_79b57e em {

  color: var(--accent);

}



.u_79b57e a {

  color: var(--primary);

  text-decoration: underline;

  transition: var(--transition);

  font-weight: 600;

}

.u_79b57e a:hover {

  color: var(--accent-hover);

}



.u_79b57e table {

  width: 100%;

  border-collapse: collapse;

  margin: 18px 0;

  font-size: 0.97em;

  overflow-x: auto;

  display: block;

  background: var(--background);

  border: 1px solid var(--accent-secondary);

  border-radius: calc(var(--radius) * 0.8);

}

.u_79b57e thead {

  background: var(--accent-secondary);

}

.u_79b57e th,

.u_79b57e td {

  border: 1px solid var(--accent-transparent);

  padding: 6px 9px;

  text-align: left;

  color: var(--dark);

}



.u_735b89 {

  display: block;

  margin: 32px auto 0 auto;

  padding: 16px 42px;

  background: var(--primary);

  color: var(--light);

  font-weight: 700;

  font-size: 1.18rem;

  border-radius: calc(var(--radius) * 2);

  box-shadow: 0 5px 20px var(--shadow), 0 1px 4px var(--accent-transparent);

  text-decoration: none;

  border: none;

  letter-spacing: 0.02em;

  cursor: pointer;

  transition: background 0.22s cubic-bezier(.4,.8,.6,1.4), transform 0.18s cubic-bezier(.25,1,.68,1.53), box-shadow 0.16s;

  outline: none;

  will-change: background, transform, box-shadow;

  min-width: 170px;

  max-width: 360px;

  text-align: center;

}



.u_735b89:hover,

.u_735b89:focus {

  background: var(--primary-hover);

  box-shadow: 0 10px 34px var(--shadow), 0 3px 8px var(--accent-transparent);

  transform: translateY(-2px) scale(1.025);

}



@media (max-width: 1090px) {

  .u_0547b3 {

    flex-direction: column;

  }

  .u_298262, .u_79b57e {

    width: 100%;

    min-width: 0;

    border-right: none;

    border-bottom: 1px solid var(--accent-secondary);

  }

  .u_298262 {

    border-bottom: none;

    padding-bottom: 0;

  }

  .u_735b89 {

    margin: 22px auto 20px auto;

  }

  .u_79b57e {

    padding: var(--section-gap) var(--page-gap);

  }

}



@media (max-width: 768px) {

  .u_25f67e, .u_0547b3 {

    max-width: 100%;

    border-radius: 0;

    box-sizing: border-box;

  }

  .u_0547b3 {

    flex-direction: column;

    padding: 0;

    gap: 0;

  }

  .u_298262 {

    padding: var(--page-gap) 0 8px 0;

    border-radius: 0;

    min-width: 0;

    width: 100%;

    box-shadow: none;

  }

  .u_79b57e {

    padding: var(--page-gap) var(--page-gap-reduced);

    max-width: 100%;

  }

  .u_79b57e .u_d40925 {

    font-size: 1rem;

    max-width: 100%;

    min-width: 0;

  }

}

/* BODY1 */
.u_ff4f12 {

  position: relative;

  width: 100%;

  min-height: 520px;

  padding: var(--section-gap) 0;

  box-sizing: border-box;

  overflow-x: hidden;

  background: var(--background, #E5E5E5);

}



.u_862c46 {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  overflow: hidden;

  z-index: 1;

  pointer-events: none;

}



.u_862c46 > [src*="index_header_general_1024x640"] {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  

  position: absolute;

  inset: 0;

  will-change: transform;

}



.u_d5a894 {

  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  background: repeating-linear-gradient(

    135deg,

    rgba(21,0,70,0.08) 0px,

    rgba(21,0,70,0.08) 3px,

    transparent 3px,

    transparent 18px

  ),

  radial-gradient(

    circle at 16px 18px,

    rgba(0,0,0,0.13) 1.5px,

    transparent 2.5px

  ),

  repeating-linear-gradient(

    45deg,

    rgba(171,161,251,0.10) 0px,

    rgba(171,161,251,0.10) 2px,

    transparent 2px,

    transparent 16px

  );

  opacity: 0.75;

  backdrop-filter: blur(0.5px);

  transition: opacity 0.5s var(--transition);

}



.u_f57b06 {

  position: relative;

  z-index: 10;

  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 520px;

  width: 100%;

  max-width: 100vw;

  padding: var(--section-gap) clamp(12px, 5vw, 48px);

  box-sizing: border-box;

}



.u_7b3ff9 {

  background: var(--light);

  box-shadow: var(--shadow), 0 6px 36px rgba(10,0,93,0.10);

  border-radius: 24px;

  padding: 46px 54px 32px 54px;

  max-width: 568px;

  width: 100%;

  min-width: 0;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 28px;

  backdrop-filter: blur(0.5px);

  transition: box-shadow var(--transition), transform var(--transition);

}



.u_7b3ff9:hover, .u_7b3ff9:focus-within {

  box-shadow: var(--shadow), 0 10px 48px rgba(10,0,93,0.18);

  transform: translateY(-4px) scale(1.013);

}



.u_19b50b {

  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;

  color: var(--dark);

  text-align: center;

  font-size: 1.15rem;

  line-height: 1.75;

  font-weight: 400;

  letter-spacing: 0.01em;

  overflow-x: auto;

  width: 100%;

  

}



.u_19b50b h2,

.u_19b50b h3 {

  color: var(--primary);

  font-weight: 700;

  margin: 0 0 0.7em 0;

  letter-spacing: 0.01em;

  line-height: 1.25;

}



.u_19b50b h3 {

  color: var(--accent);

  font-size: 1.2em;

}



.u_19b50b p {

  margin: 0 0 1em 0;

}



.u_19b50b ul,

.u_19b50b ol {

  margin: 0 0 1.1em 1.3em;

  padding: 0 0 0 1em;

  color: var(--dark-default);

  font-size: 1em;

  line-height: 1.7;

}

.u_19b50b ul {

  list-style: disc;

}

.u_19b50b ol {

  list-style: decimal;

}

.u_19b50b li {

  margin-bottom: 0.4em;

}

.u_19b50b b {

  font-weight: 600;

  color: var(--primary);

}

.u_19b50b i {

  color: var(--accent);

}

.u_19b50b a {

  color: var(--accent);

  text-decoration: underline;

  transition: color var(--transition);

}

.u_19b50b a:hover,

.u_19b50b a:focus {

  color: var(--primary-hover);

}



.u_19b50b table {

  width: 100%;

  border-collapse: collapse;

  margin: 1.2em 0;

  font-size: 0.98em;

  overflow-x: auto;

  background: var(--background);

  border-radius: 6px;

  box-shadow: 0 1px 6px rgba(0,0,0,0.04);

  display: block;

}

.u_19b50b thead {

  background: var(--accent-transparent, #ecebfd);

  color: var(--accent);

  font-weight: 700;

}

.u_19b50b th,

.u_19b50b td {

  padding: 10px 18px;

  border: 1px solid var(--accent-secondary, #ABA1FB);

  text-align: left;

  min-width: 80px;

}

.u_19b50b tr:last-child td {

  border-bottom: none;

}





.u_b9a74c.u_9b4d67 {

  background: var(--primary);

  color: var(--light);

  display: inline-block;

  padding: 13px 36px;

  border-radius: var(--radius);

  font-weight: 600;

  font-size: 1.09rem;

  box-shadow: 0 2px 12px 0 rgba(10,0,93,0.16);

  border: none;

  text-decoration: none;

  margin-top: 12px;

  transition: 

    background var(--transition), 

    color var(--transition), 

    box-shadow var(--transition), 

    transform .22s cubic-bezier(.3,1.6,.6,1), 

    filter 0.18s;

  cursor: pointer;

  outline: none;

  min-width: max-content;

  will-change: transform;

}

.u_b9a74c.u_9b4d67:hover,

.u_b9a74c.u_9b4d67:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  transform: scale(1.045) translateY(-2px);

  box-shadow: 0 4px 18px 0 rgba(10,0,93,0.20);

  filter: brightness(1.04);

}



@media (max-width: 1024px) {

  .u_f57b06,

  .u_7b3ff9 {

    padding-left: clamp(8px, 3vw, 30px);

    padding-right: clamp(8px, 3vw, 30px);

  }

  .u_7b3ff9 {

    max-width: 98vw;

    padding: 36px 11vw;

  }

  .u_f57b06 {

    min-height: 360px;

  }

}

@media (max-width: 768px) {

  .u_ff4f12 {

    padding: var(--section-gap) 0;

  }

  .u_f57b06 {

    min-height: 240px;

    padding: var(--section-gap) clamp(5px, 4vw, 18px);

  }

  .u_7b3ff9 {

    padding: 30px 7vw 22px 7vw;

    border-radius: 14px;

    gap: 20px;

    max-width: 100%;

  }

  .u_19b50b {

    font-size: 1rem;

    text-align: left;

  }

  .u_d5a894 {

    opacity: 0.7;

  }

}

@media (max-width: 500px) {

  .u_7b3ff9 {

    padding: 16px 0vw 18px 0vw;

    border-radius: 9px;

    max-width: 100vw;

  }

  .u_862c46 > [src*="index_header_general_1024x640"] {

    min-height: 200px;

  }

  .u_b9a74c.u_9b4d67 {

    width: auto;

    min-width: max-content;

    font-size: 1rem;

    padding: 11px 18px;

  }

}





.u_ff4f12, .u_7b3ff9, .u_f57b06, .u_19b50b {

  box-sizing: border-box;

  max-width: 100%;

  min-width: 0;

}

/* BODY2 */
.u_052546 {

  background: var(--light);

  border: 1px solid var(--accent-transparent, rgba(171,161,251,0.15));

  box-shadow: var(--shadow), 0 6px 40px 0 rgba(10,0,93,0.06);

  border-radius: var(--radius);

  padding: var(--section-gap);

  max-width: 720px;

  margin: var(--section-gap) auto;

  box-sizing: border-box;

  overflow-x: hidden;

  transition: box-shadow 0.25s cubic-bezier(0.39,0,0.17,0.99), border 0.22s var(--transition);

  backdrop-filter: blur(0.5px);

  display: flex;

  flex-direction: column;

  gap: 0;

}



.u_f22301 {

  width: 100%;

  max-width: 100%;

  display: flex;

  flex-direction: column;

  box-sizing: border-box;

}



.u_fb84a9 {

  color: var(--dark-default);

  font-size: 1.08rem;

  line-height: 1.65;

  letter-spacing: 0;

  font-weight: 400;

  max-width: 100%;

  padding: 0;

  margin: 0;

  box-sizing: border-box;

}



.u_fb84a9 h2,

.u_fb84a9 h3 {

  color: var(--primary);

  font-weight: 700;

  margin-bottom: 1.1em;

  margin-top: 0;

  line-height: 1.18;

  letter-spacing: -0.012em;

}



.u_fb84a9 h2 {

  font-size: 2rem;

}



.u_fb84a9 h3 {

  font-size: 1.25rem;

  margin-top: 1.5em;

}



.u_fb84a9 p {

  margin: 1.45em 0 1.55em 0;

}



.u_fb84a9 ul,

.u_fb84a9 ol {

  margin: 1em 0 1.5em 1.6em;

  padding: 0;

  list-style-position: outside;

  color: var(--dark-muted);

  font-size: 1em;

  line-height: 1.4;

}



.u_fb84a9 ul {

  list-style-type: disc;

}



.u_fb84a9 ol {

  list-style-type: decimal;

}



.u_fb84a9 li {

  margin: 0.18em 0 0.18em 0;

  padding: 0;

}



.u_fb84a9 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.22s var(--transition);

  word-break: break-all;

}

.u_fb84a9 a:hover,

.u_fb84a9 a:focus {

  color: var(--accent-hover);

  text-decoration: none;

}



.u_fb84a9 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0 1.5em 0;

  overflow-x: auto;

  display: block;

}



.u_fb84a9 thead {

  background: var(--accent-transparent);

}



.u_fb84a9 th,

.u_fb84a9 td {

  border: 1px solid var(--accent-transparent, rgba(171,161,251,0.18));

  padding: 0.6em 1em;

  text-align: left;

  color: var(--dark-default);

  font-size: 0.98em;

}



.u_fb84a9 th {

  font-weight: 600;

  color: var(--accent);

}



.u_fb84a9 b, .u_fb84a9 strong {

  font-weight: 600;

  color: var(--primary);

}

.u_fb84a9 i, .u_fb84a9 em {

  font-style: italic;

}



@media (max-width: 1024px) {

  .u_052546 {

    padding: calc(var(--section-gap) * 0.7);

    max-width: 96vw;

  }

  .u_fb84a9 h2 {

    font-size: 1.5rem;

  }

}



@media (max-width: 768px) {

  .u_052546 {

    padding: calc(var(--section-gap) * 0.55);

    margin: var(--page-gap-reduced) auto;

    max-width: 99vw;

    border-radius: calc(var(--radius) * 1.5);

    box-shadow: 0 2px 16px rgba(10,0,93,0.10);

  }

  .u_fb84a9 {

    font-size: 0.97rem;

  }

  .u_fb84a9 h2 {

    font-size: 1.13rem;

    margin-bottom: .85em;

  }

}





.u_052546, .u_fb84a9, .u_f22301 {

  min-width: 0;

  max-width: 100vw;

}