@font-face {
  font-family: "Typo Round";
  src: url("./typo_round/Typo_Round_Regular_Demo.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Typo Round";
  src: url("./typo_round/Typo_Round_Light_Demo.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Typo Round";
  src: url("./typo_round/Typo_Round_Bold_Demo.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Typo Round";
  src: url("./typo_round/Typo_Round_Italic_Demo.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Typo Round";
  src: url("./typo_round/Typo_Round_Bold_Italic_Demo.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Typo Round";
  src: url("./typo_round/Typo_Round_Light_Italic_Demo.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Typo Round";
  src: url("./typo_round/Typo_Round_Thin_Italic Demo.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Typo Round";
  src: url("./typo_round/Typo_Round_Thin_Demo.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  color: #3d3d3d;
  background: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 190px;

  @media (max-width: 1280px) {
    padding: 0 40px;
  }

  @media (max-width: 768px) {
    padding: 0 20px;
  }
}

/* Header */
.header {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 25px 0;

  @media (max-width: 768px) {
    padding: 15px 0;
  }
}

.header-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;

  & img {
    width: 100px;
    height: auto;
  }

  @media (min-width: 768px) {
    img {
      width: 150px;
    }
  }

  a {
    text-decoration: none;
  }
}

.navigation {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  margin-top: 20px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: auto;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  pointer-events: none;

  @media (min-width: 375px) {
    gap: 15px;
  }

  @media (min-width: 768px) {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    width: auto;
    margin-top: 0;
    height: auto;
    max-height: none;
    opacity: 1;
    pointer-events: all;
    gap: 15px;
    padding: 0;
    box-shadow: none;
    background: transparent;
    justify-items: center;
    align-items: center;
  }

  @media (min-width: 1024px) {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 15px;
    justify-content: flex-end;
    gap: 20px;
    height: 20px;
  }

  @media (min-width: 1280px) {
    width: auto;
    margin-top: 0;
    justify-content: center;
  }
}

.navigation.active {
  max-height: 500px;
  opacity: 1;
  pointer-events: all;
}

@media (min-width: 768px) {
  .navigation.active {
    max-height: none;
    opacity: 1;
    pointer-events: all;
  }
}

.navigation a {
  font-family: "Typo Round", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #3d3d3d;
  text-decoration: none;
  transition: background 0.3s, opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.navigation a:hover {
  background: #e0e0e0;
  opacity: 1;
}

@media (min-width: 580px) {
  .navigation a {
    display: block;
    text-align: left;
    justify-content: flex-start;
  }

  .navigation a:hover {
    background: transparent;
    opacity: 0.7;
  }
}

@media (min-width: 1024px) {
  .navigation a {
    font-size: 15px;
    white-space: nowrap;
  }
}

/* Key People Section */
.key-people {
  padding-top: 70px;
  padding-bottom: 100px;

  @media (max-width: 768px) {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 60px;

  @media (max-width: 768px) {
    margin-bottom: 40px;
  }
}

.section-title-frame {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  gap: 10px;
  border-left: 10px solid #8f3089;

  @media (max-width: 768px) {
    padding: 8px 20px;
  }

  @media (min-width: 1440px) {
    border-left: 10px solid #8f3089;
  }
}

.section-title {
  font-family: "Typo Round", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 61px;
  background: linear-gradient(90deg, #8f3089 0%, #d41d5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;

  @media (max-width: 1280px) {
    font-size: 36px;
    line-height: 46px;
  }

  @media (max-width: 768px) {
    font-size: 28px;
    line-height: 36px;
  }
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 30px;
  margin-bottom: 60px;

  @media (max-width: 1280px) {
    grid-template-columns: 1fr;
    gap: 40px 30px;
  }

  @media (max-width: 768px) {
    gap: 40px;
  }

}

.person-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 20px;

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}

.person-image {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  @media (max-width: 768px) {
    width: 150px;
    height: 150px;
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


.person-left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 0 0 125px;
  min-width: 125px;

  @media (min-width: 1280px) {
    flex: 0 0 125px;
    min-width: 125px;
  }

  @media (max-width: 768px) {
    width: 100%;
    min-width: auto;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
  }
}

.person-right-column {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  align-items: flex-start;
  min-width: 0;

  @media (max-width: 768px) {
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
  }
}

.person-name-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;

  @media (max-width: 768px) {
    justify-content: center;
  }
}

.person-name {
  font-family: "Typo Round", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #3d3d3d;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 22px;
    line-height: 28px;
  }
}

.name-dot {
  font-family: "Inter", sans-serif;
  display: inline-block;
}

.person-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #666666;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 20px;
  }
}

.linkedin-link {
  color: #0a66c2;
  transition: opacity 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;

  &:hover {
    opacity: 0.7;
  }

  svg {
    width: 24px;
    height: 24px;
  }
}

.person-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #3d3d3d;
  margin: 0;
  text-align: left;

  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }
}



.william-card .person-name-wrapper {
  flex-wrap: nowrap;
  align-items: center;
}

.william-card .person-name {
  white-space: nowrap;
  flex-shrink: 0;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px 60px;
  margin: 0 auto;
  max-width: 1200px;
}

.partner-card {
  box-sizing: border-box;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  gap: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;

  @media (max-width: 768px) {
    padding: 25px 15px;
    gap: 15px;
    min-width: 100%;
    max-width: 100%;
  }
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 5px;
  background: linear-gradient(90deg, #8f3089 0%, #d41d5c 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.partner-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 102px;
  width: 100%;
  flex-shrink: 0;
}

.partner-logo {
  height: auto;
  max-width: 100%;
  width: auto;
  max-height: 102px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.partner-name {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #3d3d3d;
  margin: 0;
  text-align: center;

  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  .partners-logos {
    gap: 30px;
    flex-direction: column;
  }
}

/* Footer */
.footer {
  position: relative;
  width: 100%;
  background: #fbfbfb;
  padding-top: 70px;
  padding-bottom: 70px;

  @media (max-width: 1280px) {
    padding-top: 40px;
    padding-bottom: 40px;
    height: auto;
  }

  @media (max-width: 768px) {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .container {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.footer-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 50px;

  @media (max-width: 1280px) {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  align-items: center;
  gap: 20px;

  @media (max-width: 768px) {
    gap: 10px;
  }

  h4 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #3d3d3d;
    margin: 0;

    @media (max-width: 768px) {
      font-size: 18px;
      line-height: 24px;
    }
  }

  p {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #3d3d3d;
    margin: 0;

    @media (max-width: 768px) {
      font-size: 18px;
      line-height: 24px;
    }
  }

  .footer-link {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #3d3d3d;
    margin: 0;
    text-decoration: none;
    transition: opacity 0.3s;

    &:hover {
      opacity: 0.7;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      font-size: 18px;
      line-height: 24px;
    }
  }
}

.footer-logo {
  @media (max-width: 1280px) {
    position: static;
  }

  img {
    width: 150px;
    height: auto;


    @media (max-width: 768px) {
      width: 100px;
      height: auto;
    }
  }
}

