@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400;500;600;700;800&display=swap");

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  background: #ffffff;
  color: #0b1220;
  overflow-x: hidden;
}

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

.page {
  min-height: 100vh;
  background: #ffffff;
}

.anchor {
  scroll-margin-top: 24px;
}

.promo-marquee {
  --promo-bg: #f3b400;
  --promo-fg: #0b1220;
  --promo-gap: 2.25rem;
  --promo-speed: 18s;
  width: 100%;
  overflow: hidden;
  background: var(--promo-bg);
  color: var(--promo-fg);
}

.promo-marquee__viewport {
  width: 100%;
  overflow: hidden;
}

.promo-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: promo-marquee-scroll var(--promo-speed) linear infinite;
}

.promo-marquee__group {
  display: flex;
  align-items: center;
  gap: var(--promo-gap);
  padding: 0.5rem 0;
  flex-shrink: 0;
}

.promo-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.promo-marquee__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
}

.promo-marquee__icon svg {
  width: 100%;
  height: 100%;
}

@keyframes promo-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--promo-distance, 50%)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-marquee__track {
    animation: none;
    transform: none;
  }
}

.courses-section,
.course-card {
  scroll-margin-top: 24px;
}

/* Popular Graduations */
.popular-graduations {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: radial-gradient(
      140% 120% at 20% 10%,
      rgba(26, 106, 255, 0.25) 0%,
      rgba(10, 8, 40, 0) 60%
    ),
    radial-gradient(
      110% 100% at 80% 60%,
      rgba(123, 97, 255, 0.18) 0%,
      rgba(10, 8, 40, 0) 55%
    ),
    #0a0828;
  padding: 4.5rem 0 5rem 0;
}

.popular-graduations__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.popular-graduations__title {
  margin: 0 0 2.75rem 0;
  text-align: center;
  color: #ffffff;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.popular-graduations__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.popular-graduations__card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transform: translateZ(0);
}

.popular-graduations__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.popular-graduations__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.62) 100%
  );
  pointer-events: none;
}

.popular-graduations__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem 1.4rem 1.5rem;
  background: rgba(30, 30, 30, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.popular-graduations__card-title {
  margin: 0 0 0.4rem 0;
  color: #e9edf7;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.popular-graduations__card-subtitle {
  margin: 0;
  color: rgba(233, 237, 247, 0.9);
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
}

.popular-graduations__card:hover {
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
}

.popular-graduations__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem auto 0 auto;
  padding: 0.9rem 1.4rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 9999px;
  color: #ffffff;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  width: fit-content;
}

.popular-graduations__cta:hover {
  background: #ffffff;
  color: #0a0828;
  border-color: #ffffff;
}

@media (min-width: 640px) {
  .popular-graduations__container {
    padding: 0 2rem;
  }

  .popular-graduations__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .popular-graduations__image {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .popular-graduations__container {
    padding: 0 5rem;
  }

  .popular-graduations__title {
    font-size: 3.05rem;
  }

  .popular-graduations__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .popular-graduations__image {
    height: 300px;
  }
}

@media (min-width: 1280px) {
  .popular-graduations__container {
    padding: 0 6rem;
  }
}

@media (min-width: 1536px) {
  .popular-graduations__container {
    padding: 0 6rem;
  }
}

@media (min-width: 1920px) {
  .popular-graduations__container {
    padding: 0 8rem;
  }
}

/* Popular Postgrads */
.popular-postgrads {
  width: 100%;
  background: #e9edf4;
  padding: 4.75rem 0 5.25rem 0;
}

.popular-postgrads__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.popular-postgrads__title {
  margin: 0 0 2.75rem 0;
  text-align: center;
  color: #0b1230;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.popular-postgrads__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.popular-postgrads__card {
  border-radius: 1rem;
  overflow: hidden;
  background: #2b3b53;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18);
}

.popular-postgrads__image-link {
  display: block;
  text-decoration: none;
}

.popular-postgrads__image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.popular-postgrads__body {
  padding: 1.5rem 1.6rem 1.35rem 1.6rem;
}

.popular-postgrads__card-title {
  margin: 0 0 1rem 0;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.popular-postgrads__card-title a {
  color: #eaf0ff;
  text-decoration: none;
}

.popular-postgrads__card-title a:hover {
  text-decoration: underline;
}

.popular-postgrads__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.popular-postgrads__list a {
  color: rgba(233, 240, 255, 0.92);
  text-decoration: none;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.15;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}

.popular-postgrads__list a:hover {
  text-decoration: underline;
}

.popular-postgrads__arrow {
  font-weight: 800;
  color: rgba(233, 240, 255, 0.9);
}

.popular-postgrads__badge {
  display: inline-block;
  margin-top: 0.25rem;
  color: rgba(233, 240, 255, 0.78);
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.popular-postgrads__badge:hover {
  text-decoration: underline;
}

.popular-postgrads__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 2.5rem auto 0 auto;
  padding: 0.85rem 1.4rem;
  border: 2px solid rgba(17, 24, 39, 0.9);
  border-radius: 9999px;
  background: transparent;
  color: #0b1230;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.popular-postgrads__cta:hover {
  background: #0b1230;
  color: #ffffff;
  border-color: #0b1230;
}

@media (min-width: 640px) {
  .popular-postgrads__container {
    padding: 0 2rem;
  }

  .popular-postgrads__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .popular-postgrads__image {
    height: 210px;
  }
}

@media (min-width: 1024px) {
  .popular-postgrads__container {
    padding: 0 5rem;
  }

  .popular-postgrads__title {
    font-size: 3.05rem;
  }

  .popular-postgrads__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .popular-postgrads__image {
    height: 220px;
  }
}

@media (min-width: 1280px) {
  .popular-postgrads__container {
    padding: 0 6rem;
  }
}

@media (min-width: 1536px) {
  .popular-postgrads__container {
    padding: 0 6rem;
  }
}

@media (min-width: 1920px) {
  .popular-postgrads__container {
    padding: 0 8rem;
  }
}

/* Faculty */
.faculty {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-image: url("./assets/images/e359e0_be23958723c946afa99a94205a3052bf~mv2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4.75rem 0 5.25rem 0;
  cursor: auto;
}

.faculty * {
  cursor: inherit;
}

.faculty a {
  cursor: pointer;
}

.faculty__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faculty__title {
  margin: 0 0 1.1rem 0;
  text-align: center;
  color: #ffffff;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.faculty__description {
  margin: 0 auto 2.75rem auto;
  max-width: 960px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}

.faculty__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 1.75rem;
  align-items: start;
}

.faculty__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.faculty__photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
}

.faculty__name {
  margin: 1.35rem 0 0.85rem 0;
  color: #ffffff;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.faculty__lattes {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faculty__lattes:hover {
  opacity: 0.9;
}

.faculty__lattes-arrow {
  font-weight: 800;
  text-decoration: none;
}

@media (min-width: 640px) {
  .faculty__container {
    padding: 0 2rem;
  }

  .faculty__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faculty__photo {
    height: 360px;
  }
}

@media (min-width: 1024px) {
  .faculty__container {
    padding: 0 5rem;
  }

  .faculty__title {
    font-size: 3.05rem;
  }

  .faculty__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2.25rem 2rem;
  }

  .faculty__photo {
    height: 380px;
  }
}

@media (min-width: 1280px) {
  .faculty__container {
    padding: 0 6rem;
  }
}

@media (min-width: 1536px) {
  .faculty__container {
    padding: 0 6rem;
  }
}

@media (min-width: 1920px) {
  .faculty__container {
    padding: 0 8rem;
  }
}

/* Testimonials */
.testimonials {
  width: 100%;
  background: #ffffff;
  padding: 4.75rem 0 5.25rem 0;
}

.testimonials__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.testimonials__title {
  margin: 0 0 1.1rem 0;
  text-align: center;
  color: #0b1230;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.testimonials__subtitle {
  margin: 0 auto 3rem auto;
  max-width: 980px;
  text-align: center;
  color: #0b1230;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 2rem;
  align-items: start;
}

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

.testimonials__avatar-link {
  display: inline-flex;
  width: 132px;
  height: 132px;
  border-radius: 9999px;
  border: 3px solid rgba(15, 23, 42, 0.2);
  overflow: hidden;
  background: #f1f5f9;
  text-decoration: none;
}

.testimonials__avatar-link:hover {
  border-color: rgba(15, 23, 42, 0.35);
}

.testimonials__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.testimonials__quote-mark {
  margin-top: 1.15rem;
  color: #0b2a4a;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
}

.testimonials__name {
  margin: 0.25rem 0 1.25rem 0;
  color: #0b1230;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2;
}

.testimonials__text {
  margin: 0;
  max-width: 360px;
  color: #0b1230;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
}

@media (min-width: 640px) {
  .testimonials__container {
    padding: 0 2rem;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials__container {
    padding: 0 5rem;
  }

  .testimonials__title {
    font-size: 3.05rem;
  }

  .testimonials__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.75rem 2.25rem;
  }

  .testimonials__text {
    max-width: 320px;
  }
}

@media (min-width: 1280px) {
  .testimonials__container {
    padding: 0 6rem;
  }
}

@media (min-width: 1536px) {
  .testimonials__container {
    padding: 0 6rem;
  }
}

@media (min-width: 1920px) {
  .testimonials__container {
    padding: 0 8rem;
  }
}

/* Blog */
.blog {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-image: url("./assets/images/e359e0_e262304c160d419aa0946ae823808d6d~mv2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4.75rem 0 5.25rem 0;
}

.blog__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 110% at 70% 30%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.78) 60%),
    rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.blog__container {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.blog__title {
  margin: 0 0 1.1rem 0;
  text-align: center;
  color: #ffffff;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.blog__subtitle {
  margin: 0 auto 3rem auto;
  max-width: 980px;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}

.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.blog__card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.blog__card-link {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #ffffff;
}

.blog__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.25s ease;
}

.blog__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.78) 100%);
}

.blog__meta {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.15rem 1.15rem 0 1.15rem;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
}

.blog__author {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
}

.blog__meta-row {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.95;
}

.blog__dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.75);
}

.blog__card-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.1rem;
  margin: 0;
  padding: 0 1.15rem;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.15;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1.15rem 0.95rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.9rem;
  z-index: 2;
  pointer-events: auto;
}

.blog__stats {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.blog__stat,
.blog__like-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.92);
}

.blog__like-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.blog__stat svg,
.blog__like-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: 0.95;
}

.blog__like-btn svg {
  fill: none;
  stroke: #ff4d4d;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog__like-btn[aria-pressed="true"] svg {
  fill: rgba(255, 77, 77, 0.22);
}

.blog__card-link:hover .blog__image {
  transform: scale(1.02);
}

@media (min-width: 640px) {
  .blog__container {
    padding: 0 2rem;
  }

  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .blog__container {
    padding: 0 5rem;
  }

  .blog__title {
    font-size: 3.05rem;
  }

  .blog__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .blog__card-title {
    font-size: 1.15rem;
  }
}

@media (min-width: 1280px) {
  .blog__container {
    padding: 0 6rem;
  }
}

@media (min-width: 1536px) {
  .blog__container {
    padding: 0 6rem;
  }
}

@media (min-width: 1920px) {
  .blog__container {
    padding: 0 8rem;
  }
}

/* Blog Post Page */
.post-page {
  background: #f3f4f6;
}

.post-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.25rem 1.5rem 4.25rem 1.5rem;
}

.post-breadcrumb {
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: rgba(11, 18, 32, 0.72);
  margin: 0 0 1.25rem 0;
}

.post-breadcrumb a {
  color: rgba(11, 18, 32, 0.72);
  text-decoration: none;
}

.post-breadcrumb a:hover {
  text-decoration: underline;
}

.post-article {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
  padding: 2.25rem 2.25rem 1.75rem 2.25rem;
}

.post-header {
  margin-bottom: 1.4rem;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.post-avatar {
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  background: #e5e7eb;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
}

.post-meta-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: rgba(17, 24, 39, 0.74);
}

.post-author-name {
  font-weight: 700;
  color: rgba(17, 24, 39, 0.85);
}

.post-meta-dot {
  opacity: 0.6;
}

.post-updated {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: rgba(17, 24, 39, 0.6);
}

.post-title {
  margin: 0;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #0b1220;
}

.post-hero {
  margin: 1.25rem 0 1.9rem 0;
  background: #f3f4f6;
  overflow: hidden;
  border-radius: 0.25rem;
}

.post-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  color: rgba(17, 24, 39, 0.86);
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
}

.post-content h2 {
  margin: 1.7rem 0 0.7rem 0;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0b1220;
}

.post-content h3 {
  margin: 1.25rem 0 0.55rem 0;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: rgba(11, 18, 32, 0.92);
}

.post-content p {
  margin: 0 0 1rem 0;
}

.post-content ul,
.post-content ol {
  margin: 0.5rem 0 1.2rem 1.1rem;
  padding: 0;
}

.post-content li {
  margin: 0.35rem 0;
}

.post-footer {
  margin-top: 1.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.post-share {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  padding: 0;
  color: #1a6aff;
  text-decoration: none;
  cursor: pointer;
}

.post-share:hover {
  background: rgba(26, 106, 255, 0.08);
  border-color: rgba(26, 106, 255, 0.18);
  text-decoration: none;
}

.post-share:focus-visible {
  outline: 2px solid rgba(26, 106, 255, 0.55);
  outline-offset: 2px;
}

.post-share svg {
  width: 18px;
  height: 18px;
  display: block;
}

.post-share[data-copied="1"] {
  background: rgba(26, 106, 255, 0.16);
  border-color: rgba(26, 106, 255, 0.35);
}

.post-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  color: rgba(17, 24, 39, 0.65);
  font-size: 0.92rem;
}

.post-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.post-like {
  appearance: none;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  font: inherit;
  color: rgba(17, 24, 39, 0.75);
}

.post-like svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ff4d4d;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.post-like[aria-pressed="true"] svg {
  fill: rgba(255, 77, 77, 0.22);
}

.recent-posts {
  margin-top: 2.75rem;
}

.recent-posts__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.1rem;
}

.recent-posts__title {
  margin: 0;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(17, 24, 39, 0.8);
}

.recent-posts__link {
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(17, 24, 39, 0.7);
  text-decoration: none;
}

.recent-posts__link:hover {
  text-decoration: underline;
}

.recent-posts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.recent-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.recent-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.recent-card__link img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.recent-card__link h3 {
  margin: 0;
  padding: 0.85rem 0.95rem 0.9rem 0.95rem;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: rgba(11, 18, 32, 0.92);
}

.recent-card__footer {
  padding: 0 0.95rem 0.95rem 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(17, 24, 39, 0.65);
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.recent-card__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.recent-card__like {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  font: inherit;
}

.recent-card__like svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ff4d4d;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.recent-card__like[aria-pressed="true"] svg {
  fill: rgba(255, 77, 77, 0.22);
}

@media (min-width: 640px) {
  .recent-posts__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .recent-card__link img {
    height: 155px;
  }

  .post-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .post-stats {
    justify-content: flex-end;
  }
}

/* Blog List Page */
.blog-list__nav {
  color: #2563eb;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0 0 1.25rem 0.1rem;
}

.blog-list__items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-list-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.blog-list-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-list-card__image {
  width: 100%;
  background: #f3f4f6;
}

.blog-list-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-list-card__body {
  padding: 1.25rem 1.6rem 0.9rem 1.6rem;
}

.blog-list-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  color: rgba(17, 24, 39, 0.64);
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
}

.blog-list-card__author {
  font-weight: 700;
  color: rgba(17, 24, 39, 0.74);
}

.blog-list-card__dot {
  opacity: 0.55;
}

.blog-list-card__title {
  margin: 0.8rem 0 0.7rem 0;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  color: rgba(11, 18, 32, 0.95);
}

.blog-list-card__excerpt {
  margin: 0 0 1rem 0;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(17, 24, 39, 0.7);
}

.blog-list-card__footer {
  padding: 0.9rem 1.6rem 1.15rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: rgba(17, 24, 39, 0.65);
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.blog-list-card__stats {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.blog-list-card__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-list-card__stat svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.blog-list-card__like {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font: inherit;
  color: rgba(17, 24, 39, 0.75);
}

.blog-list-card__like svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ff4d4d;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-list-card__like[aria-pressed="true"] svg {
  fill: rgba(255, 77, 77, 0.22);
}

/* FAQ */
.faq {
  width: 100%;
  background: #ffffff;
  padding: 4.5rem 0 5.25rem 0;
}

.faq__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
}

.faq__title {
  margin: 0;
  color: #0b1230;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.faq__search {
  width: 100%;
  max-width: 320px;
}

.faq__search-label {
  display: block;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #0b1230;
  margin-bottom: 0.4rem;
}

.faq__search-inputWrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.6);
  padding-bottom: 0.35rem;
}

.faq__search-input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 0.5rem 0;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1rem;
  color: #0b1230;
  background: transparent;
}

.faq__search-input::placeholder {
  color: rgba(11, 18, 48, 0.6);
}

.faq__search-icon {
  width: 22px;
  height: 22px;
  color: rgba(11, 18, 48, 0.9);
  flex-shrink: 0;
}

.faq__tabs {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.faq__tab {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0.6rem 0;
  cursor: pointer;
  color: rgba(11, 18, 48, 0.9);
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}

.faq__tab.is-active {
  color: #8ea8ff;
  border-bottom-color: #8ea8ff;
}

.faq__panel {
  margin-top: 1.75rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq__item {
  border: 1px solid rgba(15, 23, 42, 0.9);
}

.faq__trigger {
  width: 100%;
  background: #ffffff;
  border: 0;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #0b1230;
  text-align: left;
}

.faq__chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: rgba(11, 18, 48, 0.9);
  transition: transform 180ms ease;
}

.faq__trigger[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 1.75rem 1.5rem 1.75rem;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(11, 18, 48, 0.9);
}

.faq__empty {
  padding: 1.25rem 0;
  color: rgba(11, 18, 48, 0.75);
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
}

@media (min-width: 640px) {
  .faq__container {
    padding: 0 2rem;
  }
}

@media (min-width: 768px) {
  .faq__header {
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .faq__container {
    padding: 0 5rem;
  }

  .faq__title {
    font-size: 3.05rem;
  }
}

@media (min-width: 1280px) {
  .faq__container {
    padding: 0 6rem;
  }
}

@media (min-width: 1536px) {
  .faq__container {
    padding: 0 6rem;
  }
}

@media (min-width: 1920px) {
  .faq__container {
    padding: 0 8rem;
  }
}

/* Header Container */
.header-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-background {
  position: absolute;
  inset: 0;
  background-color: #05162e;
  z-index: 0;
}

.header-content {
  position: relative;
  width: 100%;
  max-width: 1920px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.5rem;
  z-index: 10;
}

/* Logo Section */
.header-logo-section {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 3rem;
  width: auto;
  object-fit: contain;
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link,
.nav-link-active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.125rem 0.5rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 0.8;
}

.nav-link span {
  color: #ffffff;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
}

.nav-link-active span {
  color: #1a6aff;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
}

.nav-active-indicator {
  height: 1px;
  width: 100%;
  background-color: #1a6aff;
  margin-top: 0.125rem;
}

/* Mobile Menu Button */
.mobile-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.mobile-menu-button:hover {
  opacity: 0.8;
}

.mobile-menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu-button .icon-close {
  display: none;
}

.mobile-menu-button[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-menu-button[aria-expanded="true"] .icon-menu {
  display: none;
}

/* Mobile Navigation */
.mobile-nav {
  position: relative;
  width: 100%;
  background-color: #05162e;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  z-index: 10;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  display: flex;
}

.mobile-nav-link,
.mobile-nav-link-active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  width: 100%;
  transition: background-color 0.2s ease;
  border-radius: 0.25rem;
}

.mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.mobile-nav-link span {
  color: #ffffff;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
}

.mobile-nav-link-active span {
  color: #1a6aff;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
}

.mobile-nav-active-indicator {
  height: 1px;
  width: 100%;
  background-color: #1a6aff;
  margin-top: 0.25rem;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
  .header-content {
    padding: 0.875rem 3rem;
  }

  .logo-image {
    height: 3rem;
  }

  .mobile-menu-button {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }

  .mobile-nav {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-content {
    padding: 0.875rem 5rem;
  }

  .nav-list {
    gap: 0.75rem;
  }
}

@media (min-width: 1280px) {
  .header-content {
    padding: 0.875rem 8rem;
  }
}

@media (min-width: 1536px) {
  .header-content {
    padding: 0.875rem 12rem;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  background-color: #142559;
  overflow: hidden;
  min-height: 400px;
}

.hero-background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-background-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-background-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 1024px) {
  .hero-section {
    min-height: 604px;
  }

  .hero-background-picture img {
    object-position: right top;
  }
}

@media (max-width: 1023px) {
  .hero-background-picture img {
    object-position: center top;
  }
}

.hero-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  z-index: 10;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  max-width: 630px;
}

/* Hero Intro Text */
.hero-intro-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0.5rem;
}

.hero-intro-text p {
  color: #ffffff;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}

/* Hero Main Heading */
.hero-main-heading {
  color: #ffffff;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 1rem 0 1.5rem 0;
}

/* WhatsApp Button */
.hero-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.hero-whatsapp-button:hover {
  background-color: #f7fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.whatsapp-button-text {
  color: #0b2a4a;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
}

/* Mobile - Small */
@media (max-width: 374px) {
  .hero-container {
    padding: 2rem 1rem;
  }

  .hero-intro-text p {
    font-size: 1.125rem;
  }

  .hero-main-heading {
    font-size: 1.75rem;
  }

  .whatsapp-button-text {
    font-size: 0.875rem;
  }
}

/* Mobile - Medium */
@media (min-width: 375px) and (max-width: 639px) {
  .hero-container {
    padding: 2.5rem 1.25rem;
  }

  .hero-intro-text p {
    font-size: 1.25rem;
  }

  .hero-main-heading {
    font-size: 2rem;
  }
}

/* Tablet - Small */
@media (min-width: 640px) and (max-width: 767px) {
  .hero-container {
    padding: 3rem 2rem;
  }

  .hero-intro-text p {
    font-size: 1.375rem;
  }

  .hero-main-heading {
    font-size: 2.25rem;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .hero-container {
    padding: 4rem 3rem;
  }

  .hero-intro-text p {
    font-size: 1.5rem;
  }

  .hero-main-heading {
    font-size: 2.75rem;
  }

  .hero-content {
    gap: 1.25rem;
  }
}

/* Tablet - Large */
@media (min-width: 900px) {
  .hero-intro-text p {
    font-size: 1.625rem;
  }

  .hero-main-heading {
    font-size: 3.25rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero-container {
    padding: 5.25rem 5rem;
  }

  .hero-intro-text p {
    font-size: 1.8125rem;
  }

  .hero-main-heading {
    font-size: 4rem;
  }

  .hero-content {
    gap: 1.5rem;
  }
}

/* Desktop - Large */
@media (min-width: 1280px) {
  .hero-container {
    padding: 5.25rem 8rem;
  }

  .hero-intro-text p {
    font-size: 1.8125rem;
  }

  .hero-main-heading {
    font-size: 4.15rem;
  }
}

@media (min-width: 1536px) {
  .hero-container {
    padding: 5.25rem 12rem;
  }
}

/* Courses Section */
.courses-section {
  position: relative;
  width: 100%;
  background-color: #f8fafc;
  overflow: hidden;
}

.courses-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #f8fafc;
  z-index: 0;
}

.courses-container {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.625rem 1.5rem;
  z-index: 10;
}

.courses-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: stretch;
}

/* Course Card */
.course-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  padding: 1rem 1.5rem;
  background-color: #05162e;
  background-image: url("https://api.builder.io/api/v1/image/assets/TEMP/43acd572e786179c5abd0850bd6179efb9a4bbe5?width=618");
  background-size: 99.353% 106.381%;
  background-position: 1px -1.857px;
  background-repeat: no-repeat;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  min-height: 58px;
  color: #f0f0f0;
}

.course-card:hover {
  background-color: #ffffff;
  background-image: none;
  border-color: #000000;
  color: #000000;
  transform: none;
  box-shadow: none;
}

.course-title {
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  flex: 1;
  color: currentColor;
}

.course-arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  transform: rotate(1deg);
  color: currentColor;
}

.course-arrow-icon svg {
  width: 100%;
  height: 100%;
}

.course-card:hover .course-arrow-icon {
  transform: rotate(1deg) scaleX(-1);
}

/* Tablet - Small */
@media (min-width: 640px) {
  .courses-container {
    padding: 1.625rem 2rem;
  }

  .courses-grid {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .course-card {
    flex: 1;
    max-width: 309px;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .courses-container {
    padding: 1.625rem 3rem;
  }

  .course-card {
    padding: 1.125rem 1.75rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .courses-container {
    padding: 1.625rem 5rem;
  }

  .courses-grid {
    gap: 1.375rem;
  }
}

/* Desktop - Large */
@media (min-width: 1280px) {
  .courses-container {
    padding: 1.625rem 8rem;
  }
}

/* Desktop - Extra Large */
@media (min-width: 1536px) {
  .courses-container {
    padding: 1.625rem 10rem;
  }
}

/* Desktop - 1920px (Design size) */
@media (min-width: 1920px) {
  .courses-container {
    padding: 1.625rem 19.66rem;
  }

  .courses-grid {
    gap: 1.375rem;
  }
}

/* Why Choose Section */
.why-choose-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.why-choose-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    289.26% 101.53% at 100% 50%,
    rgba(245, 158, 11, 0.5) 0%,
    rgba(248, 250, 252, 0.3) 52.07%
  );
  z-index: 0;
}

.why-choose-container {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 3.375rem 1.5rem;
  z-index: 10;
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}

/* Text Section */
.why-choose-text-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 355px;
}

.why-choose-heading {
  color: #2a3157;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}

.why-choose-description {
  color: #1d233e;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

/* Benefits Grid */
.why-choose-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

/* Benefit Card */
.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 255px;
  padding: 1.75rem 1.5rem 4rem 1.65rem;
}

.benefit-card-overlay {
  position: absolute;
  inset: 0;
  border-radius: 0.625rem;
  border: 4px solid rgba(42, 49, 87, 0.22);
  background: rgba(255, 255, 255, 0);
  box-shadow: 3.326px 6.817px 15.178px 0 rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 0;
}

.benefit-card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.5rem;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-title {
  color: #1d233e;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1.125rem 0;
  white-space: pre-line;
}

.benefit-description {
  color: #1d233e;
  font-family: "Helvetica", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  white-space: pre-line;
}

/* Tablet - Small */
@media (min-width: 640px) {
  .why-choose-container {
    padding: 3.375rem 2rem;
  }

  .why-choose-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .why-choose-container {
    padding: 3.375rem 3rem;
  }

  .why-choose-heading {
    font-size: 3rem;
  }

  .why-choose-description {
    font-size: 1.25rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .why-choose-container {
    padding: 3.375rem 5rem;
  }

  .why-choose-content {
    flex-direction: row;
    gap: 5.5rem;
    align-items: flex-start;
  }

  .why-choose-text-section {
    flex-shrink: 0;
    padding-top: 0.125rem;
  }

  .why-choose-heading {
    font-size: 3.5rem;
  }

  .why-choose-description {
    font-size: 1.375rem;
  }

  .why-choose-benefits-grid {
    flex: 1;
    max-width: 728px;
  }

  .benefit-card {
    max-width: 346px;
  }
}

/* Desktop - Large */
@media (min-width: 1280px) {
  .why-choose-container {
    padding: 3.375rem 8rem;
  }
}

/* Desktop - Extra Large */
@media (min-width: 1536px) {
  .why-choose-container {
    padding: 3.375rem 12.09rem;
  }
}

/* Desktop - 1920px (Design size) */
@media (min-width: 1920px) {
  .why-choose-container {
    padding: 3.375rem 14.71rem;
  }

  .why-choose-heading {
    font-size: 3.95rem;
  }

  .why-choose-description {
    font-size: 1.375rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Footer */
.site-footer {
  --footer-photo-width: clamp(360px, 34vw, 540px);
  width: 100%;
  color: #ffffff;
  background: #0b1022;
}

@media (min-width: 1180px) and (max-width: 1380px) {
  .site-footer {
    --footer-photo-width: clamp(280px, 32vw, 340px) !important;
  }
}

.site-footer__main {
  position: relative;
  overflow: hidden;
  display: block;
}

.site-footer__main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/images/e359e0_e262304c160d419aa0946ae823808d6d~mv2.webp") center / cover no-repeat;
  filter: blur(2px) saturate(1.05) brightness(0.62);
  transform: scale(1.04);
  z-index: 0;
}

.site-footer__main::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, rgba(7, 10, 30, 0.92), rgba(7, 10, 30, 0.92)),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.18) 1px, transparent 1.6px);
  background-size: auto, 4px 4px;
  background-position: 0 0, 0 0;
  filter: contrast(1.02);
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.site-footer__container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 3.35rem 1.5rem 3rem 1.5rem;
  z-index: 1;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.site-footer__brand {
  max-width: 340px;
}

.site-footer__logo {
  width: 200px;
  height: auto;
  margin-bottom: 1.35rem;
  object-fit: contain;
}

.site-footer__quick {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.site-footer__quick a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-footer__quick a:hover {
  text-decoration: underline;
}

.site-footer__portaria {
  margin: 0 0 1.05rem 0;
  font-size: 0.64rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

.site-footer__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  max-width: 100%;
  text-decoration: none;
}

.site-footer__badge img {
  width: 100%;
  height: auto;
}

.site-footer__heading {
  margin: 0 0 0.9rem 0;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.98);
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__heading--spaced {
  margin-top: 1.5rem;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.25;
}

.site-footer__list a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}

.site-footer__photo {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.site-footer__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 30, 0.18), rgba(7, 10, 30, 0.18));
  pointer-events: none;
}

.site-footer__photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.05) contrast(1.06) brightness(1.05);
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  background: #ffffff;
}

.site-footer__bottom-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 1.05rem 1.5rem;
}

.site-footer__copyright {
  margin: 0;
  color: #0b1230;
  font-family: "Wix Madefor Text", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__container {
    padding: 3.75rem 3rem 3.1rem 3rem;
  }

  .site-footer__grid {
    gap: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .site-footer__main {
    min-height: auto;
  }

  .site-footer__container {
    padding: 3.9rem 5rem 3.5rem 5rem;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 3rem;
  }

  .site-footer__photo {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1180px) {
  .site-footer__main {
    display: flex;
    min-height: 470px;
  }

  .site-footer__container {
    flex: 1 1 auto;
    padding: 3.9rem 5rem 3.5rem 5rem;
  }

  .site-footer__photo {
    flex: 0 0 var(--footer-photo-width);
    width: var(--footer-photo-width);
    align-self: stretch;
  }

  .site-footer__photo img {
    min-height: 100%;
  }
}

@media (min-width: 1280px) {
  .site-footer__container {
    padding: 3.9rem 6rem 3.5rem 6rem;
  }

  .site-footer__bottom-container {
    padding: 1.05rem 6rem;
  }
}

@media (min-width: 1536px) {
  .site-footer__container {
    padding: 3.9rem 6rem 3.5rem 6rem;
  }

  .site-footer__grid {
    grid-template-columns: minmax(220px, 260px) minmax(260px, 330px) minmax(250px, 300px) minmax(280px, 360px);
    gap: 3.2rem;
  }
}

@media (min-width: 1920px) {
  .site-footer__container {
    padding: 3.9rem 8rem 3.5rem 8rem;
  }

  .site-footer__bottom-container {
    padding: 1.05rem 8rem;
  }
}
