/* 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 */
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_079c28 {

  position: absolute;

  top: 0; left: 0; right: 0;

  z-index: 10;

  width: 100%;

  background: var(--header);

  box-shadow: none;

  min-height: 72px;

}



.u_1452ab {

  max-width: 1240px;

  margin: 0 auto;

  padding: 24px var(--page-gap);

  display: flex;

  align-items: center;

  min-height: 72px;

  width: 100%;

}





.u_b7ecd6 {

  min-height: 100vh;

  width: 100vw;

  padding: 0;

  margin: 0;

  display: flex;

}

.u_4034f1 {

  position: relative;

  width: 100vw;

  height: 100vh;

  min-height: 500px;

  display: flex;

  align-items: stretch;

  justify-content: center;

  overflow: hidden;

}

.u_4034f1 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_51ded8 {

  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_4823b4 {

  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_4823b4 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_c121c5 {

  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_c121c5:hover, .u_c121c5: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_1452ab { max-width: 96vw; padding: 14px var(--page-gap-reduced); }

  .u_4823b4 { padding: calc(var(--section-gap) * 0.7) 4vw; }

  .u_b7ecd6, .u_4034f1 {

    min-height: 85vh;

    height: 85vh;

  }

}

@media (max-width: 768px) {

  .u_1452ab {

    padding: 12px var(--page-gap-reduced);

  }

  .u_079c28 {

    min-height: 48px;

    background: var(--header);

  }

  .u_b7ecd6, .u_4034f1 {

    min-height: 69vh;

    height: 69vh;

  }

  .u_4823b4 h1 {

    font-size: clamp(1.55rem, 5.7vw, 2.25rem);

    margin-bottom: 26px;

  }

  .u_c121c5 {

    padding: 12px 22px;

    font-size: 1rem;

    min-width: 130px;

  }

}

@media (max-width: 480px) {

  .u_1452ab { padding: 7px 3vw; }

  .u_4823b4 {

    padding: 14vw 3vw;

    width: 99vw;

    border-radius: 0;

  }

  .u_4034f1,

  .u_b7ecd6 {

    min-height: 34vh;

    height: 34vh;

  }

  .u_4823b4 h1 {

    font-size: 1.12rem;

    margin-bottom: 20px;

  }

  .u_c121c5 {

    font-size: 0.98rem;

    padding: 11px 16px;

    min-width: unset;

    width: max-content;

  }

}

/* LINKS */
.u_1e972e {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--page-gap);
  box-sizing: border-box;
}

.u_24c6d0 {
  box-sizing: border-box;
  position: relative;
  padding: calc(var(--section-gap) * 0.75);
  border-radius: var(--radius);
  overflow: hidden;
}

.u_24c6d0::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0% 0%, var(--accent-transparent), transparent 55%),
              radial-gradient(circle at 100% 100%, var(--primary), transparent 60%);
  opacity: 0.14;
  mix-blend-mode: screen;
  pointer-events: none;
}

.u_24c6d0::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-transparent), transparent 40%, var(--accent-transparent));
  opacity: 0.12;
  pointer-events: none;
}

.u_8c90ac {
  position: relative;
  z-index: 1;
  margin-bottom: calc(var(--section-gap) * 0.5);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.u_1e656f {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--light);
}

.u_909fdf {
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  opacity: 0.9;
}

.u_a3cea5 {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, max-content));
  gap: 14px 18px;
  align-items: flex-start;
}

.u_a3cea5 li {
  box-sizing: border-box;
}

.u_a3cea5 a {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: calc(var(--radius) * 1.4);
  background: radial-gradient(circle at 0 0, var(--accent-transparent), transparent 65%),
              linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--light);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.2;
  white-space: nowrap;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transform-origin: center;
  transition:
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition),
    transform var(--transition),
    letter-spacing var(--transition);
}

.u_a3cea5 a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 30%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.u_a3cea5 a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--light);
  opacity: 0.7;
  box-shadow: 0 0 12px var(--light);
  margin-left: 2px;
}

.u_a3cea5 a span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.u_a3cea5 a:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0,0,0,0.32);
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.u_a3cea5 a:hover::before {
  transform: translateX(120%);
}

.u_a3cea5 a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.u_a3cea5 li:nth-child(3n) a {
  transform: translateY(-2px);
}

.u_a3cea5 li:nth-child(4n) a {
  transform: translateY(1px);
}

.u_a3cea5 li:nth-child(5n) a {
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .u_a3cea5 {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}

@media (max-width: 768px) {
  .u_1e972e {
    padding: calc(var(--page-gap) * 0.8);
  }

  .u_24c6d0 {
    padding: calc(var(--section-gap) * 0.6);
  }

  .u_a3cea5 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .u_a3cea5 li {
    flex: 1 1 100%;
  }

  .u_a3cea5 a {
    width: 100%;
    display: block;
    text-align: left;
    margin: 2px 0;
  }

  .u_a3cea5 li:nth-child(odd) a {
    transform: translateX(-3px);
  }

  .u_a3cea5 li:nth-child(even) a {
    transform: translateX(3px);
  }
}

@media (max-width: 480px) {
  .u_1e656f {
    font-size: 1.35rem;
  }

  .u_a3cea5 a {
    padding: 10px 16px;
  }
}

/* FOOTER */
.u_f65ee4 {
  background: var(--header);
  padding: var(--section-gap) var(--page-gap);
  box-shadow: 0 -4px 16px var(--shadow);
}

.u_836c0a {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--page-gap);
  box-sizing: border-box;
  overflow-x: hidden;
}

.u_933725 img {
  display: block;
  max-width: 100%;
  height: auto;
}

.u_cbd49a {
  display: flex;
  justify-content: center;
  gap: var(--page-gap-reduced);
  flex-wrap: wrap;
}

.u_10c894 {
  font-size: 0.95rem;
  color: var(--primary);
  text-decoration: none;
  line-height: 1.4;
}

.u_1ede54 {
  margin: 0;
  font-size: 0.9rem;
  color: var(--accent);
  text-align: right;
  white-space: nowrap;
}

/* Tablet */
@media (max-width: 900px) {
  .u_836c0a {
    grid-template-columns: 1fr;
    row-gap: var(--page-gap-reduced);
    text-align: center;
  }

  .u_933725 {
    justify-self: center;
  }

  .u_cbd49a {
    justify-content: center;
  }

  .u_1ede54 {
    text-align: center;
    white-space: normal;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .u_f65ee4 {
    padding: var(--page-gap);
  }

  .u_836c0a {
    max-width: 100%;
  }

  .u_cbd49a {
    flex-direction: column;
    gap: 0.4rem;
  }

  .u_10c894 {
    font-size: 0.95rem;
  }

  .u_1ede54 {
    font-size: 0.85rem;
    margin-top: 0.3rem;
  }
}

/* BODY */
.u_840f49 {

  position: relative;

  width: 100vw;

  max-width: 100%;

  min-height: 100vh;

  overflow-x: hidden;

  box-sizing: border-box;

  background: var(--background);

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

}



.u_80043f {

  position: absolute;

  inset: 0;

  z-index: 1;

  width: 100%;

  height: 100%;

  pointer-events: none;

  user-select: none;

}

.u_80043f img, 

.u_80043f > * {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  max-width: 100vw;

}





.u_a4b299 {

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  min-height: 70vh;

  width: 100%;

  padding: 0;

  z-index: 2;

}



.u_f273c7 {

  backdrop-filter: blur(0.5px);

  background: rgba(255, 255, 255, 0.56);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  max-width: 1200px;

  width: 100%;

  margin: 10vh auto 0 auto;

  padding: 48px 40px 80px 40px;

  transition: var(--transition);

  display: flex;

  flex-direction: column;

  align-items: center;

  animation: heroFadeInSlide 1.2s cubic-bezier(0.39, 0, 0.17, 0.99) both;

  box-sizing: border-box;

  min-width: 0;

}



@keyframes heroFadeInSlide {

  from {

    opacity: 0;

    transform: translateY(48px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



.u_38fa04 {

  width: 100%;

  color: var(--dark);

  display: flex;

  flex-direction: column;

  gap: 24px;

}

.u_38fa04 .u_5721dc {

  width: 100%;

}

.u_38fa04 h2 {

  font-family: 'Inter', 'Montserrat', 'Segoe UI', Arial, sans-serif;

  font-size: 3rem;

  font-weight: 800;

  line-height: 1.1;

  color: var(--primary);

  letter-spacing: -1.5px;

  margin-bottom: 24px;

}

.u_38fa04 h3 {

  font-size: 1.5rem;

  font-weight: 600;

  color: var(--accent);

  margin-top: 28px;

  margin-bottom: 8px;

  letter-spacing: -0.3px;

}



.u_38fa04 p,

.u_38fa04 ul,

.u_38fa04 ol,

.u_38fa04 table {

  font-size: 1.17rem;

  color: var(--dark-default);

  margin: 0 0 16px 0;

}



.u_38fa04 ul, .u_38fa04 ol {

  padding-left: 24px;

  margin-bottom: 18px;

}

.u_38fa04 ul li,

.u_38fa04 ol li {

  margin-bottom: 6px;

  list-style-position: inside;

}



.u_38fa04 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

  font-weight: 600;

}

.u_38fa04 a:hover {

  color: var(--primary-hover);

}



.u_38fa04 table {

  width: 100%;

  border-collapse: collapse;

  background: var(--background);

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.u_38fa04 th,

.u_38fa04 td {

  border: 1px solid var(--accent-secondary);

  padding: 8px 16px;

  text-align: left;

}

.u_38fa04 thead {

  background: var(--accent-transparent);

  color: var(--dark);

}



.u_38fa04 b,

.u_38fa04 strong {

  color: var(--accent);

  font-weight: 700;

}



.u_38fa04 i,

.u_38fa04 em {

  color: var(--primary-hover);

}





.u_230ce5 {

  position: fixed;

  left: 0;

  right: 0;

  bottom: 32px;

  margin: 0 auto;

  display: flex;

  justify-content: center;

  z-index: 10;

  width: max-content;

  padding: 0;

  pointer-events: all;

  background: none;

}

.u_230ce5:focus {

  outline: none;

}

.u_230ce5 > * {

  pointer-events: none;

}

.u_230ce5 {

  background: var(--primary);

  color: var(--light);

  font-family: inherit;

  font-size: 1.28rem;

  font-weight: 700;

  padding: 18px 44px;

  border: none;

  border-radius: var(--radius);

  box-shadow: 0 4px 36px -6px var(--primary-hover), var(--shadow);

  cursor: pointer;

  transition: var(--transition), box-shadow 0.19s;

  box-sizing: border-box;

  min-width: 0;

  text-decoration: none;

  text-align: center;

  letter-spacing: 0.08em;

  will-change: transform, box-shadow;

}

.u_230ce5:hover, .u_230ce5:focus-visible {

  background: var(--primary-hover);

  transform: translateY(-3px) scale(1.025);

  box-shadow: 0 8px 48px -8px var(--primary-hover), var(--shadow);

}

@media (min-width: 1025px) {

  .u_230ce5 {

    display: none !important;

  }

}



@media (max-width: 1024px) {

  .u_f273c7 {

    padding: 32px 18px 70px 18px;

    max-width: 92vw;

    margin: 6vh auto 0 auto;

  }

  .u_38fa04 h2 {

    font-size: 2.1rem;

    margin-bottom: 18px;

  }

  .u_230ce5 {

    padding: 16px 28px;

    font-size: 1rem;

    bottom: 16px;

  }

}

@media (max-width: 768px) {

  .u_840f49 {

    min-height: 90vh;

  }

  .u_f273c7 {

    padding: 24px 6vw 58px 6vw;

    margin: 4vh auto 0 auto;

    max-width: 98vw;

  }

  .u_38fa04 h2 {

    font-size: 1.48rem;

    margin-bottom: 14px;

  }

  .u_230ce5 {

    bottom: 8px;

    padding: 14px 15vw;

    font-size: 0.96rem;

    width: 90vw;

    left: 50%;

    transform: translateX(-50%);

    border-radius: calc(var(--radius) + 6px);

    box-shadow: 0 4px 24px -8px var(--primary-hover), var(--shadow);

  }

}

@media (max-width: 480px) {

  .u_f273c7 {

    padding: 18px 3vw 48px 3vw;

  }

  .u_230ce5 {

    font-size: 0.95rem;

    padding: 13px 8vw;

    width: 94vw;

    left: 50%;

    transform: translateX(-50%);

  }

}





body, .u_840f49 {

  overflow-x: hidden;

}

/* BODY1 */
.u_a38888 {

  box-sizing: border-box;

  position: relative;

  z-index: 1;

  overflow-x: hidden;

  width: 100%;

  padding: var(--section-gap) 0;

  background: linear-gradient(120deg, var(--accent-transparent) 0%, var(--light) 100%);

  box-shadow: var(--shadow);

}



.u_0b5b4c {

  display: flex;

  justify-content: space-between;

  align-items: stretch;

  gap: 40px;

  max-width: 1160px;

  margin: 0 auto;

  padding: 32px 24px;

  box-sizing: border-box;

}



.u_277f87 {

  flex: 1 1 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  min-width: 0;

  max-width: 54%;

}



.u_277f87 .u_64f48a {

  font-family: inherit;

  color: var(--dark);

  font-size: 1.13rem;

  line-height: 1.65;

  margin-bottom: 40px;

  word-break: break-word;

}

.u_277f87 .u_64f48a h2,

.u_277f87 .u_64f48a h3 {

  color: var(--primary);

  margin: 0 0 16px 0;

  line-height: 1.2;

  font-weight: 700;

}

.u_277f87 .u_64f48a h2 { font-size: 2.1rem; }

.u_277f87 .u_64f48a h3 { font-size: 1.3rem; }

.u_277f87 .u_64f48a p { margin-bottom: 16px; color: var(--dark-default);}

.u_277f87 .u_64f48a ul, 

.u_277f87 .u_64f48a ol {

  margin-bottom: 20px;

  padding-left: 1.2em;

}

.u_277f87 .u_64f48a ul li,

.u_277f87 .u_64f48a ol li {

  margin-bottom: 8px;

  font-size: inherit;

  color: var(--dark);

}

.u_277f87 .u_64f48a ul li::marker {

  color: var(--accent);

}

.u_277f87 .u_64f48a ol li::marker {

  color: var(--primary);

}

.u_277f87 .u_64f48a a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}

.u_277f87 .u_64f48a a:hover {

  color: var(--primary-hover);

}

.u_277f87 .u_64f48a table {

  width: 100%;

  border-collapse: collapse;

  font-size: 1rem;

  margin-bottom: 20px;

  overflow-x: auto;

  display: block;

}

.u_277f87 .u_64f48a thead {

  background: var(--accent-transparent);

}

.u_277f87 .u_64f48a td, 

.u_277f87 .u_64f48a th {

  border: 1px solid var(--accent-secondary);

  padding: 8px 12px;

  text-align: left;

  color: var(--dark);

}

.u_277f87 .u_64f48a th {

  color: var(--accent);

  font-weight: 700;

  background: var(--light);

}

.u_277f87 .u_64f48a b { font-weight: bold; color: var(--primary); }

.u_277f87 .u_64f48a i { font-style: italic; color: var(--accent); }



.u_85a4a3 {

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  padding: 14px 38px;

  border-radius: var(--radius);

  font-size: 1.07rem;

  font-weight: 600;

  box-shadow: 0px 6px 24px rgba(10,0,93,0.09), var(--shadow);

  outline: none;

  border: none;

  cursor: pointer;

  text-decoration: none;

  letter-spacing: 0.02em;

  transition: background 0.23s var(--transition), 

              color 0.18s var(--transition), 

              box-shadow 0.23s var(--transition), 

              transform 0.2s;

  will-change: transform;

}

.u_85a4a3:hover, .u_85a4a3:focus {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0px 12px 28px rgba(10,0,93,0.16), var(--shadow);

}



.u_1f3025 {

  flex: 0 0 auto;

  display: flex;

  align-items: center;

  min-width: 0;

  position: relative;

  max-width: 340px;

  width: 340px;

}

.u_fb27e6 {

  position: relative;

  width: 340px;

  height: 500px;

  min-width: 0;

  display: flex;

  align-items: center;

  justify-content: center;

}

.u_a1dbd8 {

  position: absolute;

  top: 0;

  left: 0;

  width: 340px;

  height: 500px;

  pointer-events: none;

  z-index: 2;

}

.u_6b8c1c {

  position: absolute;

  top: 15px;

  left: 15px;

  width: 310px;

  height: 470px;

  overflow: hidden;

  z-index: 1;

  border-radius: 18px;

  box-shadow: 0 12px 32px rgba(10,0,93,0.11), var(--shadow);

  backdrop-filter: blur(2px);

  background: var(--light);

  display: flex;

  align-items: center;

  justify-content: center;

}

.u_6b8c1c img {

  max-width: 100%;

  max-height: 100%;

  display: block;

  object-fit: cover;

  border-radius: 18px;

}





@media (max-width: 1024px) {

  .u_0b5b4c {

    flex-direction: column;

    padding: 24px 10px;

    gap: 32px;

    align-items: stretch;

  }

  .u_277f87 {

    max-width: 100%;

    width: 100%;

    align-items: flex-start;

    margin-bottom: 0;

  }

  .u_1f3025 {

    max-width: 340px;

    margin: 0 auto;

    width: 100%;

  }

  .u_fb27e6 {

    width: 95vw;

    max-width: 340px;

    height: 70vw;

    max-height: 500px;

  }

  .u_a1dbd8,

  .u_6b8c1c {

    width: 100% !important;

    height: 100% !important;

  }

}



@media (max-width: 768px) {

  .u_0b5b4c {

    gap: 22px;

    padding: 14px 2vw;

  }

  .u_fb27e6 {

    width: 88vw;

    max-width: 320px;

    height: 52vw;

    max-height: 400px;

  }

  .u_6b8c1c {

    border-radius: 14px;

  }

}

@media (max-width: 480px) {

  .u_0b5b4c {

    padding: 10px 1vw;

    gap: 12px;

  }

  .u_fb27e6 {

    width: 98vw;

    height: 57vw;

    max-width: 320px;

    max-height: 320px;

  }

  .u_6b8c1c {

    border-radius: 12px;

  }

  .u_277f87 .u_64f48a h2 { font-size: 1.21rem; }

  .u_85a4a3 {

    padding: 12px 18px;

    font-size: 1rem;

  }

}





.u_277f87 .u_64f48a table {

  width: 100%;

  display: block;

  overflow-x: auto;

}

/* BODY2 */
.u_5542b7 {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: var(--section-gap) var(--page-gap);
  background: var(--background);
  color: var(--dark);
}
.u_5542b7 * {
  box-sizing: border-box;
  max-width: 100%;
}
.u_afe5ea {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}
.content-heroImage--flareFrame702 {
  position: relative;
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.content-heroImage--flareFrame702 img {
  display: block;
  width: 100%;
  height: auto;
}
.content-heroOverlay--flareFrame702 {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--accent-transparent), rgba(0,0,0,0.25));
  backdrop-filter: blur(0.5px);
}
.content-heroBadge--flareFrame702 {
  position: absolute;
  left: var(--page-gap);
  bottom: var(--page-gap);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--light);
  font-size: 12px;
  box-shadow: var(--shadow);
}
.content-heroBadge-dot--flareFrame702 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(149, 24, 48, 0.25);
}
.content-heroBadge-text--flareFrame702 {
  white-space: nowrap;
}
.u_c671f4 {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: calc(var(--section-gap) + 10px);
  align-items: center;
}
.u_91e27f {
  position: relative;
  align-self: stretch;
  display: flex;
  justify-content: center;
}
.u_91e27f::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  border-radius: calc(var(--radius) * 2);
  background: var(--accent-transparent);
  filter: blur(0.5px);
  z-index: 1;
}
.u_91e27f img {
  position: relative;
  z-index: 2;
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 100%;
  max-height: 420px;
}
.u_68a772 {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
  padding: calc(var(--page-gap) * 1.1);
  border-radius: calc(var(--radius) * 2);
  background: var(--header);
  box-shadow: var(--shadow);
}
.u_68a772 .u_097359 {
  color: var(--dark-default);
}
.u_68a772 .u_097359 h2,
.u_68a772 .u_097359 h3 {
  color: var(--dark);
  margin-top: 0;
}
.u_68a772 .u_097359 p {
  color: var(--dark-default);
  line-height: 1.6;
}
.u_68a772 .u_097359 ul,
.u_68a772 .u_097359 ol {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0.75rem;
  color: var(--dark-default);
}
.u_68a772 .u_097359 li {
  margin-bottom: 0.3rem;
}
.u_68a772 .u_097359 a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 0, 93, 0.3);
  transition: var(--transition);
}
.u_68a772 .u_097359 a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary-hover);
}
.u_68a772 .u_097359 table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
.u_68a772 .u_097359 thead {
  background: var(--accent-transparent);
}
.u_68a772 .u_097359 th,
.u_68a772 .u_097359 td {
  border: 1px solid rgba(0,0,0,0.08);
  padding: 8px 10px;
  text-align: left;
}
.u_68a772 .text-content-wrapperTable {
  width: 100%;
  overflow-x: auto;
}
.u_13ed1d {
  display: flex;
  flex-wrap: wrap;
  gap: var(--page-gap-reduced);
  align-items: center;
}
.u_73b5c3.u_7b3c50 {
  background: var(--primary);
  color: var(--light);
  padding: 12px 26px;
  border-radius: 999px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  transform-origin: center;
}
.u_73b5c3.u_7b3c50:hover {
  background: var(--primary-hover);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}
.u_73b5c3.u_7b3c50:active {
  transform: translateY(0) scale(0.99);
  box-shadow: var(--shadow);
}
.u_4b2067 {
  background: var(--light);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.u_4b2067:hover {
  background: var(--accent-transparent);
  color: var(--accent-hover);
  transform: translateY(-1px);
}
.u_4b2067:active {
  transform: translateY(0);
}
.u_af0492 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 4px;
}
.u_3d7f07 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dark-muted);
  font-size: 12px;
}
.u_42a359 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.u_8a03ea {
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .u_c671f4 {
    grid-template-columns: minmax(0, 1fr);
  }
  .u_91e27f {
    max-width: 380px;
    margin: 0 auto;
    order: -1;
  }
}
@media (max-width: 768px) {
  .u_5542b7 {
    padding: var(--section-gap) var(--page-gap-reduced);
  }
  .content-heroBadge--flareFrame702 {
    left: var(--page-gap-reduced);
    right: var(--page-gap-reduced);
    justify-content: center;
  }
  .content-heroBadge-text--flareFrame702 {
    white-space: normal;
    text-align: center;
  }
  .u_68a772 {
    padding: var(--page-gap);
  }
  .u_13ed1d {
    flex-direction: column;
    align-items: flex-start;
  }
  .u_73b5c3.u_7b3c50,
  .u_4b2067 {
    width: auto;
    max-width: 100%;
  }
  .u_af0492 {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .u_91e27f::before {
    inset: 12% 12%;
  }
  .u_91e27f img {
    max-height: 360px;
  }
}