.global-title {
  font-size: 2.3rem;
  line-height: normal;
  font-weight: 600;
}
@media (max-width: 1140px) {
  .global-title {
    font-size: 1.3rem;
  }
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  color: #2d2d2d;
  background-color: #FCFCFC;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: #2c52ff;
}
strong {
  font-weight: bold;
}
.hero {
  background: linear-gradient(135deg, #2c52ff, #6840ff);
  background: url("hero.png");
  background-size: cover;
  background-position: top center;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  flex-direction: column;
}
.hero__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 2rem;
}
@media (max-width: 1140px) {
  .hero__container {
    flex-direction: column;
  }
}
.hero__left {
  flex: 1;
  max-width: 600px;
}
.hero__logo {
  width: 200px;
  margin-bottom: 2rem;
}
.hero__title {
  font-size: 2.3rem;
  line-height: normal;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 1rem;
}
@media (max-width: 1140px) {
  .hero__title {
    font-size: 1.3rem;
  }
}
.hero__text {
  font-size: 1.125rem;
  color: #6b6b6b;
  margin-bottom: 2rem;
}
.hero__text strong {
  color: #2d2d2d;
}
.hero__button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #2c52ff;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.hero__button:hover {
  background: #002df8;
}
.hero__right {
  flex: 1;
  min-height: 400px;
  width: 100%;
  background: url(hero1.png) no-repeat center / contain;
}
.stats {
  display: flex;
  justify-content: space-around;
  background-color: #ffffff;
  padding: 2rem 0;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
}
@media (max-width: 480px) {
  .stats {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }
}
.stats__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 40px 60px;
}
@media (max-width: 1140px) {
  .stats__item {
    padding: 10px 20px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.stats__item img {
  width: 60px;
}
@media (max-width: 1140px) {
  .stats__item img {
    width: 35px;
  }
}
.stats__item__text strong {
  display: block;
  font-size: 1.5rem;
  color: #0B132A;
}
.stats__item__text span {
  color: #6b6b6b;
  display: block;
}
.core-services {
  padding: 4rem 2rem;
  background: #ffffff;
}
.core-services__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .core-services__container {
    flex-direction: column;
    text-align: center;
  }
}
.core-services__image {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}
.core-services__image img {
  width: 100%;
  height: auto;
  display: block;
}
.core-services__content {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}
@media (min-width: 1141px) {
  .core-services__content {
    text-align: right;
  }
}
.core-services__title {
  font-size: 2.3rem;
  line-height: normal;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 1rem;
}
@media (max-width: 1140px) {
  .core-services__title {
    font-size: 1.3rem;
  }
}
.core-services__text {
  font-size: 1.125rem;
  color: #6b6b6b;
  line-height: 1.6;
}
.core-services__text strong {
  color: #2d2d2d;
}
.features {
  padding: 4rem 2rem;
}
.features__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1140px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}
.features__card {
  background: white;
  border: 1px solid #e3e6eb;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.3s;
}
.features__card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}
.features__icon {
  width: 100%;
  height: 78px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: block;
}
.features__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.75rem;
}
.features__text {
  font-size: 1rem;
  color: #6b6b6b;
  line-height: 1.5;
}
.features__text strong {
  color: #2d2d2d;
}
.leadership {
  padding: 4rem 2rem;
}
.leadership__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 1140px) {
  .leadership__container {
    flex-direction: column-reverse;
    text-align: center;
  }
}
.leadership__content {
  flex: 1;
  max-width: 600px;
}
.leadership__title {
  font-size: 2.3rem;
  line-height: normal;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 1.5rem;
}
@media (max-width: 1140px) {
  .leadership__title {
    font-size: 1.3rem;
  }
}
.leadership__text {
  font-size: 1.125rem;
  color: #6b6b6b;
  line-height: 1.6;
}
@media (max-width: 1140px) {
  .leadership__text {
    font-size: 1rem;
  }
}
.leadership__image {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}
.leadership__image img {
  width: 100%;
  height: auto;
  display: block;
}
.vision {
  padding: 4rem 2rem;
}
.vision__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.vision__title {
  font-size: 2.3rem;
  line-height: normal;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 2rem;
  margin-top: 0;
}
@media (max-width: 1140px) {
  .vision__title {
    font-size: 1.3rem;
  }
}
.vision__box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 2rem 2rem;
}
@media (max-width: 1140px) {
  .vision__box {
    padding: 2rem 1.5rem;
  }
}
.vision__grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
}
@media (max-width: 1140px) {
  .vision__grid {
    flex-direction: column;
  }
}
.vision__item {
  flex: 1;
  padding: 0 1.5rem;
  border-right: 1px solid #e0e0e0;
}
.vision__item:last-child {
  border-right: none;
}
@media (max-width: 1140px) {
  .vision__item {
    padding: 1rem 0;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
  .vision__item:last-child {
    border-bottom: none;
  }
}
.vision__subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 1rem;
}
.vision__text {
  font-size: 1rem;
  color: #6b6b6b;
  line-height: 1.6;
}
.vision__text strong {
  color: #2d2d2d;
}
.operations {
  padding: 4rem 2rem;
}
.operations__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.operations__icon {
  position: absolute;
  top: -12rem;
  left: 0;
  width: 150px;
  height: auto;
}
@media (max-width: 1140px) {
  .operations__icon {
    display: none;
  }
}
.operations__title {
  font-size: 2.3rem;
  line-height: normal;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 2rem;
}
@media (max-width: 1140px) {
  .operations__title {
    font-size: 1.3rem;
  }
}
.operations__content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
  margin-bottom: 3rem;
}
@media (max-width: 1140px) {
  .operations__content {
    flex-direction: column;
    text-align: center;
  }
}
.operations__text {
  flex: 1;
  font-size: 1rem;
  color: #6b6b6b;
  line-height: 1.6;
}
.operations__text strong {
  color: #2d2d2d;
}
.operations__visual {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.board-visual {
  padding-bottom: 2rem;
  text-align: center;
}
.board-visual img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.location {
  background: linear-gradient(to top, #a28de4, #fcfcfc);
  padding: 0rem 2rem 5rem;
  position: relative;
}
.location__card {
  background: white;
  max-width: 1140px;
  margin: 0 auto 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: -250px;
}
.location__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.location__content {
  padding: 3rem 2rem;
  padding-top: 1rem;
}
.location__title {
  font-size: 2.3rem;
  line-height: normal;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 1rem;
  margin-top: 0;
}
@media (max-width: 1140px) {
  .location__title {
    font-size: 1.3rem;
  }
}
.location__text {
  font-size: 1rem;
  color: #6b6b6b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.location__button {
  background: #2c52ff;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}
.location__button:hover {
  background: #0331ff;
}
.footer {
  background: #f8f9fb;
  padding: 4rem 2rem;
  padding-top: 250px;
}
.footer__container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 1140px) {
  .footer__container {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
  }
}
.footer__logo {
  width: 200px;
  margin-bottom: 1rem;
}
.footer__description {
  color: #6b6b6b;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.footer__copyright {
  color: #6b6b6b;
  font-size: 0.85rem;
}
.footer__right {
  flex: 1;
  min-width: 200px;
}
@media (min-width: 1141px) {
  .footer__right {
    text-align: right;
  }
}
.footer__title {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #2d2d2d;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #6b6b6b;
}
