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

body {
  font-family: "Arial", sans-serif;
  background: #0a0a0a;
  color: #fff;
}

.container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header {
  padding: 20px 0;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__list {
  display: flex;
  list-style: none;
}
.nav__item {
  margin-right: 20px;
}
.nav__link {
  color: #fff;
  text-decoration: none;
}
.nav__link:hover {
  color: #ff3b30;
}

.header__contact {
  font-weight: bold;
}

.hero {
  display: flex;
  align-items: center;
  padding: 50px 0;
}
.hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__content {
  max-width: 50%;
}
.hero__title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}
.hero__text {
  font-size: 18px;
  margin-bottom: 30px;
}
.hero__button {
  background: #ff3b30;
  padding: 15px 25px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}
.hero__button:hover {
  background: #fc0d00;
}
.hero__image {
  max-width: 40%;
}
.hero__image img {
  width: 100%;
}

.course-results {
  background-color: rgb(214, 209, 209);
  padding: 40px;
  text-align: center;
}
.course-results__title {
  font-size: 24px;
  color: #222;
  margin-bottom: 20px;
}
.course-results__items {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.course-results__item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
}
.course-results__item-title {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}
.course-results__item-text {
  font-size: 14px;
  color: #555;
}
.course-results__item--certificate {
  border-top: 4px solid #eb4d4d;
}
.course-results__item--knowledge {
  border-top: 4px solid #eb4d4d;
}
.course-results__item--practice {
  border-top: 4px solid #eb4d4d;
}

.packages {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  margin: 0;
  padding: 0;
  color: #111;
}

.packages {
  text-align: center;
  padding: 50px 20px;
}
.packages__title {
  font-size: 24px;
  margin-bottom: 20px;
}
.packages__list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.package {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 220px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}
.package:hover {
  transform: translateY(-5px);
}
.package--pro {
  background: #111;
  color: #fff;
}
.package__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.package__price {
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0;
}
.package__desc {
  font-size: 14px;
  margin-bottom: 15px;
}
.package__btn {
  background: #c00;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
}
.package__btn:hover {
  background: #a00;
}

.form-section {
  background: #d00;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}
.form-section__title {
  font-size: 22px;
  font-weight: bold;
}
.form-section__subtitle {
  font-size: 16px;
  margin-bottom: 20px;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.form__input {
  padding: 10px;
  width: 80%;
  max-width: 300px;
  border: none;
  border-radius: 5px;
}
.form__btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  width: 80%;
  max-width: 300px;
}
.form__btn:hover {
  background: #2b2b2b;
}

.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 15px;
}
.footer__text {
  font-size: 18px;
  font-weight: bold;
  padding-right: 1300px;
}
.footer__copyright {
  font-size: 10px;
  margin-top: 5px;
  padding-right: 1300px;
}
.footer__phone {
  font-size: 16px;
  margin-top: 5px;
  padding-left: 1300px;
}

.info {
  background: #f8f8f8;
  padding: 50px 0;
  text-align: center;
  font-family: Arial, sans-serif;
}

.info__container {
  max-width: 900px;
  margin: 0px auto;
  text-align: center;
}
.info__title {
  font-size: 20px;
  font-weight: normal;
  color: #000;
}
.info__title strong {
  font-weight: bold;
}
.info__stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat {
  flex: 1 1 22%;
  padding: 10px;
}
.stat__number {
  font-size: 36px;
  font-weight: bold;
  color: #d00;
  display: block;
}
.stat__text {
  font-size: 14px;
  color: #000;
}

.trainers {
  background: #f8f8f8;
  padding: 50px 0;
  text-align: center;
  font-family: Arial, sans-serif;
}
.trainers__container {
  max-width: 900px;
  margin: 0 auto;
}
.trainers__title {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: bold;
  color: black;
}
.trainers__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.trainers__controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #333;
}
.trainers__btn {
  background: none;
  border: 1px solid #ffffff;
  color: #333;
  padding: 8px 12px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}
.trainers__btn:hover {
  background: #ffffff;
  color: #d0021b;
}

.trainer {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 22%;
}
.trainer__photo {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}
.trainer__name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #000;
}
.trainer__desc {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  color: #000;
}
.trainer__link {
  font-size: 14px;
  color: #d0021b;
  text-decoration: none;
  font-weight: bold;
}
.trainer__link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .trainers__list {
    flex-direction: column;
    align-items: center;
  }
  .trainers__btn {
    font-size: 16px;
    padding: 6px 10px;
  }
  .trainer {
    width: 80%;
  }
}