/* =============================================
   OM ENERGY — ABOUT US
   ============================================= */

/* =============================================
   WRAPPER
   ============================================= */
.page-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0;
  background: #aaaaaa;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  padding: 12px 24px;
  background: transparent;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  width: 100px;
  height: 80px;
  background-image: url("../assets/images/logos/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.navbar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 18px;
  position: static;
}

.navbar__link {
  height: 10px;
  border-radius: 2px;
}

.navbar__cta {
  height: auto;
  width: auto;
  color: #ffffff;
  font-size: 12px;
  border: none;
  background-color: #404742;
  padding: 8px 16px;
  transition: all 0.2s ease;
}

.navbar__cta:hover {
  background-color: #ffffff;
  color: #000000;
}

.navbar__item {
  position: relative;
}

.navbar__hamburger {
  display: none;
}

/* DROPDOWN */
.navbar__dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: max-content;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  z-index: 9999;
}

.navbar__dropdown--active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-label {
  font-size: 13px;
  color: #111111;
  white-space: nowrap;
}

.navbar__dropdown-btn {
  background: #111111;
  color: #ffffff;
  font-size: 12px;
  padding: 10px 16px;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.navbar__dropdown-btn:hover {
  background: #404742;
}

.navbar__dropdown--vertical {
  flex-direction: column;
  align-items: stretch;
  min-width: 240px;
  padding: 8px 0;
}

.navbar__dropdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.navbar__dropdown-row:hover {
  background: rgba(0, 0, 0, 0.04);
}

.navbar__dropdown-row .navbar__dropdown-label {
  color: #111111;
}

.navbar__dropdown-arrow {
  color: #111111;
  opacity: 0.5;
  font-size: 13px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  background-image: url("../assets/images/hero-images/About\ us.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-left: 40px;
  padding-bottom: 100px;
  padding-right: 40px;
}

.hero__bottom {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__title {
  width: 60%;
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
}

.hero__right {
  height: auto;
  width: 600px;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.hero__sub {
  width: 100%;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 12px;
}

.hero__cta {
  height: auto;
  width: auto;
  color: #ffffff;
  font-size: 12px;
  border: none;
  background-color: #404742;
  padding: 8px 16px;
  transition: all 0.2s ease;
}

.hero__cta:hover {
  background-color: #ffffff;
  color: #000000;
}

/* =============================================
   WHO WE ARE
   ============================================= */
.who {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 100px;
  padding: 100px 40px;
}

.who__info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}

.who__title {
  font-size: 48px;
  color: #000000;
  flex-shrink: 0;
}

.who__content {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.who__block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.who__block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.who__block-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666666;
}

.who__block-text {
  font-size: 20px;
  color: #000000;
  line-height: 1.6;
}

.who__values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.who__value-chip {
  font-size: 16px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 25px;
  padding: 8px 16px;
}

.who__img {
  height: fit-content;
  width: 100%;
}

/* =============================================
   A MARKET IN TRANSFORMATION
   ============================================= */
.market-transformation {
  height: 900px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 100px 40px;
  background-image: url("../assets/images/about-us-images/image-section-molinos.png");
  background-size: cover;
}

.market-info__top {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.market-top__title {
  font-size: 48px;
  color: #ffffff;
}

.market-top__subtitle {
  width: 60%;
  font-size: 24px;
  color: #ffffff;
}

.market-info__bottom {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: flex-end;
}

.market-info__container {
  height: auto;
  width: 500px;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.market-bottom__title {
  font-size: 24px;
  color: #ffffff;
}

.market-bottom__subtitle {
  width: 100%;
  font-size: 16px;
  color: #ffffff;
}

.market__cta {
  height: auto;
  width: auto;
  color: #ffffff;
  font-size: 12px;
  border: none;
  background-color: #404742;
  padding: 8px 16px;
  transition: all 0.2s ease;
}

.market__cta:hover {
  background-color: #ffffff;
  color: #000000;
}

/* =============================================
   WHAT SETS US APART
   ============================================= */
.what {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 40px;
}

.what__info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 100px;
}

.what-info__title {
  font-size: 48px;
  color: #000000;
}

.what-info__subtitle {
  width: 40%;
  font-size: 24px;
  color: #000000;
}

.what-cards__container {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.what-cards__row {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.what__card {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  background-color: #404742;
  padding: 16px;
}

.card__top {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.card__img {
  height: 200px;
  width: 200px;
}

.card__label {
  font-size: 16px;
  color: #ffffff;
}

.card__bottom {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.card__title {
  width: 100%;
  font-size: 24px;
  color: #ffffff;
  padding-bottom: 16px;
  border-bottom: 1px solid #666c68;
}

.card__subtitle {
  font-size: 16px;
  color: #ffffff;
}

/* =============================================
   OUR AREAS OF EXPERTISE
   ============================================= */
.areas {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 40px;
}

.areas__info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 100px;
}

.areas__title {
  font-size: 48px;
  color: #000000;
}

.areas__subtitle {
  width: 50%;
  font-size: 24px;
  color: #000000;
}

.areas-cards-container {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.area__card {
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background-color: #404742;
  padding: 16px;
}

.area-card-info__top {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.area-card__title {
  font-size: 24px;
  color: #ffffff;
}

.area-card__subtitle {
  font-size: 16px;
  color: #ffffff;
}

/* =============================================
   LEADERSHIP
   ============================================= */
.leadership {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 100px 40px;
}

.leadership__left {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.leadership__title {
  width: 60%;
  font-size: 48px;
  color: #000000;
}

.leadership__subtitle {
  width: 60%;
  font-size: 24px;
  color: #000000;
}

.leadership__rigth {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.leadership__card {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  background-color: #404742;
}

.leadership-card__info {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  gap: 24px;
  padding: 8px;
}

.leadership-info__title {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  border-bottom: 1px solid #666c68;
  padding: 8px;
}

.leadership-card__title {
  font-size: 24px;
  color: #ffffff;
}

.leadership-card__icon {
  font-size: 24px;
  color: #ffffff;
}

.leadership-card__subtitle {
  font-size: 16px;
  color: #ffffff;
  padding: 8px;
}

/* =============================================
   GLOBAL PRESENCE
   ============================================= */
.global-presence {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 100px 40px;
  background-color: #404742;
}

.global__info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.global__title {
  font-size: 48px;
  color: #ffffff;
}

.global__subtitle {
  width: 60%;
  font-size: 24px;
  color: #ffffff;
}

.global__locations {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 0;
}

.global__location {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid #666c68;
}

.global__location:last-child {
  border-bottom: none;
}

.global__location-title {
  font-size: 20px;
  color: #ffffff;
}

.global__location-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   OUR PHILOSOPHY
   ============================================= */
.philosophy {
  height: 700px;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  padding: 40px 40px 100px;
  background-image: url("../assets/images/about-us-images/section-2.png");
  background-size: cover;
}

.philosophy__info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.philosophy__title {
  font-size: 48px;
  color: #ffffff;
}

.philosophy__subtitle {
  width: 60%;
  font-size: 24px;
  color: #ffffff;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.cta__title {
  width: 40%;
  font-size: 48px;
  color: #000000;
  text-align: center;
}

.cta__subtitle {
  width: 50%;
  font-size: 24px;
  color: #000000;
  text-align: center;
}

.ctas {
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cta__1 {
  font-size: 16px;
  color: white;
  padding: 8px;
  background-color: #000000;
  text-align: center;
}

/* =============================================
   FOOTER SPLIT
   ============================================= */
.footer-split {
  height: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-split__left {
  height: 100%;
  width: auto;
  background-color: #404742;
  padding: 40px 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.footer-split__right {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  position: relative;
  background-image: url("../assets/images/footer/footer-image.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 24px;
  padding-left: 40px;
}

.footer__info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.footer-split__cta-title {
  font-size: 48px;
  font-weight: 500;
  color: #ddd;
  margin-bottom: 6px;
}

.footer__title {
  font-size: 48px;
  color: #fffefe;
}

.footer__desc {
  font-size: 24px;
  line-height: 29px;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer__nav {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__contact {
  margin-bottom: 20px;
}

.footer__contact-label {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.footer__contact-email {
  font-size: 14px;
  color: #ffffff;
  list-style: none;
  margin-bottom: 8px;
}

.footer__contact-note {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 8px;
}

/* =============================================
   FOOTER — LEGAL LINKS
   ============================================= */
.footer__legal {
  margin-bottom: 20px;
}

.footer__legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__legal-links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal-links li a:hover {
  color: #ffffff;
}

.footer__bottom {
  height: auto;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.footer__logo {
  height: 70px;
  width: auto;
}

.footer__copy {
  font-size: 10px;
  color: #ffffff;
}

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .navbar {
    height: 70px;
    padding: 12px 24px;
  }

  .navbar__logo {
    width: 80px;
    height: 60px;
  }

  .navbar__links {
    gap: 12px;
  }

  .navbar__link {
    font-size: 13px;
  }

  .hero {
    padding: 40px 32px 80px;
  }

  .hero__title {
    font-size: 44px;
    width: 55%;
  }

  .hero__right {
    width: 420px;
  }

  .hero__sub {
    font-size: 18px;
  }

  .who {
    padding: 80px 32px;
    gap: 60px;
  }

  .who__title {
    font-size: 38px;
    min-width: 200px;
  }

  .who__content {
    width: 65%;
  }

  .who__block-text {
    font-size: 18px;
  }

  .market-transformation {
    height: auto;
    padding: 80px 32px;
  }

  .market-top__title {
    font-size: 38px;
  }

  .market-top__subtitle {
    width: 70%;
    font-size: 18px;
  }

  .market-info__container {
    width: 420px;
  }

  .market-bottom__title {
    font-size: 20px;
  }

  .market-bottom__subtitle {
    font-size: 15px;
  }

  .what {
    padding: 80px 32px;
  }

  .what-info__title {
    font-size: 38px;
  }

  .what-info__subtitle {
    width: 50%;
    font-size: 18px;
  }

  .card__img {
    height: 140px;
    width: 140px;
  }

  .card__title {
    font-size: 20px;
  }

  .card__subtitle {
    font-size: 14px;
  }

  .areas {
    padding: 80px 32px;
  }

  .areas__info {
    padding-bottom: 60px;
  }

  .areas__title {
    font-size: 38px;
  }

  .areas__subtitle {
    font-size: 18px;
    width: 55%;
  }

  .areas-cards-container {
    flex-wrap: wrap;
  }

  .area__card {
    height: auto;
    min-height: 450px;
    width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
  }

  .leadership {
    padding: 80px 32px;
    flex-direction: column;
    gap: 48px;
  }

  .leadership__title {
    font-size: 38px;
    width: 100%;
  }

  .leadership__subtitle {
    width: 100%;
    font-size: 18px;
  }

  .leadership__rigth {
    width: 100%;
  }

  .global-presence {
    padding: 80px 32px;
    flex-direction: column;
    gap: 48px;
  }

  .global__title {
    font-size: 38px;
  }

  .global__subtitle {
    width: 100%;
    font-size: 18px;
  }

  .global__location-title {
    font-size: 18px;
  }

  .philosophy {
    height: auto;
    min-height: 500px;
    padding: 60px 32px;
  }

  .philosophy__title {
    font-size: 38px;
  }

  .philosophy__subtitle {
    width: 70%;
    font-size: 18px;
  }

  .cta-banner {
    height: auto;
    padding: 80px 32px;
  }

  .cta__title {
    width: 60%;
    font-size: 38px;
  }

  .cta__subtitle {
    width: 65%;
    font-size: 18px;
  }

  .footer-split {
    height: auto;
    flex-direction: column;
  }

  .footer-split__left {
    width: 100%;
    padding: 48px 32px 32px;
  }

  .footer-split__right {
    width: 100%;
    height: 300px;
    padding: 32px;
  }

  .footer-split__cta-title {
    font-size: 36px;
  }

  .footer__title {
    font-size: 36px;
  }

  .footer__desc {
    font-size: 18px;
  }
}

.footer__sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.footer__sitemap-links li a:hover {
  color: #ffffff;
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  .navbar {
    height: 64px;
    padding: 0 20px;
  }

  .navbar__logo {
    width: 70px;
    height: 54px;
  }

  .navbar__links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 16px 0;
    overflow-y: auto;
    z-index: 9998;
  }

  .navbar__links--open {
    display: flex;
  }

  .navbar__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .navbar__link {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    color: #111;
    text-decoration: none;
    height: auto;
  }

  .navbar__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    display: none;
    background: rgba(0, 0, 0, 0.03);
    min-width: 0;
    width: 100%;
  }

  .navbar__dropdown--active {
    display: flex;
    transform: none;
  }

  .navbar__dropdown-row {
    padding: 12px 32px;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }

  .navbar__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .navbar__hamburger--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar__hamburger--open span:nth-child(2) {
    opacity: 0;
  }

  .navbar__hamburger--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 20px 60px;
    align-items: flex-end;
  }

  .hero__bottom {
    flex-direction: column;
    gap: 32px;
  }

  .hero__title {
    width: 100%;
    font-size: 32px;
  }

  .hero__right {
    width: 100%;
  }

  .hero__sub {
    font-size: 16px;
  }

  .who {
    padding: 60px 20px;
    gap: 40px;
  }

  .who__info {
    flex-direction: column;
    gap: 20px;
  }

  .who__title {
    font-size: 32px;
  }

  .who__content {
    width: 100%;
  }

  .who__block-text {
    font-size: 16px;
  }

  .who__value-chip {
    font-size: 14px;
    padding: 6px 12px;
  }

  .market-transformation {
    height: auto;
    padding: 60px 20px;
  }

  .market-top__title {
    font-size: 32px;
  }

  .market-top__subtitle {
    width: 100%;
    font-size: 16px;
  }

  .market-info__bottom {
    justify-content: flex-start;
  }

  .market-info__container {
    width: 100%;
  }

  .market-bottom__title {
    font-size: 18px;
  }

  .market-bottom__subtitle {
    font-size: 14px;
  }

  .what {
    padding: 60px 20px;
  }

  .what__info {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 48px;
  }

  .what-info__title {
    font-size: 32px;
  }

  .what-info__subtitle {
    width: 100%;
    font-size: 16px;
  }

  .what-cards__row {
    flex-direction: column;
  }

  .what__card {
    width: 100%;
  }

  .card__img {
    height: 120px;
    width: 120px;
  }

  .card__title {
    font-size: 18px;
  }

  .card__subtitle {
    font-size: 14px;
  }

  .areas {
    padding: 60px 20px;
  }

  .areas__info {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 40px;
  }

  .areas__title {
    font-size: 32px;
  }

  .areas__subtitle {
    width: 100%;
    font-size: 16px;
  }

  .areas-cards-container {
    flex-direction: column;
  }

  .area__card {
    height: 600px;
    width: 100%;
    height: auto;
  }

  .area-card__title {
    font-size: 20px;
  }

  .area-card__subtitle {
    font-size: 14px;
  }

  .leadership {
    padding: 60px 20px;
    flex-direction: column;
    gap: 40px;
  }

  .leadership__left {
    width: 100%;
  }

  .leadership__title {
    width: 100%;
    font-size: 32px;
  }

  .leadership__subtitle {
    width: 100%;
    font-size: 16px;
  }

  .leadership__rigth {
    width: 100%;
  }

  .leadership__card {
    flex-direction: column;
  }

  .leadership-card__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }

  .leadership-card__title {
    font-size: 18px;
  }

  .leadership-card__subtitle {
    font-size: 13px;
  }

  .global-presence {
    padding: 60px 20px;
    flex-direction: column;
    gap: 32px;
  }

  .global__title {
    font-size: 32px;
  }

  .global__subtitle {
    width: 100%;
    font-size: 16px;
  }

  .global__location-title {
    font-size: 16px;
  }

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

  .philosophy {
    height: auto;
    min-height: 400px;
    padding: 60px 20px;
  }

  .philosophy__title {
    font-size: 32px;
  }

  .philosophy__subtitle {
    width: 100%;
    font-size: 16px;
  }

  .cta-banner {
    height: auto;
    padding: 60px 20px;
  }

  .cta__title {
    width: 100%;
    font-size: 28px;
  }

  .cta__subtitle {
    width: 100%;
    font-size: 16px;
  }

  .ctas {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .cta__1 {
    text-align: center;
    width: 100%;
    font-size: 14px;
  }

  .footer-split {
    height: auto;
    flex-direction: column;
  }

  .footer-split__left {
    width: 100%;
    padding: 48px 20px 32px;
  }

  .footer-split__right {
    width: 100%;
    height: 250px;
    padding: 24px 20px;
  }

  .footer-split__cta-title {
    font-size: 28px;
  }

  .footer__title {
    font-size: 28px;
  }

  .footer__desc {
    font-size: 16px;
  }

  .footer__nav {
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 48px;
  }

  .footer__legal-links {
    gap: 8px;
  }
}
