/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Noto+Serif:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 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;
  -webkit-text-decoration: underline dotted;
          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;
}

img {
  border-style: none;
}

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;
}

[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;
  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;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Inter", sans-serif;
  color: #333333;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 18px;
  }
}

p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  p {
    font-size: 14px;
  }
}

a,
button {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

ul {
  padding: 0;
}

img {
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  height: auto;
}

a:hover {
  filter: brightness(105%);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111111;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-banner-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  font-size: 14px;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
}
.cookie-banner .cookie-banner-text a {
  color: #85ccb1;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-text a:hover {
  color: #85a9b3;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-buttons {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cookie-btn-accept {
  background-color: #19ae30;
  color: white;
}
.cookie-btn-accept:hover {
  background-color: #158026;
}
.cookie-btn-essential {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-essential:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-btn-settings {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.cookie-modal-overlay.show {
  opacity: 1;
}

.cookie-modal {
  background-color: white;
  color: #333;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}
.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #2e3641;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.cookie-modal-close:hover {
  color: #333;
}
.cookie-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-body p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cookie-category-title {
  font-weight: 700;
  font-size: 16px;
  color: #2e3641;
}
.cookie-category-desc {
  font-size: 13px;
  line-height: 18px;
  color: #777;
  margin: 0;
}

/* Switch Styles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #19ae30;
}
.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px #19ae30;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.clause {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.clause a {
  color: #7f919e;
  text-decoration: underline;
}
.clause a:hover {
  color: #7f919e;
}

.terms {
  margin-top: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.terms label {
  cursor: pointer;
}
.terms input[type=checkbox] {
  margin-top: 2px;
  margin-left: 0px;
  cursor: pointer;
  flex-shrink: 0;
}
.terms a {
  color: #7f919e;
  text-decoration: underline;
}
.terms .terms-error {
  color: #e70000;
  font-size: 14px;
  margin: 8px 0;
  display: none;
}
.terms .terms-error.show {
  display: block;
}

.disclaimer {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}

.main {
  width: 100%;
}

.container {
  max-width: 1008px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

@media (max-width: 768px) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media (max-width: 768px) {
  .mobile {
    display: block;
  }
}

.section-title {
  font-family: "Noto Serif", serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 22px;
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-bold {
  font-weight: 700;
}

.text-green {
  color: #789175;
}

.text-secondary {
  color: #b36f56;
}

.text-primary-dark {
  color: #426753;
}

.text-sm {
  font-size: 14px;
}

.mt-4 {
  margin-top: 24px;
}

.mb-4 {
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 32px;
  background-color: #cb7244;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 999px;
  border: none;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: #ac5a30;
  color: #ffffff;
}
.button__icon {
  font-size: 24px;
  line-height: 1;
}
.button--large {
  padding: 20px 40px;
  font-size: 20px;
}

.header {
  width: 100%;
  padding: 10px 0;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (max-width: 768px) {
  .header .container {
    display: flex;
    justify-content: center;
  }
}
.header__logo {
  max-width: 200px;
}
.header__logo img {
  display: block;
}

.hero {
  background-color: #f6f1e7;
  padding-top: 40px;
  position: relative;
  overflow: hidden;
  background-image: url("../img/hero.png");
  background-size: cover;
}
.hero__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 992px) {
  .hero__container {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px 20px;
  }
  .hero__container a {
    display: none;
  }
  .hero__container .button--mobile {
    display: block;
  }
}
.hero__content {
  flex: 1;
  z-index: 2;
}
.hero__title {
  font-family: "Noto Serif", serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 40px;
  }
}
.hero__title span {
  font-family: "Inter", sans-serif;
  font-size: 40px;
}
@media (max-width: 768px) {
  .hero__title span {
    font-size: 32px;
  }
}
.hero__subtitle {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.hero__image {
  flex: 1;
  position: relative;
  z-index: 1;
}
.hero__image img {
  max-width: 100%;
  height: auto;
}

.eligibility {
  padding: 64px 0;
  background-color: #f6f1e7;
  width: 100%;
}
.eligibility h2 {
  letter-spacing: -0.56px;
  max-width: 547px;
  margin: auto;
}
.eligibility__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .eligibility__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.eligibility__item {
  background-color: #fbf9f5;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 2px 8px 9px -2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .eligibility__item--full {
    grid-column: 1/-1;
  }
}
.eligibility__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eligibility__icon img {
  width: 100%;
  height: 100%;
}

.shipping {
  padding: 64px 0;
  background-color: #f6f1e7;
}
@media (max-width: 768px) {
  .shipping {
    padding: 20px 0;
  }
}
.shipping__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}
@media (max-width: 992px) {
  .shipping__container {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .shipping .button {
    display: block;
    text-align: center;
    max-width: 500px;
    margin: 20px auto 0;
  }
}
.shipping__image {
  flex: 1;
  position: relative;
  border-radius: 20px;
}
.shipping__image .shipping__hero {
  border-radius: 20px;
  display: block;
  height: 450px;
  width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}
@media (max-width: 992px) {
  .shipping__image .shipping__hero {
    width: 100%;
    max-width: -moz-max-content;
    max-width: max-content;
    height: auto;
  }
}
.shipping__content {
  flex: 1;
}

.separator {
  width: 90px;
  height: 3px;
  background-color: #b36f56;
  margin: 16px 0 24px;
}

.availability-card {
  position: absolute;
  bottom: -30px;
  left: -20px;
  background: #ffffff;
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
  width: 280px;
  z-index: 5;
}
@media (max-width: 768px) {
  .availability-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -40px;
    margin-left: 20px;
  }
}
.availability-card__header {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}
.availability-card__icon {
  width: 45px;
  height: 45px;
  background-color: #ded5c3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 24px;
}
.availability-card__bar {
  height: 5px;
  background-color: #f3e8e3;
  border-radius: 5px;
  margin-bottom: 5px;
  overflow: hidden;
}
.availability-card__fill {
  height: 100%;
  background-color: #b36f56;
}

.product-info {
  padding: 64px 0 24px;
  background-color: #f6f1e7;
}
@media (max-width: 768px) {
  .product-info {
    padding: 20px 0;
  }
}
.product-info h2 {
  font-weight: 400;
}

.benefits {
  padding: 64px 0;
}
.benefits__container {
  display: flex;
  flex-direction: row;
  gap: 48px;
}
@media (max-width: 992px) {
  .benefits__container {
    flex-direction: column;
    align-items: center;
  }
}
.benefits__images {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.benefits__image-wrap {
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
}
.benefits__image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.benefits__arrow {
  width: 35px;
  flex-shrink: 0;
}
.benefits__content {
  flex: 1;
  font-size: 18px;
}

.technology {
  padding: 64px 0;
  background-color: #d8e7e6;
}
.technology__container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  flex-direction: row;
  gap: 32px;
}
@media (max-width: 992px) {
  .technology__container {
    display: flex;
    gap: 0;
    flex-direction: column;
    align-items: center;
  }
}
.technology .button {
  max-width: 350px;
}
.technology__content {
  flex: 1;
}
.technology__content p {
  margin-bottom: 24px;
  font-size: 18px;
}
.technology__image {
  flex: 1;
}
.technology__image img {
  border-radius: 20px;
  display: block;
}

.features {
  padding: 64px 0;
}
.features__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 32px;
}
.features__item {
  display: flex;
  align-items: center;
  gap: 24px;
}
.features__icon {
  width: 38px;
  height: 41px;
  flex-shrink: 0;
}
.features__icon img {
  width: 100%;
  height: 100%;
}
.features .futurelsImg {
  margin-top: 30px;
}
.features .desktop {
  margin-right: 140px;
  max-width: calc(100% - 140px);
}
.features .button {
  display: block;
  justify-self: center;
}
.features ul {
  list-style: none;
}
.features ul li {
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid #F7F3EB;
  padding-bottom: 10px;
  margin-top: 10px;
}
.features ul li::before {
  display: flex;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #D9D9D9;
  border-radius: 50%;
  content: "";
  left: -15px;
  margin-top: 8px;
}

.cta {
  padding: 64px 0;
  background-color: #426753;
}
.cta__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cta__card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.cta__icon {
  width: 68px;
  height: 68px;
}
.cta__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .cta__title {
    font-size: 40px;
  }
}
.cta__alert {
  width: 51px;
  height: 51px;
}
.cta__alert-content {
  display: grid;
  grid-template-columns: auto 1fr;
  border-radius: 12px;
  border: 1px solid #B36F56;
  background: #F3E8E3;
  gap: 6px 12px;
  padding: 16px 24px;
}
.cta__icon {
  grid-column: 1;
  grid-row: span 2;
}
.cta__alert-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .cta__alert-title {
    font-size: 24px;
  }
}
.cta__disclaimer {
  color: #ffffff;
  text-align: center;
  font-size: 16px;
}

.price-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
}
.price-box__old {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #808080;
  font-size: 18px;
}
.price-box__old .product-price-old {
  text-decoration: line-through;
  color: #b50000;
}
.price-box .product-price {
  font-size: 64px;
  font-weight: 700;
  color: #00ba0c;
  line-height: 1;
}

.comments {
  padding: 64px 0;
}
.comments__list {
  display: flex;
  flex-direction: column;
}

.comment-card {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #bfbfbf;
}
.comment-card:last-child {
  border-bottom: none;
}
.comment-card__avatar {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.comment-card__avatar img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.comment-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comment-card__header {
  display: flex;
  align-items: center;
  gap: 24px;
}
.comment-card__author {
  font-weight: 700;
  font-size: 22px;
  color: #000000;
}
.comment-card__date {
  color: #808080;
  font-size: 16px;
}
.comment-card__text {
  font-size: 18px;
  line-height: 1.5;
}
.comment-card__actions {
  display: flex;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #808080;
  cursor: pointer;
}

.footer {
  padding: 48px 0;
  background-color: #f6f1e7;
  text-align: center;
  margin-top: 0;
  width: 100%;
}
.footer__copyright {
  font-size: 16px;
  margin-bottom: 8px;
}
.footer__linksBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 24px;
}
.footer__linksBox a {
  text-decoration: underline;
  color: #000000;
  font-size: 16px;
}

.header--summary {
  background-color: #fff;
}
.header--summary .container {
  display: flex;
  justify-content: center;
}

.summary {
  min-height: 100vh;
  background-color: #426753;
  padding: 80px 0 40px;
  display: flex;
  align-items: center;
}
.summary .summary__oldPrice {
  color: #B50000;
  text-decoration: line-through;
  font-weight: 700;
}
.summary .summary__newPrice {
  color: #00BA0C;
  font-weight: 700;
}
@media (max-width: 768px) {
  .summary {
    padding: 60px 0 30px;
  }
}
.summary__card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .summary__card {
    padding: 32px 24px;
    border-radius: 16px;
  }
}
.summary__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #00BA0C;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .summary__title {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
.summary__text {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 24px;
  color: #000000;
}
@media (max-width: 768px) {
  .summary__text {
    font-size: 16px;
  }
}
.summary__highlight {
  color: #b50000;
  font-weight: 700;
}
.summary__imageWrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .summary__imageWrap {
    margin: 24px 0;
  }
}
.summary__image {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .summary__image {
    max-width: 280px;
  }
}
.summary__policy {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 16px;
  color: #333333;
}
@media (max-width: 768px) {
  .summary__policy {
    font-size: 14px;
  }
}
.summary__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  color: #000000;
  margin: 32px 0 24px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .summary__subtitle {
    font-size: 18px;
    margin: 24px 0 20px;
  }
}
.summary__phoneBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: #f3e8e3;
  border: 2px solid #b36f56;
  border-radius: 12px;
  padding: 20px 32px;
  margin: 24px auto;
  max-width: 460px;
}
@media (max-width: 768px) {
  .summary__phoneBox {
    padding: 16px 24px;
    gap: 12px;
  }
}
.summary__phoneIcon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .summary__phoneIcon {
    width: 24px;
    height: 24px;
  }
}
.summary__phoneNumber {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: #cb7244;
}
@media (max-width: 768px) {
  .summary__phoneNumber {
    font-size: 24px;
  }
}
.summary__info {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 12px;
  color: #000000;
}
@media (max-width: 768px) {
  .summary__info {
    font-size: 14px;
  }
}
.summary__contact {
  margin-top: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .summary__contact {
    margin-top: 24px;
    padding-top: 20px;
  }
}
.summary__contact p {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .summary__contact p {
    font-size: 12px;
  }
}
.summary__contact p:last-child {
  margin-bottom: 0;
}

.summary + .footer {
  margin-top: 0;
}/*# sourceMappingURL=styles.css.map */