body {
  background-color: #0a0a1a;
}

.platform-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(45, 21, 64, 0.7), rgba(45, 21, 64, 0.7)),
    url("../assets/background.png") no-repeat center 20%;
  background-size: cover;
}

.platform-hero h1 {
  font-family: "Ubuntu", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.platform-content {
  padding: 100px 0;
  background-color: #ffffff;
  opacity: 1;
}

.section-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #2d1540;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
  line-height: 1.3;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  opacity: 0;
  animation: contentFadeIn 1s ease-out 0.3s forwards;
  margin-bottom: 100px;
}

.content-grid:last-child {
  margin-bottom: 0;
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.platform-image {
  animation: fadeInLeft 1s ease-out 0.6s both;
}

.platform-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.content-text {
  padding-right: 40px;
  animation: fadeInRight 1s ease-out 0.8s both;
  text-align: center;
}

.content-text h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #2d1540;
  margin-bottom: 40px;
  line-height: 1.3;
  text-align: center;
}

.content-text p {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #2d1540;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.content-text strong {
  font-weight: 700;
}

.second-grid .content-text {
  order: 1;
}

.second-grid .platform-image {
  order: 2;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .content-text {
    padding-right: 0;
    text-align: center;
    order: 2;
  }

  .platform-image {
    order: 1;
  }

  .second-grid .content-text {
    order: 2;
  }

  .second-grid .platform-image {
    order: 1;
  }
}

@media (max-width: 768px) {
  .platform-hero {
    height: 300px;
    margin-top: 76px;
  }

  .platform-hero h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 60px;
    padding: 0 20px;
  }

  .platform-content {
    padding: 60px 0;
  }

  .content-text h2 {
    font-size: 28px;
  }

  .content-text p {
    font-size: 20px;
  }
}
