/* 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: color12 */
:root {
    --primary: #008080;
    --primary-hover: #199393;
    --accent: #ff6347;
    --accent-hover: #ff7a66;
    --accent-secondary: #ff917f;
    --accent-transparent: rgba(255, 99, 71, 0.3);
    --background: #f0ffff;
    --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 */
*,

*:before,

*:after {

  box-sizing: border-box;

}



body, html {

  margin: 0;

  padding: 0;

  overflow-x: hidden;

  background: var(--background);

}



.u_002b18 {

  width: 100%;

  background: var(--header);

  box-shadow: var(--shadow);

  padding: 0;

}



.u_824eef {

  display: flex;

  align-items: center;

  height: 76px;

  padding: 0 calc(var(--page-gap) * 1.5);

  min-width: 0;

}



.u_2cb308 {

  display: flex;

  align-items: center;

  text-decoration: none;

  user-select: none;

}



.u_abbe76 {

  width: 100%;

  padding: 0;

  background: none;

}



.u_777c3c {

  display: flex;

  align-items: stretch;

  justify-content: center;

  gap: calc(var(--page-gap) * 2);

  max-width: 1120px;

  margin: 0 auto;

  padding: calc(var(--section-gap) * 1.1) var(--page-gap);

  min-height: 480px;

  box-sizing: border-box;

}



.u_003445 {

  flex: 0 1 320px;

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 0;

  max-width: 100%;

}



.u_aa5019 {

  position: relative;

  width: 320px;

  height: 480px;

  border-radius: calc(var(--radius) * 2.8);

  box-shadow: 0 12px 32px 0 rgba(10, 0, 93, 0.13), 0 2px 10px 0 rgba(0,0,0,0.08);

  overflow: hidden;

  display: flex;

  align-items: stretch;

  justify-content: center;

}



.u_aa5019 img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center center;

  position: relative;

  z-index: 1;

  border-radius: inherit;

}



.u_f36f43 {

  position: absolute;

  inset: 0;

  z-index: 2;

  background: 

    linear-gradient(135deg, var(--accent) 0%, rgba(255,255,255,0.05) 100%);

  opacity: 0.25;

  mix-blend-mode: multiply;

  pointer-events: none;

  border-radius: inherit;

}



.u_7809aa {

  flex: 1 1 0;

  display: flex;

  align-items: center;

  min-width: 0;

  max-width: 540px;

  padding: 0;

  justify-content: flex-start;

}



.u_57dea9 {

  backdrop-filter: blur(12px) saturate(150%);

  background: linear-gradient(120deg, rgba(255,255,255,0.65) 65%, var(--accent-transparent) 100%);

  box-shadow: 0 8px 24px 0 rgba(149,24,48,0.06), var(--shadow);

  border-radius: calc(var(--radius) * 2.5);

  padding: calc(var(--section-gap) * 0.5) calc(var(--page-gap) * 1.5);

  display: flex;

  flex-direction: column;

  gap: 1.5rem;

  min-width: 0;

  animation: glass-fade-in 0.88s cubic-bezier(.44,0,.6,1.1);

}



@keyframes glass-fade-in {

  0% { opacity: 0; transform: translateY(32px) scale(0.96);}

  100% { opacity: 1; transform: translateY(0) scale(1);}

}



.u_e00e87 {

  font-size: 2.8rem;

  font-weight: 800;

  line-height: 1.13;

  color: var(--accent);

  letter-spacing: -0.03em;

  margin: 0 0 0.2em 0;

}

header img {



    margin-top: 15px;

}

.hero-block-simple219__desc {

  font-size: 1.15rem;

  line-height: 1.8;

  color: var(--dark-muted);

  margin: 0 0 1rem 0;

  max-width: 390px;

}



.u_00fd65 {

  display: inline-block;

  font-size: 1.12rem;

  font-weight: 700;

  letter-spacing: 0.03em;

  padding: 0.9em 2.2em;

  margin-top: 0.2em;

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);

  color: var(--light);

  border-radius: calc(var(--radius) * 2);

  text-decoration: none;

  box-shadow: 0 4px 24px 0 rgba(149,24,48,0.18);

  border: none;

  transition: 

    background var(--transition),

    transform 0.32s cubic-bezier(.49,0,.47,1.1),

    box-shadow 0.22s cubic-bezier(.29,.7,.35,1),

    filter 0.18s;

  cursor: pointer;

  will-change: transform;

  user-select: none;

  outline: none;

  position: relative;

}



.u_00fd65:active {

  filter: brightness(.99) contrast(1.08);

}



.u_00fd65:focus-visible {

  outline: 2px solid var(--primary-hover);

}



.u_00fd65:hover {

  background: linear-gradient(100deg, var(--primary-hover) 75%, var(--accent) 100%);

  transform: scale(1.075) translateY(-3px);

  box-shadow: 0 10px 32px 0 var(--accent-transparent), 0 2px 10px 0 var(--shadow);

}



@media (max-width: 1024px) {

  .u_777c3c {

    max-width: 100%;

    gap: var(--page-gap);

    padding: calc(var(--section-gap) * 0.9) var(--page-gap);

  }

  .u_aa5019 {

    width: 240px;

    height: 360px;

  }

}



@media (max-width: 768px) {

  .u_824eef {

    height: 60px;

    padding: 0 var(--page-gap);

  }

  .u_777c3c {

    flex-direction: column;

    gap: 2.3rem;

    align-items: center;

    min-width: 0;

    padding: calc(var(--section-gap) * 0.5) var(--page-gap);

  }

  .u_003445,

  .u_7809aa {

    max-width: 100%;

    width: 100%;

    justify-content: center;

  }

  .u_aa5019 {

    width: 90vw;

    max-width: 350px;

    height: 54vw;

    max-height: 380px;

  }

  .u_57dea9 {

    padding: calc(var(--section-gap) * 0.4) var(--page-gap);

    box-shadow: 0 8px 16px 0 var(--shadow);

  }

  .u_e00e87 {

    font-size: 2.1rem;

    text-align: center;

  }

  .hero-block-simple219__desc {

    font-size: 1rem;

    text-align: center;

    max-width: 100%;

    margin: 0 auto 1.1rem auto;

  }

  .u_00fd65 {

    width: max-content;

    margin-left: auto;

    margin-right: auto;

    font-size: 1.04rem;

    min-width: 0;

  }

}



@media (max-width: 500px) {

  .u_aa5019 {

    width: 99vw;

    max-width: 98vw;

    min-width: 0;

    height: 56vw;

    max-height: 54vw;

  }

  .u_57dea9 {

    padding: calc(var(--section-gap) * 0.25) var(--page-gap-reduced);

    border-radius: calc(var(--radius) * 1.5);

  }

  .u_e00e87 {

    font-size: 1.34rem;

    padding-bottom: 0.15em;

  }

}

/* FOOTER */
.u_8b8440 {

  background: var(--header);

  padding: var(--section-gap);

  box-shadow: var(--shadow);

  border-radius: var(--radius);

  overflow-x: hidden;

  max-width: 100%;

}



.u_d07cf5 {

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: var(--section-gap);

}







.u_e85766 {

  display: flex;

  gap: var(--page-gap);

  flex: 0 1 auto;

}



.u_e85766 a {

  color: var(--accent);

  font-size: 1.6rem;

  transition: color var(--transition), transform var(--transition), opacity var(--transition);

  opacity: 0.85;

  border-radius: 50%;

  padding: 0.5em;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 2px 6px rgba(0,0,0,0.04);

}



.u_e85766 a:hover, 

.u_e85766 a:focus {

  color: var(--primary-hover);

  transform: scale(1.12);

  opacity: 1;

}



.u_ecf92a {

  margin-top: var(--page-gap);

  text-align: left;

  color: var(--accent);

  font-size: 1rem;

  opacity: 0.85;

}



@media (max-width: 600px) {

  .u_d07cf5 {

    flex-direction: column;

    align-items: stretch;

    gap: var(--page-gap);

    text-align: center;

  }

  .u_4f88aa {

    justify-content: center;

    display: flex;

  }

  .u_e85766 {

    justify-content: center;

  }

  .u_ecf92a {

    text-align: center;

  }

}

/* BODY */
.u_a987e8 {

  width: 100%;

  box-sizing: border-box;

  background: var(--light);

  padding: var(--section-gap);

  display: flex;

  justify-content: center;

  align-items: stretch;

  box-shadow: var(--shadow);

  border-radius: var(--radius);

  overflow-x: hidden;

}

.u_67d822 {

  max-width: 920px;

  width: 100%;

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  gap: calc(var(--section-gap) * 0.8);

  align-items: center;

}





.u_4fa8be {

  width: 100%;

  border-radius: var(--radius) var(--radius) 0 0;

  overflow: hidden;

  box-shadow: 0 2px 16px rgba(10, 0, 93, 0.10);

  backdrop-filter: blur(0.5px);

  margin-bottom: var(--page-gap-reduced);

}

.u_4fa8be img {

  display: block;

  width: 100%;

  height: auto;

  object-fit: cover;

  border-radius: var(--radius) var(--radius) 0 0;

}





.u_19eebe {

  width: 100%;

  display: flex;

  justify-content: center;

  margin-bottom: var(--page-gap-reduced);

}

.u_42bab5 {

  background: var(--primary);

  color: var(--light);

  padding: 14px 32px;

  border-radius: var(--radius);

  font-size: 1.08rem;

  font-weight: 600;

  display: inline-block;

  box-shadow: 0 2px 10px rgba(149, 24, 48, 0.16);

  text-decoration: none;

  transition: var(--transition), box-shadow 0.18s cubic-bezier(0.23,0.82,0.47,0.96);

  cursor: pointer;

  outline: none;

  border: none;

  min-width: max-content;

  letter-spacing: 0.02em;

  position: relative;

}

.u_42bab5:hover, .u_42bab5:focus {

  background: var(--primary-hover);

  transform: translateY(-2px) scale(1.02);

  box-shadow: 0 8px 24px rgba(149,24,48,0.17);

}

.u_42bab5:active {

  transform: scale(0.98);

}





.u_77a048 {

  width: 100%;

  color: var(--dark);

  font-size: 1.1rem;

  line-height: 1.6;

  display: block;

  padding: 0 var(--page-gap);

  box-sizing: border-box;

}





.u_77a048 h2,

.u_77a048 h3 {

  font-weight: 700;

  color: var(--accent);

  margin-top: 0.65em;

  margin-bottom: 0.2em;

  letter-spacing: 0.01em;

  line-height: 1.2;

}



.u_77a048 h2 {

  font-size: 2rem;

}

.u_77a048 h3 {

  font-size: 1.35rem;

}





.u_77a048 p {

  margin: 0.65em 0 0.85em;

  color: var(--dark-default);

}



.u_77a048 ul,

.u_77a048 ol {

  padding-left: 1.4em;

  margin: 0.25em 0 1em;

}

.u_77a048 ul {

  list-style: disc inside;

}

.u_77a048 ol {

  list-style: decimal inside;

}

.u_77a048 li {

  margin: 0.3em 0;

  color: var(--dark);

}





.u_77a048 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.18s cubic-bezier(0.39,0,0.17,0.99);

  word-break: break-word;

}

.u_77a048 a:hover,

.u_77a048 a:focus {

  color: var(--accent);

}





.u_77a048 table {

  width: 100%;

  max-width: 100%;

  border-collapse: collapse;

  margin: var(--page-gap-reduced) 0;

  font-size: 1rem;

  background: var(--accent-transparent);

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.u_77a048 thead {

  background: var(--accent-secondary);

}

.u_77a048 th,

.u_77a048 td {

  border: 1px solid var(--accent);

  padding: 0.55em 1em;

  text-align: left;

  color: var(--dark);

}

.u_77a048 th {

  font-weight: 600;

  color: var(--dark);

}





.u_77a048 td ul,

.u_77a048 td ol {

  margin: 0.15em 0;

  padding-left: 1.3em;

}





.u_77a048 b, 

.u_77a048 strong {

  font-weight: 700;

  color: var(--accent);

}

.u_77a048 i, 

.u_77a048 em {

  font-style: italic;

}





@media (max-width: 1024px) {

  .u_67d822 {

    max-width: 98vw;

    padding: 0;

  }

  .u_77a048 {

    font-size: 1rem;

    padding-left: var(--page-gap-reduced);

    padding-right: var(--page-gap-reduced);

  }

}

@media (max-width: 768px) {

  .u_a987e8 {

    padding: var(--page-gap);

    border-radius: var(--radius);

  }

  .u_67d822 {

    max-width: 100vw;

    padding: 0;

    gap: var(--page-gap);

  }

  .u_4fa8be {

    margin-bottom: var(--page-gap);

    border-radius: var(--radius);

  }

  .u_77a048 {

    padding: 0 var(--page-gap-reduced);

    font-size: 0.98rem;

  }

}

@media (max-width: 480px) {

  .u_a987e8 {

    padding: var(--page-gap-reduced);

    border-radius: var(--radius);

  }

  .u_67d822 {

    gap: var(--page-gap-reduced);

  }

  .u_19eebe {

    margin-bottom: var(--page-gap-reduced);

  }

  .u_42bab5 {

    padding: 12px 18px;

    font-size: 1rem;

  }

  .u_77a048 {

    padding: 0 4vw;

    font-size: 0.97rem;

  }

  .u_4fa8be {

    border-radius: var(--radius);

  }

}

/* BODY1 */
.u_9894f9 {

  width: 100%;

  box-sizing: border-box;

  padding: var(--section-gap) 0;

  background: var(--background);

  overflow-x: hidden;

}



.u_71cb6b {

  max-width: 1120px;

  margin: 0 auto;

  display: flex;

  align-items: stretch;

  justify-content: space-between;

  gap: 48px;

  box-sizing: border-box;

  padding: 0 var(--page-gap);

}



.u_d160c7 {

  flex: 1 1 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  min-width: 0;

}



.u_d160c7 .u_fc17f4 {

  color: var(--dark);

  font-size: 1.13rem;

  line-height: 1.6;

  margin-bottom: 36px;

  font-feature-settings: "pnum" on, "lnum" on;

}



.u_d160c7 .u_fc17f4 h2,

.u_d160c7 .u_fc17f4 h3 {

  color: var(--primary);

  font-weight: 700;

  margin-bottom: 18px;

  margin-top: 0;

  line-height: 1.18;

  letter-spacing: -0.01em;

}



.u_d160c7 .u_fc17f4 h3 {

  font-size: 1.15em;

}



.u_d160c7 .u_fc17f4 p {

  margin: 0 0 20px 0;

  color: var(--dark);

}



.u_d160c7 .u_fc17f4 ul,

.u_d160c7 .u_fc17f4 ol {

  padding-left: 24px;

  margin-bottom: 20px;

  color: var(--dark-muted);

  font-size: 1rem;

  line-height: 1.5;

}



.u_d160c7 .u_fc17f4 ul {

  list-style: disc;

}



.u_d160c7 .u_fc17f4 ol {

  list-style: decimal;

}



.u_d160c7 .u_fc17f4 li {

  margin-bottom: 8px;

}



.u_d160c7 .u_fc17f4 b,

.u_d160c7 .u_fc17f4 strong {

  color: var(--accent);

  font-weight: 700;

}



.u_d160c7 .u_fc17f4 i,

.u_d160c7 .u_fc17f4 em {

  color: var(--primary-hover);

  font-style: italic;

}



.u_d160c7 .u_fc17f4 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.18s cubic-bezier(0.39,0,0.17,0.99);

}

.u_d160c7 .u_fc17f4 a:hover,

.u_d160c7 .u_fc17f4 a:focus {

  color: var(--primary-hover);

}



.u_d160c7 .u_fc17f4 table {

  width: 100%;

  border-collapse: collapse;

  font-size: 0.98em;

  margin-bottom: 18px;

  overflow-x: auto;

  display: block;

}

.u_d160c7 .u_fc17f4 thead {

  background: var(--accent-transparent);

}

.u_d160c7 .u_fc17f4 th,

.u_d160c7 .u_fc17f4 td {

  padding: 8px 12px;

  border: 1px solid var(--dark-muted);

}

.u_d160c7 .u_fc17f4 th {

  color: var(--accent);

  font-weight: 600;

  text-align: left;

}

.u_d160c7 .u_fc17f4 td {

  color: var(--dark-default);

}



.u_7c14eb.u_81a879 {

  padding: 13px 32px;

  background: var(--primary);

  color: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  font-weight: 600;

  font-size: 1.05em;

  display: inline-block;

  cursor: pointer;

  border: none;

  outline: none;

  max-width: max-content;

  transition: 

    background 0.18s cubic-bezier(0.39,0,0.17,0.99),

    box-shadow 0.18s, 

    transform 0.16s;

  text-decoration: none;

  margin-top: 6px;

  letter-spacing: 0.01em;

}

.u_7c14eb.u_81a879:hover,

.u_7c14eb.u_81a879:focus-visible {

  background: var(--primary-hover);

  transform: translateY(-2px) scale(1.03);

  box-shadow: 0 4px 16px rgba(149,24,48,0.10);

}



.u_204fed {

  flex: 0 0 320px;

  max-width: 320px;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  min-width: 0;

}

.u_204fed img,

.u_204fed { 

  width: 320px;

  height: 480px;

  object-fit: cover;

  border-radius: 20px;

  box-shadow: var(--shadow);

  background: var(--light);

  

  backdrop-filter: blur(0.5px);

  -webkit-backdrop-filter: blur(0.5px);

  

  position: relative;

  z-index: 1;

}





@media (max-width: 1024px) {

  .u_71cb6b {

    gap: 28px;

    padding: 0 var(--page-gap-reduced);

  }

  .u_204fed {

    max-width: 240px;

    flex-basis: 220px;

  }

  .u_204fed img,

  .u_204fed {

    width: 220px;

    height: 330px;

  }

}



@media (max-width: 768px) {

  .u_71cb6b {

    flex-direction: column-reverse;

    align-items: stretch;

    gap: 26px;

  }

  .u_204fed {

    align-items: flex-start;

    justify-content: center;

    max-width: none;

    flex-basis: auto;

    margin-bottom: 14px;

  }

  .u_204fed img,

  .u_204fed {

    width: 100%;

    height: auto;

    min-width: 0;

    max-width: 100%;

    aspect-ratio: 2/3;

    border-radius: 16px;

  }

  .u_d160c7 {

    margin: 0;

  }

  .u_7c14eb.u_81a879 {

    width: auto;

    min-width: 120px;

    font-size: 1em;

  }

}





.u_9894f9, .u_71cb6b, .u_d160c7, .u_204fed {

  max-width: 100%;

  box-sizing: border-box;

}







body {

  overflow-x: hidden;

}

*/

/* BODY2 */
.u_919909 {

  background: var(--section-bg, var(--background));

  box-shadow: var(--shadow);

  padding: var(--section-gap);

  overflow-x: hidden;

  border-radius: var(--radius);

}



.u_cfd616 {

  box-sizing: border-box;

}



.u_1d10e0 {

  display: grid;

  grid-template-columns: 1.2fr 1fr;

  align-items: center;

  gap: var(--section-gap);

  max-width: 1200px;

  margin: 0 auto;

  width: 100%;

}



.u_a873f0 {

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 0;

  max-width: 100%;

  box-sizing: border-box;

  border-radius: calc(var(--radius) * 2);

  overflow: hidden;

  box-shadow: 0 4px 24px 0 rgba(40, 20, 70, 0.10);

  backdrop-filter: blur(0.5px);

  background: var(--accent-transparent, rgba(171,161,251,0.13));

}



.u_a873f0 img {

  display: block;

  width: 100%;

  height: auto;

  max-width: 100%;

  border-radius: calc(var(--radius) * 2);

  object-fit: cover;

}



.u_f68f9c {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: var(--page-gap);

  min-width: 0;

  box-sizing: border-box;

}





.u_ca9506 {

  color: var(--dark-default, #24242a);

  font-size: 1.09rem;

  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;

  line-height: 1.6;

  letter-spacing: 0.01em;

  max-width: 40em;

  font-weight: 400;

  margin-bottom: 12px;

}

.u_ca9506 h2, 

.u_ca9506 h3 {

  font-weight: 700;

  margin: 0 0 0.5em 0;

  letter-spacing: -0.01em;

  line-height: 1.15;

  color: var(--accent, #0a005d);

}

.u_ca9506 h2 { font-size: 2rem; }

.u_ca9506 h3 { font-size: 1.25rem; }



.u_ca9506 p {

  margin: 0 0 1em 0;

}



.u_ca9506 ul, 

.u_ca9506 ol {

  padding-left: 1.4em;

  margin: 0 0 1em 0;

}

.u_ca9506 ul li {

  list-style: disc inside;

  margin-bottom: 0.35em;

}

.u_ca9506 ol li {

  list-style: decimal inside;

  margin-bottom: 0.35em;

}



.u_ca9506 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.2s;

}

.u_ca9506 a:hover,

.u_ca9506 a:focus {

  color: var(--primary-hover);

}



.u_ca9506 table {

  width: 100%;

  max-width: 100%;

  border-collapse: collapse;

  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.06);

  margin-bottom: 1em;

  overflow-x: auto;

  display: block;

}

.u_ca9506 th,

.u_ca9506 td {

  padding: 0.5em 1em;

  border: 1px solid var(--accent-secondary, #ABA1FB);

  font-size: 0.95em;

  text-align: left;

}

.u_ca9506 thead th {

  background: var(--accent-transparent, rgba(171,161,251,0.1));

  color: var(--dark);

  font-weight: 600;

}





.u_ddd48a.u_a6ed2a {

  background: var(--primary);

  color: var(--light);

  border-radius: var(--radius);

  box-shadow: 0 2px 8px 0 rgba(149, 24, 48, 0.08);

  font-weight: 600;

  font-size: 1.126rem;

  padding: 12px 32px;

  transition: 

    background var(--transition), 

    box-shadow var(--transition),

    transform 0.18s cubic-bezier(.32,1.56,.56,1),

    color var(--transition);

  display: inline-block;

  max-width: max-content;

  border: none;

  outline: none;

  cursor: pointer;

  margin-top: 12px;

  letter-spacing: .02em;

}

.u_ddd48a.u_a6ed2a:hover, 

.u_ddd48a.u_a6ed2a:focus {

  background: var(--primary-hover);

  color: var(--light);

  box-shadow: 0 8px 32px 0 rgba(252,101,131,0.14);

  transform: translateY(-3px) scale(1.025);

  text-decoration: none;

}



@media (max-width: 1024px) {

  .u_1d10e0 {

    grid-template-columns: 1fr;

    gap: var(--page-gap);

  }

  .u_a873f0 {

    margin-bottom: var(--page-gap);

  }

  .u_f68f9c {

    align-items: flex-start;

  }

}



@media (max-width: 768px) {

  .u_919909 {

    padding: var(--page-gap);

  }

  .u_1d10e0 {

    grid-template-columns: 1fr;

    max-width: 100%;

    gap: var(--page-gap-reduced);

  }

  .u_a873f0 {

    margin-bottom: var(--page-gap-reduced);

    max-width: 100vw;

    min-width: 0;

  }

  .u_f68f9c,

  .u_ca9506 {

    max-width: 100vw;

    min-width: 0;

  }

  .u_ddd48a.u_a6ed2a {

    font-size: 1rem;

    padding: 12px 24px;

    margin-top: 8px;

  }

}