.page-promotions {
  background-color: #000000;
  color: #FFFFFF;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px;
  margin-bottom: 40px;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px;
}

.page-promotions__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions__hero-title {
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-promotions__hero-description {
  color: #E5E5E5;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-promotions__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 150px;
  text-align: center;
  box-sizing: border-box;
}

.page-promotions__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-promotions__button--register:hover {
  background-color: #E0E0E0;
  transform: translateY(-2px);
}

.page-promotions__button--login,
.page-promotions__button--download {
  background-color: #FCBC45;
  color: #000000;
}

.page-promotions__button--login:hover,
.page-promotions__button--download:hover {
  background-color: #E0A030;
  transform: translateY(-2px);
}

.page-promotions__promotions-grid-section,
.page-promotions__download-app-section,
.page-promotions__why-phdream-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions__section-title {
  color: #FFFFFF;
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-promotions__section-description {
  color: #E5E5E5;
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions__promotion-card {
  background-color: #1A1A1A;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__promotion-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-height: 200px;
}

.page-promotions__card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-promotions__card-title {
  color: #FCBC45;
  font-size: 1.4em;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__card-text {
  color: #E5E5E5;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-promotions__card-button:hover {
  background-color: #E0A030;
}

.page-promotions__download-app-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  background-color: #111111;
  border-radius: 12px;
  margin-bottom: 40px;
}

.page-promotions__download-app-image-wrapper {
  width: 100%;
  max-width: 600px;
}

.page-promotions__download-app-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  min-height: 200px;
}

.page-promotions__download-app-content {
  max-width: 800px;
}

.page-promotions__why-phdream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__why-phdream-item {
  background-color: #1A1A1A;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promotions__why-phdream-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__item-title {
  color: #FCBC45;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-promotions__item-description {
  color: #E5E5E5;
  font-size: 0.9em;
}

@media (min-width: 769px) {
  .page-promotions__download-app-section {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 60px;
  }

  .page-promotions__download-app-content {
    flex: 1;
  }

  .page-promotions__download-app-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .page-promotions__download-app-image {
    max-width: 400px;
  }

  .page-promotions__hero-section {
    flex-direction: row;
    text-align: left;
    padding: 20px 40px;
    justify-content: center;
  }

  .page-promotions__hero-image-wrapper {
    flex: 1;
    order: 2;
    margin-left: 40px;
    margin-bottom: 0;
  }

  .page-promotions__hero-content {
    flex: 1;
    order: 1;
    padding: 0;
  }

  .page-promotions__hero-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__promotions-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__button {
    width: 100%;
    max-width: 250px;
  }

  .page-promotions__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-promotions__hero-image,
  .page-promotions__promotion-image,
  .page-promotions__download-app-image,
  .page-promotions__why-phdream-icon {
    max-width: 100%;
    height: auto;
  }

  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}

.page-promotions img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}