body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0b145c;
  color: white;
  overflow-x: hidden;
}

html {
  font-size: clamp(14px, 1.6vw, 20px);
}


/* HEADER */
.main-header {
  background-color: #0b145c;
  height: 104px;
  max-width: 100vw;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 1000;
}

.header-wrapper {
  width: auto;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 56px;
  object-fit: contain;
}

.nav-buttons {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.nav-buttons a {
  font-size: 20px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.nav-buttons a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* BURGER */
.burger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

.close-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  filter: brightness(0) invert(1);
}

#burger.hide {
  display: none !important;
}

#close.show {
  display: block !important;
}

#close {
  display: none;
  position: absolute;
  top: px;
  right: 45px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.mobile-menu {
  display: none;
  position: relative;
  width: 100%;
  background-color: #0b145c;
  z-index: 999;
  padding: 40px 20px;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-height: 500px;
  overflow-y: auto;
  margin-bottom: 40px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.mobile-nav a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 20px;
  padding: 10px;
  width: 100%;
  text-align: center;
  border-radius: 6px;
}

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

.mobile-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.mobile-logo {
  height: 48px;
  object-fit: contain;
}

body.mobile-open .logo {
  display: none;
}

@media (max-width: 1400px),
       (min-resolution: 1.5dppx) and (max-width: 1920px) {
  .nav-buttons {
    display: none;
  }

  .burger {
    display: block;
    margin-left: auto;
  }

  .logo img {
    height: 48px;
  }

  #close {
    top: 28px;
    right: 24px;
  }
}

/* MAIN SECTION */
.main-section {
  position: relative;
  min-height: 780px;
  padding-top: 170px;
  background-color: #0b145c;
  background-image: url("addons/background1.svg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 0;
}

.main-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 20, 92, 0.2) 20%,
    rgba(11, 20, 92, 0.8) 60%,
    rgba(11, 20, 92, 1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.main-content {
  position: relative;
  z-index: 2;
  margin-top: 0;
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
  box-sizing: border-box;
}

.main-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: auto;
  text-align: center;
  margin-top: -80px;
}

.main-center h1,
.main-center h2 {
  font-size: clamp(2rem, 3.6vw, 76px);
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  white-space: normal;
  word-break: break-word;
}

.main-center h2 {
  color: #00c2ff;
}

.main-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  padding: 0 40px;
  gap: 120px;
}

.main-left,
.main-right {
  display: flex;
  flex-direction: column;
}

.main-left {
  gap: 12px;
  align-items: flex-start;
}

.main-right {
  align-items: flex-end;
  justify-content: flex-start;
  max-width: 400px;
}

.invite-button,
.main-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  padding: 20px 24px;
  min-width: 600px;
  max-width: 600px;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
}

.invite-button {
  background-color: white;
  color: #0b145c;
  margin-top: 150px;
}

.invite-button:hover {
  background-color: #ccc;
}

.main-button {
  background-color: #00b4ff;
  color: #0b145c;
}

.main-button:hover {
  background-color: #0098d6;
}

.main-caption {
  font-size: 32px;
  line-height: 1.6;
  text-align: right;
  color: white;
  max-width: 400px;
  margin-top: 138px;
}

.highlight {
  color: #00c2ff;
  font-weight: 700;
}

@media screen and (max-width: 900px) and (min-resolution: 1.5dppx) {
  .main-center h1,
  .main-center h2 {
    font-size: 60px;
  }

  .invite-button,
  .main-button {
    font-size: 28px;
    min-width: 400px;
  }
}

@media screen and (max-width: 700px) and (min-resolution: 2dppx),
       screen and (max-width: 650px) and (min-resolution: 2.5dppx) and (max-resolution: 3dppx) {

  .main-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 0 20px;
    margin-top: 40px;
  }

  .main-left,
  .main-right {
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .main-caption {
    text-align: center;
    font-size: clamp(16px, 4vw, 20px);
    margin-top: 20px;
    max-width: 90%;
    line-height: 1.5;
  }

  .main-center h1,
  .main-center h2 {
    font-size: clamp(20px, 5vw, 36px);
    max-width: 100%;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    hyphens: auto;
    line-height: 1.3;
  }

  .invite-button,
  .main-button {
    min-width: auto;
    max-width: 90%;
    width: 100%;
    font-size: clamp(14px, 5vw, 20px);
    padding: 14px 20px;
  }
}

/* INFO SECTION */
.info-section {
  background-color: #02b6ff;
  padding: 40px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  font-style: bold;
}

.info-wrapper p {
  color: #001848;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
  letter-spacing: -1px;
}

.white-text {
  color: white;
}

.highlight-white {
  font-weight: 700;
  color: white;
}

@media screen and (max-width: 1024px), screen and (min-resolution: 1.5dppx) {
  .info-section {
    padding: 30px 20px;
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }

  .info-wrapper p {
    font-size: clamp(20px, 5vw, 32px);
    text-align: center;
    line-height: 1.5;
    letter-spacing: -0.5px;
    margin: 0 auto;
  }
}

/*BIGGER SECTION*/
.feature-wrapper {
  background: url('addons/background2.png') no-repeat center 40%;
  background-size: cover;
  background-attachment: scroll;
  height: auto;
  width: auto;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 260px 40px 260px;
  color: white;
}

/*1*/
.why-section {
  width: 100%;
  margin: 100px auto 0;
  padding: 0;
  box-sizing: border-box;
  gap: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: white;
  margin-bottom: 260px;
}

.why-item.title {
  grid-column: 1 / 2;
  align-self: end;
}

.why-item.title h2 {
  font-size: 64px;
  line-height: 1.2;
  margin: 0;
  color: white;
}

.why-item.card {
  background: rgba(103, 116, 142, 0.6);
  padding: 32px 24px;
  border-radius: 16px;
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.25);
  font-size: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-item.card h3 {
  font-size: 35px;
  font-weight: 700;
  color: #00c2ff;
  margin: 0 0 12px;
}

.why-grid > .why-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.why-grid > .why-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.why-grid > .why-item:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}
.why-grid > .why-item:nth-child(5) {
  grid-column: 1;
  grid-row: 3;
}
.why-grid > .why-item:nth-child(6) {
  grid-column: 2;
  grid-row: 3;
}

@media screen and (max-width: 1024px) {
  .why-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .why-item.card {
    max-width: 100%;
    width: 100%;
    font-size: 18px;
    padding: 20px;
  }

  .why-item.card img {
    width: 48px;
    height: 48px;
  }
}

/*2*/
.benefits-section {
  margin-bottom: 260px;
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
  color: white;
  font-size: 30px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  box-sizing: border-box;
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.benefits-section .card {
  background: white;
  color: #0b145c;
  padding: 32px;
  font-size: 28px;
  font-weight: 600;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.benefits-row-1 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 24px;
}

.benefits-row-1 h2 {
  grid-column: 1 / span 6;
  align-self: end;
  margin: 0;
  font-size: 64px;
  line-height: 1.2;
  min-width: 0;
  max-width: 100%;
  word-break: break-word;
}

.benefits-row-1 .card.wide {
  grid-column: 7 / span 6;
  justify-self: start;
  max-width: 90wv;
  width: 100%;
  min-height: 180px;
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px;
  text-align: left;
  gap: 24px;
}

.salary-left .price-highlight {
  font-size: 52px;
  font-weight: 700;
  color: #0b1fc0;
  display: block;
}

.salary-info {
  font-size: 36px;
  color: #0b145c;
  line-height: 1.4;
}

.benefits-section .card {
  background: white;
  color: #0b145c;
  padding: 32px;
  font-size: 32px;
  font-weight: none;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  text-align: left;
  min-height: 150px;
}

.benefits-row-1 .card.wide .sub {
  display: block;
  margin-top: 12px;
  font-size: 36px;
  color: #293170;
  line-height: 1.4;
}

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

.benefits-row-2 .card:nth-child(1) {
  grid-column: 7 / span 3;
}

.benefits-row-2 .card:nth-child(2) {
  grid-column: 10 / span 3;
}

.benefits-row-3 {
  grid-template-columns: repeat(12, 1fr);
}

.benefits-row-3 .card:nth-child(1) {
  grid-column: 1 / span 3;
}
.benefits-row-3 .card:nth-child(2) {
  grid-column: 4 / span 3;
}
.benefits-row-3 .card:nth-child(3) {
  grid-column: 7 / span 3;
}
.benefits-row-3 .card:nth-child(4) {
  grid-column: 10 / span 3;
}

.benefits-row-4 {
  grid-template-columns: repeat(12, 1fr);
}

.benefits-row-4 .card:nth-child(1) {
  grid-column: 1 / span 3;
}
.benefits-row-4 .card:nth-child(2) {
  grid-column: 4 / span 3;
}
.benefits-row-4 .card:nth-child(3) {
  grid-column: 7 / span 3;
}
.benefits-row-4 .card:nth-child(4) {
  grid-column: 10 / span 3;
}

.benefits-row-5 {
  grid-template-columns: repeat(12, 1fr);
}

.benefits-row-5 .card:nth-child(1) {
  grid-column: 1 / span 4;
}
.benefits-row-5 .card:nth-child(2) {
  grid-column: 5 / span 4;
}
.benefits-row-5 .card:nth-child(3) {
  grid-column: 9 / span 4;
}

.card-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b1fc0;
  display: block;
  margin-bottom: 12px;
}

.price-highlight {
  color: #0b1fc0;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  display: inline-block;
  margin-bottom: 12px;
  font-stretch: expanded;
  letter-spacing: 1px;
  transform: scaleX(1.05);
  margin-right: 20px;
}

.sub {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  color: #0b145c;
  line-height: 1.4;
}

@media screen and (max-width: 1024px), screen and (min-resolution: 1.5dppx) {
  .benefits-section {
    padding: 40px 20px;
    text-align: center;
  }

  .benefits-row,
  .benefits-row-1,
  .benefits-row-2,
  .benefits-row-3,
  .benefits-row-4,
  .benefits-row-5 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .card,
  .card.wider,
  .card.wide,
  .salary-card {
    width: 100%;
    max-width: 360px;
    padding: 20px;
    font-size: 18px;
    text-align: center;
    word-break: break-word;
    box-sizing: border-box;
  }

  .salary-left {
    font-size: 24px;
  }

  .salary-info {
    font-size: 16px;
  }

  .price-highlight {
    font-size: 28px;
  }

  .card-title {
    font-size: 24px;
  }

  .sub {
    font-size: 16px;
    line-height: 1.4;
  }
}

/*3*/
.stats-block {
  font-size: 36px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  max-width: auto;
  align-items: start;
  min-height: 150px;
}

.stats-row.stats-row-1 h2 {
  grid-column: 1 / span 6;
  font-size: 64px;
  line-height: 1.2;
  margin: 0;
  align-self: end;
}

.stats-row.stats-row-1 .card:nth-child(2) {
  grid-column: 7 / span 3;
}
.stats-row.stats-row-1 .card:nth-child(3) {
  grid-column: 10 / span 3;
  padding-bottom: 7px;
  gap: 4px;
}

.stats-row.stats-row-2 .card:nth-child(1) {
  grid-column: 1 / span 3;
}
.stats-row.stats-row-2 .card:nth-child(2) {
  grid-column: 4 / span 3;
}
.stats-row.stats-row-2 .card:nth-child(3) {
  grid-column: 7 / span 3;
}
.stats-row.stats-row-2 .card:nth-child(4) {
  grid-column: 10 / span 3;
}

.stats-row.stats-row-3 .card:nth-child(1) {
  grid-column: 1 / span 3;
}
.stats-row.stats-row-3 .card:nth-child(2) {
  grid-column: 4 / span 3;
}

.stats-block .card {
  background: white;
  color: #0b145c;
  border-radius: 20px;
  padding: 32px;
  font-size: 28px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  min-height: 150px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}

.stats-number {
  font-size: 48px;
  font-weight: 700;
  color: #0b1fc0;
  margin-bottom: 8px;
  display: inline-block;
}

@media screen and (max-width: 1024px), screen and (min-resolution: 1.5dppx) {
  .stats-block {
    margin: 60px auto;
    padding: 0 20px;
    font-size: 20px;
  }

  .stats-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
  }

  .stats-row.stats-row-1 h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 16px;
  }

  .stats-block .card {
    width: 100%;
    max-width: 360px;
    font-size: 18px;
    text-align: center;
    padding: 20px;
  }

  .stats-number {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
  }
}

/*FAQ*/
.faq-section {
  padding: 10px 20px;
  background-color: white;
  min-height: 40vh;
  max-width: 100vw;
}

.faq-section h2 {
  font-size: 55px;
  font-weight: 700;
  color: #0023c4;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 3px solid #00bfff;
  padding: 16px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  background: none;
  border: none;
  font-size: 45px;
  font-weight: none;
  color: #0b145c;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  display: inline-block;
  font-size: 35px;
  background: #00bfff;
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-top: 12px;
  font-size: 35px;
  color: #333;
  max-width: 100vw;
}

@media screen and (min-resolution: 1.5dppx) {
  .faq-question {
    position: relative;
    padding-right: 48px;
    font-size: 22px;
    text-align: left;
    display: block;
    line-height: 1.4;
  }

  .faq-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 20px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
  }

  .faq-answer {
    font-size: 18px;
    margin-top: 8px;
  }

  .faq-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 1024px), screen and (min-resolution: 1.5dppx) {
  .faq-section {
    padding: 20px;
    min-height: auto;
  }

  .faq-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
  }

  .faq-item {
    padding: 12px 0;
  }

  .faq-question {
    font-size: 20px;
    padding-right: 40px;
    line-height: 1.4;
    text-align: left;
    display: flex;
    align-items: center;
  }

  .faq-icon {
    font-size: 18px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    margin-left: auto;
    flex-shrink: 0;
  }

  .faq-answer {
    font-size: 16px;
    margin-top: 8px;
    max-width: 100%;
  }
}

/*LEADERS&SUCCESS*/
.leaders-section {
  position: cover;
  width: 100%;
  max-width: 100vw;
  color: white;
  overflow: hidden;
  padding: 150px 40px 150px;
  box-sizing: border-box;
  background: url('addons/background3.png') no-repeat center 30%;
  background-size: cover;
  background-attachment: scroll;
}

.leaders-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.section-title {
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 700;
  margin-bottom: 2vw;
  text-align: left;
}

.leaders-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
}

.leader-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 32px;
  background-color: white;
  border-radius: 1vw;
  padding: 2vw;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  flex: 1 1 45%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
}

.leader-photo {
  background-color: #003b9e;
  border-radius: 1vw;
  overflow: hidden;
  width: 300px;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leader-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.leader-info h3 {
  color: #0b1fc0;
  font-size: 36px;
  margin: 0 0 30px;
}

.leader-info p {
  color: #0b145c;
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.success-title {
  margin-top: 60px;
  font-size: 48px;
  font-weight: 700;
  color: white;
}

.success-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 16px;
  overflow-x: auto;
  max-width: 100%;
  box-sizing: border-box;
}

.success-card {
  background-color: white;
  color: #0b145c;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  width: 100%;
  max-width: 100vw;
  flex: 1 1 300px;
  gap: 16px;
  flex-direction: column;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
}

.success-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.success-header img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.success-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.success-name h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.success-card p {
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

@media screen and (min-resolution: 1.5dppx) {
  .leaders-row {
    flex-direction: column;
    align-items: center;
    gap: clamp(16px, 4vw, 32px);
  }

  .leader-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(16px, 4vw, 32px);
    width: 100%;
    max-width: 600px;
    gap: clamp(16px, 3vw, 24px);
  }

  .leader-photo {
    width: clamp(160px, 30vw, 240px);
    aspect-ratio: 3/4;
    border-radius: 1vw;
  }

  .leader-info {
    width: 100%;
  }

  .leader-info h3,
  .leader-info p {
    text-align: center;
  }

  .success-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
  }

  .success-card {
    width: 100%;
    max-width: 360px;
    padding: 16px;
    max-height: 200px;
  }

  .success-card img {
    width: 64px;
    height: 64px;
  }

  .success-card h3 {
    font-size: 16px;
    text-align: center;
  }

  .success-card p {
    font-size: 14px;
    text-align: center;
  }
}

@media screen and (max-width: 1024px), screen and (min-resolution: 1.5dppx) {
  .leaders-section {
    padding: 40px 20px;
    background-size: cover;
  }

  .section-title,
  .success-title {
    font-size: 32px;
    text-align: center;
  }

  .leaders-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .leader-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    padding: 20px;
    gap: 20px;
  }

  .leader-photo {
    width: 180px;
    aspect-ratio: 3 / 4;
  }

  .leader-info h3 {
    font-size: 20px;
  }

  .leader-info p {
    font-size: 16px;
  }

  .success-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;
  }

  .success-card {
    width: 100%;
    max-width: 320px;
    padding: 16px;
    text-align: center;
  }

  .success-header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .success-header img {
    width: 64px;
    height: 64px;
  }

  .success-name h3 {
    font-size: 16px;
  }

  .success-card p {
    font-size: 14px;
  }
}

/*PARTNERS*/
.partners {
  background-color: white;
  min-height: 980px;
  max-width: 100%;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.partners h2 {
  align-self: flex-start;
  color: #001e91;
  font-size: 72px;
  margin-left: 40px;
  margin-bottom: 100px;
  margin-top: 20px;
}

.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 12px 0;
  padding-inline: 20px;
  width: 100%;
}

.partners-row img {
  max-height: 100%;
  max-width: 200px;
  object-fit: contain;
}

.partners-row-1 {
  width: 90%;
}

.partners-row-2 {
  width: 90%;
}

.partners-row-3 {
  width: 80%;
}

.partners-row-4 {
  width: 80%;
}

@media screen and (max-width: 1024px), screen and (min-resolution: 1.5dppx) {
  .partners {
    padding: 20px 10px;
    gap: 12px;
  }

  .partners h2 {
    font-size: 36px;
    text-align: center;
    margin: 0 0 24px 0;
    align-self: center;
  }

  .partners-row {
    gap: 20px;
    justify-content: center;
    padding: 0;
    flex-wrap: wrap;
  }

  .partners-row img {
    max-width: 120px;
    width: 100%;
    height: auto;
  }

  .partners-row-1,
  .partners-row-2,
  .partners-row-3,
  .partners-row-4 {
    width: 100%;
    justify-content: center;
    gap: 20px;
  }
}

/*FOOTER*/
.footer {
  background-color: #0b145c;
  color: white;
  padding: 0px 80px;
  height: 600px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;    
  flex-direction: row;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  gap: 60px;
}

.footer-left-columns {
  display: flex;
  flex-direction: column;
  gap: 40px;
  white-space: nowrap;
}

.footer-rows-2col {
  display: flex;
  gap: 100px;
  margin-right: 100px;
}

.footer-subcol h3 {
  font-size: 20px;
  margin: 0 0 12px;
}

.footer-left-columns h2 {
  font-size: 48px;
  margin: 40px 0 40px 0;
}

.footer-subcol {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 18px;
}

.footer-subcol p {
  display: flex;
  align-items: center;
  font-size: 28px;
  margin: 0;
}

.footer-subcol a {
  color: white;
  text-decoration: none;
  font-size: 28px;  
}

.footer-subcol a:hover {
  color: #ddd;
}

.footer-icon {
  width: 36px;
  height: 36px;
  margin-right: 12px;
  filter: brightness(0) invert(1);
  object-fit: contain;
  flex-shrink: 0;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 200px;
  margin-top: 40px;
  padding-top: 130px;
}

.footer-right p {
  margin-bottom: 16px;
  font-size: 24px;
  white-space: nowrap;
}

.qr-code {
  width: 240px;
  height: auto;
  border-radius: 12px;
  display: inline-block;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 10px 30px rgba(0, 0, 0, 0.25);
  margin-bottom: 148px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(103, 116, 142, 0.6);
}

@media screen and (max-width: 1024px), screen and (min-resolution: 1.5dppx) {
  .footer {
    padding: 40px 20px;
    height: auto;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .footer-left-columns {
    align-items: center;
    gap: 24px;
    white-space: normal;
  }

  .footer-left-columns h2 {
    font-size: 32px;
    margin: 0;
  }

  .footer-rows-2col {
    flex-direction: column;
    gap: 32px;
    margin-right: 0;
  }

  .footer-subcol {
    align-items: center;
    gap: 16px;
    font-size: 16px;
  }

  .footer-subcol p,
  .footer-subcol a {
    font-size: 18px;
    justify-content: center;
  }

  .footer-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }

  .footer-right {
    margin-top: 0;
    padding-top: 0;
  }

  .footer-right p {
    font-size: 18px;
  }

  .qr-code {
    width: 160px;
    margin-bottom: 0;
  }
}