/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
  appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
  font-family: "Dendy";
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
html {
  font-size: 1rem;
  font-family: "Dendy";
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
section[id] {
  scroll-margin-top: 100px;
}
@media (min-width: 2401px) {
  html {
    font-size: 13px;
  }
}
@media (min-width: 2201px) and (max-width: 2400px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 1901px) and (max-width: 2200px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 1500px) and (max-width: 1900px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 1500px) and (min-width: 1300px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 1299px) {
  html {
    font-size: 11px;
  }
}
::-webkit-scrollbar,
html ::-webkit-scrollbar {
  height: 1rem;
  width: 1rem;
}
::-webkit-scrollbar-track,
html ::-webkit-scrollbar-track {
  background: #f5f1f1;
}
::-webkit-scrollbar-thumb,
html ::-webkit-scrollbar-thumb {
  background-color: #452e24;
  border-radius: 1rem;
  border: 1px solid #e6e6f0;
}
body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Dendy";
  overflow-y: auto;
  overflow-x: auto;
}
.main {
  width: 100%;
  min-height: calc(100vh - 60px);
  position: relative;
  flex-grow: 2;
}
a,
button {
  text-decoration: none;
  cursor: pointer;
}
ul {
  list-style: none;
}
img {
  width: 100%;
}

.text_center {
  text-align: center;
}
@font-face {
  font-family: "Dendy";
  src: url("dendy-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Dendy";
  src: url("dendy-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #5d4037;
  --color-secondary: #8d6e63;
  --color-accent: #a1887f;
  --color-light: #d7ccc8;
  --color-bg: #efebe9;
  --color-white: #ffffff;
  --color-text: #3e2723;
  --color-text-light: #6d4c41;

  --font-family: "Dendy", Georgia, serif;
  --font-size-base: 1.4rem;

  --max-width: 1290px;
  --min-width: 280px;

  --spacing-xs: 1rem;
  --spacing-sm: 2rem;
  --spacing-md: 4rem;
  --spacing-lg: 6rem;
  --spacing-xl: 8rem;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  min-width: var(--min-width);
}

.FYJ2uH3vqMG {
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 2rem;
}

.fSelZg4IpTh {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.plgsUPwB99j {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.O3d6lk47QDC {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.y25ZWlDeoM3l {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-text);
}

.xGjOjIgnjBbgH9 {
  display: inline-block;
  padding: 1.4rem 3.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-family);
  color: var(--color-white);
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 0.4rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.xGjOjIgnjBbgH9:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(93, 64, 55, 0.3);
}

.xGjOjIgnjBbgH9:active {
  transform: translateY(0);
}

.E9FgOq5hlJ2 {
  background-color: var(--color-primary);
  color: white;
  border: 2px solid white;
}

.E9FgOq5hlJ2:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.jJ4wOi5CA7 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.IGok0SQJ1B {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
}

.YEz0EzN7O {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .fSelZg4IpTh {
    font-size: 3.6rem;
  }

  .plgsUPwB99j {
    font-size: 2.4rem;
  }

  .O3d6lk47QDC {
    font-size: 2rem;
  }

  .xGjOjIgnjBbgH9 {
    padding: 1.2rem 2.4rem;
  }
}

@media (max-width: 480px) {
  .fSelZg4IpTh {
    font-size: 2.8rem;
  }

  .plgsUPwB99j {
    font-size: 2rem;
  }

  .O3d6lk47QDC {
    font-size: 1.8rem;
  }
}

.y7btbsKRwELJ {
  background: linear-gradient(135deg, #ffffff 0%, #f5f1ee 100%);
  box-shadow: 0 4px 12px rgba(93, 64, 55, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--color-accent);
}

.QfFHhfXWhBGhR {
  width: 100%;
  height: 0.5rem;
  background: repeating-linear-gradient(
    90deg,
    var(--color-primary) 0,
    var(--color-primary) 2rem,
    var(--color-secondary) 2rem,
    var(--color-secondary) 4rem,
    var(--color-accent) 4rem,
    var(--color-accent) 6rem
  );
}

.minmO5mA3BTR8H {
  width: 100%;
  height: 0.3rem;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 50%,
    var(--color-primary) 100%
  );
}

.JQ2l1guohBg {
  max-width: 1290px;
  margin: 0 auto;
  padding: 2rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.gm34IMSNnjACNB0 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  border-right: 2px solid var(--color-accent);
  padding-right: 2rem;
}

.GDYqcWf1wWEInv9 {
  font-size: 3.6rem;
  filter: drop-shadow(2px 2px 4px rgba(93, 64, 55, 0.3));
}

.Ackw4uBDKraHIrh {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.xl62wbJDU3ZMtF {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.15rem;
  text-shadow: 2px 2px 0 var(--color-light);
}

.xl62wbJDU3ZMtF:hover {
  color: var(--color-secondary);
}

.zyByTXWi8iXI {
  font-size: 1.1rem;
  color: var(--color-text-light);
  font-style: italic;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.wpjAcbHsZT {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0 2rem;
}

.H7xtcnAwxUp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--color-light);
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  border: 2px solid var(--color-accent);
}

.ygk33zyo5DhnVbP {
  font-size: 1.8rem;
}

.uJ6upAWM40dY {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
}

.uJ6upAWM40dY:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.qvWRwaD0zF3K7N0 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.eHAT5O4w7U {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 0.5rem;
}

.dtIjczuvHJ0 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.xwafBl4gGmq {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  padding: 1rem 2rem;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  background-color: transparent;
  display: block;
}

.xwafBl4gGmq:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.xHYBpZlbzSow4F {
  color: var(--color-white);
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.xHYBpZlbzSow4F:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.h9T3GbivnsqG {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background-color: var(--color-light);
  border: 2px solid var(--color-primary);
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.h9T3GbivnsqG:hover {
  background-color: var(--color-accent);
}

.XUTmLfaSsm2 {
  width: 2.8rem;
  height: 3px;
  background-color: var(--color-primary);
  margin: 3px 0;
  border-radius: 2px;
}

.h9T3GbivnsqG.F8hZSK8bEue .XUTmLfaSsm2:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.h9T3GbivnsqG.F8hZSK8bEue .XUTmLfaSsm2:nth-child(2) {
  opacity: 0;
}

.h9T3GbivnsqG.F8hZSK8bEue .XUTmLfaSsm2:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.tP5DsRHXPjRkw {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: linear-gradient(
    180deg,
    var(--color-white) 0%,
    var(--color-light) 100%
  );
  box-shadow: 0 -4px 20px rgba(93, 64, 55, 0.25);
  z-index: 999;
  padding: 3rem 2rem;
  border-top: 4px solid var(--color-primary);
}

.tP5DsRHXPjRkw.tg0APCbTY {
  bottom: 0;
}

.jgVCNORY6DRUx7Z {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.FGHfQyxSrG {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.ttkpEb0Dr0evbbs {
  width: 100%;
  max-width: 400px;
  text-align: center;
  border-bottom: 2px dotted var(--color-accent);
  padding-bottom: 1rem;
}

.e4ntA6nrtmxcbo {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  display: block;
  padding: 1.2rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-accent);
  border-radius: 0.8rem;
}

.e4ntA6nrtmxcbo:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.p7t4i7U5QT {
  color: var(--color-white);
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.p7t4i7U5QT:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.SYTRHObk6 {
  background: linear-gradient(180deg, var(--color-primary) 0%, #4a3228 100%);
  color: var(--color-white);
  padding: 0;
  margin-top: 8rem;
  position: relative;
}

.i0Fm1XdlM {
  width: 100%;
  background-color: var(--color-secondary);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  border-bottom: 3px solid var(--color-accent);
}

.UmdKCphf72a {
  font-size: 2rem;
  color: var(--color-light);
  display: inline-block;
}

.tREf35HDBZ {
  max-width: 1290px;
  margin: 0 auto;
  padding: 6rem 2rem 3rem;
}

.dQ4jYExfH {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 4rem;
}

.govZOgKNjzH4KC {
  flex: 1 1 200px;
  min-width: 200px;
}

.rSrBRsN6AhuYA {
  flex: 1 1 280px;
  border-right: 2px solid var(--color-secondary);
  padding-right: 3rem;
}

.i30fBvVzz {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.XAnT9ZEYfG7Qz {
  font-size: 4rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.S4crHJUQS {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.vPMXVV1OZ4pKvH {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 1rem;
}

.cV1kbTBLCCU5 {
  font-size: 2rem;
  color: var(--color-accent);
}

.LY1ceNB61HdgwET {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0;
}

.sI8L3yrBlD02 {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.WEyB3k1KUKMu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.BfreORZNHteu {
  color: var(--color-accent);
  font-size: 1.8rem;
  margin-right: 1rem;
  font-weight: 700;
}

.QxeaaX6Ws5U4 {
  color: var(--color-accent);
  font-size: 1.6rem;
  margin-right: 1rem;
  display: inline-block;
  width: 2rem;
  text-align: center;
}

.oCykHeP6eDU {
  font-size: 1.4rem;
  color: var(--color-light);
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

.oCykHeP6eDU:hover {
  color: var(--color-white);
  border-bottom-color: var(--color-white);
}

.SYTRHObk6 .y25ZWlDeoM3l {
  color: var(--color-light);
  max-width: 320px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tDaeabSD2ftMoKQ {
  margin-top: 2rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 2px solid var(--color-secondary);
}

.lbmkhpK5AW {
  font-size: 1.4rem;
  color: var(--color-accent);
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}

.l4muI9kYr {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.5rem;
}

.BJjXmBwlKh {
  font-size: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  background-color: var(--color-white);
  border-radius: 50%;
  text-decoration: none;
  border: 3px solid var(--color-accent);
}

.BJjXmBwlKh:hover {
  background-color: var(--color-accent);
  transform: scale(1.1);
}

.Mmqmlk9jV {
  width: 30px;
  height: 30px;
}

.ZmIiU9WHZZc {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-accent) 50%,
    transparent 100%
  );
  margin: 3rem 0;
}

.QOW6bhoXs4fRoZ {
  border-top: 2px solid var(--color-secondary);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.QOW6bhoXs4fRoZ .y25ZWlDeoM3l {
  color: var(--color-light);
  font-size: 1.3rem;
  margin-bottom: 0;
  max-width: 100%;
}

.bn7i32OGbw6n1z {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .wpjAcbHsZT {
    display: none;
  }

  .rSrBRsN6AhuYA {
    border-right: none;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .JQ2l1guohBg {
    padding: 1.5rem 2rem;
  }

  .gm34IMSNnjACNB0 {
    border-right: none;
    padding-right: 0;
  }

  .GDYqcWf1wWEInv9 {
    font-size: 3rem;
  }

  .xl62wbJDU3ZMtF {
    font-size: 2.4rem;
  }

  .qvWRwaD0zF3K7N0 {
    display: none;
  }

  .h9T3GbivnsqG {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dQ4jYExfH {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .govZOgKNjzH4KC {
    text-align: center;
    width: 100%;
  }

  .rSrBRsN6AhuYA {
    border-right: none;
  }

  .i30fBvVzz {
    justify-content: center;
  }

  .vPMXVV1OZ4pKvH {
    justify-content: center;
  }

  .sI8L3yrBlD02 {
    align-items: center;
  }

  .SYTRHObk6 .y25ZWlDeoM3l {
    max-width: 100%;
  }

  .tDaeabSD2ftMoKQ {
    margin-left: auto;
    margin-right: auto;
  }

  .l4muI9kYr {
    justify-content: center;
  }

  .QOW6bhoXs4fRoZ {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .i0Fm1XdlM {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .xl62wbJDU3ZMtF {
    font-size: 2rem;
  }

  .GDYqcWf1wWEInv9 {
    font-size: 2.4rem;
  }

  .e4ntA6nrtmxcbo {
    font-size: 1.6rem;
  }

  .XAnT9ZEYfG7Qz {
    font-size: 3rem;
  }

  .S4crHJUQS {
    font-size: 2.2rem;
  }

  .BJjXmBwlKh {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
}

.bmbPpSoNp5zUUO {
  padding: 10rem 0;
  background-color: var(--color-bg);
  min-height: 70vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.xu65S4Ggglnc {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 5rem;
  background-color: var(--color-white);
  border-radius: 2rem;
  box-shadow: 10px 10px 30px rgba(93, 64, 55, 0.2);
  border: 5px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.XtFrjo0nSfK {
  width: 10rem;
  height: 10rem;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  color: var(--color-white);
  font-size: 6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: 6px solid var(--color-accent);
  box-shadow: 6px 6px 20px rgba(93, 64, 55, 0.3);
}

.xu65S4Ggglnc .fSelZg4IpTh {
  margin-bottom: 0;
}

.xu65S4Ggglnc .y25ZWlDeoM3l {
  line-height: 1.8;
  font-size: 1.5rem;
  max-width: 750px;
}

.R71fduNfg {
  width: 100%;
  padding: 3.5rem 3rem;
  background-color: var(--color-bg);
  border-radius: 1.5rem;
  border: 3px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.R71fduNfg .plgsUPwB99j {
  margin-bottom: 0;
}

.OEfn10JZwTyLRiK {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.wEHjafrqaP {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.ChbMcc44yCi3VW {
  width: 5rem;
  height: 5rem;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: 4px solid var(--color-primary);
}

.wEHjafrqaP .y25ZWlDeoM3l {
  font-size: 1.4rem;
  line-height: 1.6;
}

.bn5ORLlEW {
  width: 100%;
  padding: 3rem;
  background-color: var(--color-light);
  border-radius: 1.5rem;
  border: 3px solid var(--color-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.bn5ORLlEW .O3d6lk47QDC {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 0;
}

.bn5ORLlEW .y25ZWlDeoM3l {
  font-size: 1.45rem;
  line-height: 1.7;
}

.O7LB38mIpimZEQx {
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.O7LB38mIpimZEQx .y25ZWlDeoM3l {
  font-size: 1.4rem;
}

.O7LB38mIpimZEQx a {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 600;
}

.O7LB38mIpimZEQx a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.blBAtuJvW2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.blBAtuJvW2 .xGjOjIgnjBbgH9 {
  flex: 1 1 200px;
}

@media (max-width: 768px) {
  .bmbPpSoNp5zUUO {
    padding: 6rem 0;
  }

  .xu65S4Ggglnc {
    padding: 4rem 3rem;
  }

  .XtFrjo0nSfK {
    width: 8rem;
    height: 8rem;
    font-size: 5rem;
  }

  .R71fduNfg {
    padding: 2.5rem 2rem;
  }

  .OEfn10JZwTyLRiK {
    flex-direction: column;
  }

  .bn5ORLlEW {
    padding: 2rem;
  }

  .blBAtuJvW2 {
    flex-direction: column;
  }

  .blBAtuJvW2 .xGjOjIgnjBbgH9 {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .xu65S4Ggglnc {
    padding: 3rem 2rem;
  }

  .XtFrjo0nSfK {
    width: 7rem;
    height: 7rem;
    font-size: 4rem;
  }

  .R71fduNfg {
    padding: 2rem 1.5rem;
  }

  .ChbMcc44yCi3VW {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2rem;
  }

  .bn5ORLlEW {
    padding: 2rem 1.5rem;
  }
}
.ygk33zyo5DhnVbP {
  width: 20px;
  height: 20px;
}

.AlTSXlO5VDtE9X {
  padding: 8rem 0;
  background-color: var(--color-bg);
}

.AlTSXlO5VDtE9X .fSelZg4IpTh {
  margin-bottom: 4rem;
}

.GHaTOoX6MMo {
  max-width: 900px;
  margin: 0 auto 6rem;
  padding: 3rem;
  background-color: var(--color-white);
  border-left: 6px solid var(--color-primary);
  border-radius: 0 1rem 1rem 0;
  box-shadow: 4px 4px 12px rgba(93, 64, 55, 0.15);
}

.GHaTOoX6MMo .y25ZWlDeoM3l {
  text-align: left;
  line-height: 1.8;
  font-size: 1.45rem;
  margin-bottom: 1.5rem;
}

.GHaTOoX6MMo .y25ZWlDeoM3l:last-child {
  margin-bottom: 0;
}

.xEkxoJxwn4 {
  max-width: 1000px;
  margin: 0 auto 5rem;
  padding: 4rem;
  background-color: var(--color-white);
  border-radius: 1.5rem;
  border: 3px solid var(--color-accent);
  box-shadow: 6px 6px 18px rgba(93, 64, 55, 0.15);
}

.xEkxoJxwn4 .plgsUPwB99j {
  color: var(--color-primary);
  border-bottom: 4px solid var(--color-accent);
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}

.ACMwiD8Fn4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
}

.ACMwiD8Fn4 .y25ZWlDeoM3l {
  text-align: left;
  line-height: 1.8;
  font-size: 1.45rem;
  width: 100%;
}

.ACMwiD8Fn4 .O3d6lk47QDC {
  font-size: 2.2rem;
  color: var(--color-secondary);
  margin-top: 1.5rem;
  margin-bottom: 0;
  border-left: 4px solid var(--color-accent);
  padding-left: 1.5rem;
}

.ACMwiD8Fn4 .O3d6lk47QDC:first-child {
  margin-top: 0;
}

.uNxoNY2Syy0 {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding-left: 2rem;
}

.gQFP1B0ZYs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.2rem;
}

.gQFP1B0ZYs::before {
  content: "▸";
  color: var(--color-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.gQFP1B0ZYs .y25ZWlDeoM3l {
  flex: 1;
  text-align: left;
  line-height: 1.7;
  font-size: 1.4rem;
}

.lfF05emGwXco {
  max-width: 900px;
  margin: 6rem auto 4rem;
  padding: 4rem;
  background: linear-gradient(
    135deg,
    var(--color-light) 0%,
    var(--color-bg) 100%
  );
  border-radius: 1.5rem;
  border: 4px solid var(--color-primary);
  box-shadow: 6px 6px 18px rgba(93, 64, 55, 0.18);
  text-align: center;
}

.lfF05emGwXco .plgsUPwB99j {
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.lfF05emGwXco .y25ZWlDeoM3l {
  line-height: 1.8;
  font-size: 1.45rem;
  margin-bottom: 1.5rem;
}

.lfF05emGwXco .y25ZWlDeoM3l:last-child {
  margin-bottom: 0;
}

.lfF05emGwXco a {
  text-decoration: none;
  font-weight: 600;
}

.lfF05emGwXco a:hover {
  text-decoration: underline;
}

.uZV6tqBen9 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.uZV6tqBen9 .xGjOjIgnjBbgH9 {
  flex: 1 1 200px;
}

.pWhcev87Q8rY {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  border-top: 2px solid var(--color-accent);
}

.pWhcev87Q8rY .y25ZWlDeoM3l {
  font-size: 1.4rem;
}

.pWhcev87Q8rY a {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 600;
}

.pWhcev87Q8rY a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .AlTSXlO5VDtE9X {
    padding: 6rem 0;
  }

  .GHaTOoX6MMo {
    padding: 2rem;
  }

  .xEkxoJxwn4 {
    padding: 3rem 2rem;
  }

  .ACMwiD8Fn4 .O3d6lk47QDC {
    font-size: 2rem;
  }

  .lfF05emGwXco {
    padding: 3rem 2rem;
  }

  .uZV6tqBen9 {
    flex-direction: column;
  }

  .uZV6tqBen9 .xGjOjIgnjBbgH9 {
    flex: 1 1 100%;
  }

  .pWhcev87Q8rY {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .GHaTOoX6MMo {
    padding: 2rem 1.5rem;
  }

  .xEkxoJxwn4 {
    padding: 2rem 1.5rem;
  }

  .ACMwiD8Fn4 .O3d6lk47QDC {
    font-size: 1.8rem;
    padding-left: 1rem;
  }

  .uNxoNY2Syy0 {
    padding-left: 1rem;
  }

  .lfF05emGwXco {
    padding: 2.5rem 2rem;
  }
}
