@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
.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;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
  font-size: 12px;
  line-height: 1.5;
}
.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 {
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.clause p {
  font-size: 14px;
}
.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 p {
  font-size: 14px;
}
.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-error {
  color: #e70000;
  font-size: 14px;
  margin: 8px 0;
  display: none;
}
.terms-error.show {
  display: block;
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  color: #343434;
  line-height: 1.5;
  background-color: #f8f6f3;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding-bottom: 20px;
}

.site-header {
  width: 100%;
  max-width: 1920px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.alert-banner {
  width: 100%;
  background-color: #e63946;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.alert-banner__text {
  font-size: 18px;
  font-weight: 700;
  color: #f8f6f3;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .alert-banner__text {
    font-size: 14px;
  }
}

.header-info {
  width: 100%;
  background-color: #f8f6f3;
  border-top: 1px solid #f1faee;
  border-bottom: 1px solid #f1faee;
  padding: 20px 360px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1500px) {
  .header-info {
    padding: 20px 40px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header-info {
    padding: 20px 40px;
  }
}
@media (max-width: 767px) {
  .header-info {
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
  }
}
.header-info__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .header-info__left {
    flex-shrink: 0;
    text-align: center;
    gap: 10px;
  }
}
.header-info__right {
  display: flex;
  align-items: center;
}

.logo__image {
  width: 58.445px;
  height: 46.999px;
  flex-shrink: 0;
}

.program-text {
  max-width: 381px;
}
.program-text__subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #343434;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .program-text__subtitle {
    font-size: 16px;
  }
}
.program-text__title {
  font-size: 26px;
  font-weight: 700;
  color: #457b9d;
  line-height: 1.35;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 767px) {
  .program-text__title {
    font-size: 20px;
  }
}

.phone {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone__icon {
  width: 36px;
  height: 34.999px;
}
@media (max-width: 767px) {
  .phone__icon {
    width: 28px;
    height: auto;
  }
}
.phone__number {
  font-size: 44px;
  font-weight: 600;
  color: #457b9d;
  text-decoration: none;
  line-height: 1.7;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .phone__number {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .phone__number {
    font-size: 28px;
  }
}

.hero-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 767px) {
  .hero-content {
    flex-direction: column;
  }
}
.hero-content__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 50px 0 50px 360px;
}
@media (max-width: 1580px) {
  .hero-content__left {
    padding-left: 18%;
  }
}
@media (max-width: 1500px) {
  .hero-content__left {
    padding: 40px 0 40px 40px;
    gap: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero-content__left {
    padding: 40px 0 40px 40px;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .hero-content__left {
    padding: 30px 20px;
    gap: 20px;
  }
}
.hero-content__right {
  flex: 1;
  position: relative;
  padding: 32px 360px 32px 32px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 400px;
  background-image: url("../img/7fd244eea47aee782f46fa662c7076191d71ae85.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 1500px) {
  .hero-content__right {
    padding: 32px 40px 32px 32px;
    min-height: 350px;
  }
}
@media (max-width: 950px) {
  .hero-content__right {
    background-position: left;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero-content__right {
    padding: 32px 40px 32px 32px;
    min-height: 350px;
  }
}
@media (max-width: 767px) {
  .hero-content__right {
    padding: 20px;
    justify-content: center;
    min-height: 300px;
  }
}
.hero-content__tag {
  background-color: #ffcc00;
  padding: 8px 16px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .hero-content__tag {
    padding: 6px 12px;
  }
}
.hero-content__tag-text {
  font-size: 28px;
  font-weight: 400;
  color: #1d3557;
  line-height: 1.4;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero-content__tag-text {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .hero-content__tag-text {
    font-size: 18px;
  }
}
.hero-content__heading {
  font-size: 58px;
  font-weight: 700;
  color: #1d3557;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero-content__heading {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .hero-content__heading {
    font-size: 32px;
  }
}
.hero-content__quote {
  font-size: 22px;
  font-weight: 400;
  color: #343434;
  line-height: 1.5;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero-content__quote {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .hero-content__quote {
    font-size: 16px;
  }
}

.badges {
  display: flex;
  gap: 15px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .badges {
    flex-direction: row;
    justify-content: center;
  }
}

.badge {
  width: 138px;
  height: 138px;
  border-radius: 0;
}
@media (max-width: 767px) {
  .badge {
    width: 100px;
    height: 100px;
  }
}
.badge__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cta-banner {
  width: 100%;
  background-color: #ffcc00;
  padding: 10px 20px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .cta-banner {
    height: auto;
    padding: 15px 20px;
  }
}
.cta-banner__text {
  font-size: 36px;
  font-weight: 700;
  color: #1d3557;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cta-banner__text {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .cta-banner__text {
    font-size: 20px;
  }
}

.benefits {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
@media (max-width: 767px) {
  .benefits {
    padding: 0 15px;
  }
}
.benefits__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-item {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.benefit-item__icon {
  width: 24px;
  height: 28px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .benefit-item__icon {
    width: 20px;
    height: 24px;
  }
}
.benefit-item__icon-img {
  width: 100%;
  height: auto;
}
.benefit-item__content {
  flex: 1;
  border-bottom: 1px solid #457b9d;
  padding-bottom: 14px;
}
@media (max-width: 767px) {
  .benefit-item__content {
    padding-bottom: 10px;
  }
}
.benefit-item--last .benefit-item__content {
  border-bottom: none;
}
.benefit-item__text {
  font-size: 20px;
  line-height: 1.75;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .benefit-item__text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .benefit-item__text {
    font-size: 16px;
  }
}
.benefit-item__highlight {
  font-weight: 700;
  color: #457b9d;
}
.benefit-item__description {
  font-weight: 400;
  color: #343434;
}

.big-box {
  background-color: #f8f6f3;
  padding: 48px 20px;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 0;
}
@media (max-width: 767px) {
  .big-box {
    padding: 30px 15px;
    padding-top: 0;
  }
}

.content-box {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 6px 20px 0px rgba(184, 182, 179, 0.6);
  max-width: 1220px;
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 0 32px 32px;
  gap: 26px;
}
@media (max-width: 900px) {
  .content-box {
    flex-direction: column;
    padding: 0 20px 20px;
  }
}
@media (max-width: 767px) {
  .content-box {
    flex-direction: column;
    padding: 0 20px 20px;
  }
}

.main-box {
  flex: 1;
  padding: 48px 0;
  max-width: 790px;
}
@media (max-width: 767px) {
  .main-box {
    padding: 30px 0;
  }
}

.article {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 767px) {
  .article {
    gap: 30px;
  }
}
.article__header {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.article__heading {
  font-size: 36px;
  font-weight: 700;
  color: #1d3557;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .article__heading {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .article__heading {
    font-size: 24px;
  }
}
.article__heading--underline {
  text-decoration: underline;
  text-underline-position: from-font;
}
.article__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
@media (max-width: 950px) {
  .content-row {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .content-row {
    flex-direction: column;
  }
}

.profesor-image {
  width: 200px;
  height: 209px;
  flex-shrink: 0;
  border: 2px solid #e3e3e3;
  border-radius: 10px;
  overflow: hidden;
}
.profesor-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-text {
  font-size: 18px;
  line-height: 1.5;
  color: #343434;
  margin: 0 0 16px;
}
@media (max-width: 767px) {
  .content-text {
    font-size: 16px;
  }
}
.content-text strong {
  font-weight: 700;
}
.content-text--highlight {
  color: #e63946;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.35;
}
@media (max-width: 767px) {
  .content-text--highlight {
    font-size: 20px;
  }
}
.content-text .underline {
  text-decoration: underline;
  text-underline-position: from-font;
}

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.bullet-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.bullet-item__icon {
  width: 15px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 5px;
}
.bullet-item__icon img {
  width: 100%;
  height: 100%;
}
.bullet-item__text {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  color: #343434;
  margin: 0;
}
@media (max-width: 767px) {
  .bullet-item__text {
    font-size: 16px;
  }
}
.bullet-item__text strong {
  font-weight: 700;
}

.product-features {
  border: 1px solid #c1c1c1;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0;
}

.product-feature {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media (max-width: 767px) {
  .product-feature {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-feature:nth-of-type(2) {
    flex-direction: column-reverse;
  }
  .product-feature:nth-of-type(4) {
    flex-direction: column-reverse;
  }
}
.product-feature__image {
  flex-shrink: 0;
}
.product-feature__image img {
  max-width: 100%;
  height: auto;
}
.product-feature__text {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  color: #343434;
  margin: 0;
}
@media (max-width: 767px) {
  .product-feature__text {
    font-size: 16px;
  }
}
.product-feature__text strong {
  font-weight: 700;
}

.program-certificate {
  background-image: url("../img/4748a58648743f4bd512eba08489fedba54c793e.png");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  padding: 32px;
  margin: 16px 0;
}
@media (max-width: 767px) {
  .program-certificate {
    padding: 20px;
  }
}
.program-certificate__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d98d73;
}
.program-certificate__title {
  text-align: center;
}
.program-certificate__subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: #343434;
  margin: 0;
}
.program-certificate__name {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  color: #457b9d;
  margin: 0;
}
@media (max-width: 767px) {
  .program-certificate__name {
    font-size: 20px;
  }
}
.program-certificate__content {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.program-certificate__description {
  font-size: 18px;
  line-height: 1.5;
  color: #343434;
  text-align: center;
  margin: 0;
}
@media (max-width: 767px) {
  .program-certificate__description {
    font-size: 16px;
  }
}

.ear-icon {
  width: 58px;
  height: 47px;
}
.ear-icon img {
  width: 100%;
  height: 100%;
}

.funding-box {
  background-color: #f8f6f3;
  border-radius: 10px;
  padding: 25px 14px 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
  width: 100%;
}
.funding-box__label {
  font-size: 16px;
  line-height: 1.5;
  color: #7f7f7f;
  text-align: center;
  margin: 0;
}
.funding-box__label strong {
  font-size: 20px;
  font-weight: 700;
  color: #343434;
  line-height: 1.25;
}
.funding-box__amount {
  font-size: 26px;
  font-weight: 700;
  color: #343434;
  text-align: center;
  margin: 0;
  line-height: 1;
}
@media (max-width: 767px) {
  .funding-box__amount {
    font-size: 22px;
  }
}
.funding-box__amount--red {
  font-size: 64px;
  color: #c10c1a;
  line-height: 1;
}
@media (max-width: 767px) {
  .funding-box__amount--red {
    font-size: 48px;
  }
}

.funding-disclaimer {
  font-size: 14px;
  line-height: 1.4;
  color: #343434;
  text-align: center;
}
.funding-disclaimer strong {
  font-weight: 700;
}

.benefits-box {
  border: 1px solid #c1c1c1;
  padding: 24px 16px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-box__header {
  background-color: #1d3557;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
}

.benefits-box__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
  color: #f8f6f3;
  margin: 0;
}
@media (max-width: 767px) {
  .benefits-box__title {
    font-size: 18px;
  }
}

.benefits-box__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .benefits-box__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .benefits-box__grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.benefit-card__image {
  width: 100%;
  aspect-ratio: 300/256;
}
@media (max-width: 950px) {
  .benefit-card__image {
    aspect-ratio: 0;
    width: auto;
  }
}
.benefit-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 950px) {
  .benefit-card__image img {
    max-width: 400px;
    height: auto;
  }
}
.benefit-card__content {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.benefit-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #343434;
  margin: 0;
}
@media (max-width: 767px) {
  .benefit-card__title {
    font-size: 16px;
  }
}
.benefit-card__text {
  font-size: 18px;
  line-height: 1.5;
  color: #343434;
  margin: 0;
}
@media (max-width: 767px) {
  .benefit-card__text {
    font-size: 16px;
  }
}

.cta-link {
  padding: 36px 0;
  display: flex;
}
@media (max-width: 767px) {
  .cta-link {
    padding: 24px 0;
  }
}
.cta-link__button {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  color: blue;
  text-decoration: underline;
  text-underline-position: from-font;
  transition: opacity 0.3s ease;
}
.cta-link__button:hover {
  opacity: 0.8;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cta-link__button {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .cta-link__button {
    font-size: 22px;
  }
}

.side-bar {
  width: 340px;
  flex-shrink: 0;
  padding: 48px 0;
  overflow-y: auto;
}
@media (max-width: 900px) {
  .side-bar {
    width: 100%;
    padding: 30px 0 0;
  }
}
@media (max-width: 767px) {
  .side-bar {
    width: 100%;
    padding: 30px 0 0;
  }
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
}

.testimonial {
  border: 1px solid #1d3557;
  border-radius: 5px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial__image {
  width: 150px;
  height: 150px;
}
@media (max-width: 900px) {
  .testimonial__image {
    margin: 0 auto;
  }
}
.testimonial__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.testimonial__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #1d3557;
  margin: 0;
}
@media (max-width: 767px) {
  .testimonial__title {
    font-size: 20px;
  }
}
.testimonial__text {
  font-size: 16px;
  line-height: 1.5;
  color: #343434;
  margin: 0;
}
@media (max-width: 767px) {
  .testimonial__text {
    font-size: 14px;
  }
}
.testimonial__author {
  font-size: 16px;
  line-height: 1.5;
  color: #343434;
  text-align: right;
  margin: 0;
}
@media (max-width: 767px) {
  .testimonial__author {
    font-size: 14px;
  }
}
.testimonial__author strong {
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */