/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
@font-face {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/lato-regular.woff2") format("woff2");
}
@font-face {
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/lato-bold.woff2") format("woff2");
}

* {
  box-sizing: border-box;
  font-family: Lato, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  transition: all 0.3s ease;
}
html {
  font-size: 1rem;
  font-family: Lato, sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
section[id] {
  scroll-margin-top: 100px;
}
@media (min-width: 2401px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 2201px) and (max-width: 2400px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 1901px) and (max-width: 2200px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 1500px) and (max-width: 1900px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 1500px) and (min-width: 1300px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 1299px) {
  html {
    font-size: 11px;
  }
}
::-webkit-scrollbar,
html ::-webkit-scrollbar {
  height: 1rem;
  width: 1rem;
}
::-webkit-scrollbar-track,
html ::-webkit-scrollbar-track {
  background: #f5f1f1;
}
::-webkit-scrollbar-thumb,
html ::-webkit-scrollbar-thumb {
  background-color: #452e24;
  border-radius: 1rem;
  border: 1px solid #e6e6f0;
}
body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: Lato;
  overflow-y: auto;
  overflow-x: auto;
}
.main {
  width: 100%;
  min-height: calc(100vh - 60px);
  position: relative;
  flex-grow: 2;
}
a,
button {
  text-decoration: none;
  cursor: pointer;
}
ul {
  list-style: none;
}
img {
  width: 100%;
}

.text_center {
  text-align: center;
}

:root {
  --runtoys_primary-color: #4a90e2;
  --runtoys_secondary-color: #2c3e50;
  --runtoys_accent-color: #e74c3c;
  --runtoys_background-dark: #1a1a1a;
  --runtoys_background-light: #2d2d2d;
  --runtoys_text-light: #ffffff;
  --runtoys_text-gray: #cccccc;
  --runtoys_border-color: #404040;
  --runtoys_shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --runtoys_transition: all 0.3s ease;
}

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

body {
  font-family: "Arial", sans-serif;
  background-color: var(--runtoys_background-dark);
  color: var(--runtoys_text-light);
  line-height: 1.6;
  min-width: 280px;
}

.runtoys_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.runtoys_title {
  font-size: 2.8rem;
  color: var(--runtoys_primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.runtoys_subtitle {
  font-size: 1.8rem;
  color: var(--runtoys_primary-color);
  margin-bottom: 1rem;
}

.runtoys_text {
  font-size: 1.4rem;
  color: var(--runtoys_text-gray);
  margin-bottom: 1rem;
}

.runtoys_button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.4rem;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--runtoys_transition);
  cursor: pointer;
  border: none;
  font-weight: 600;
}

.runtoys_button--primary {
  background-color: var(--runtoys_primary-color);
  color: var(--runtoys_text-light);
}

.runtoys_button--primary:hover {
  background-color: #357abd;
  transform: translateY(-2px);
  box-shadow: var(--runtoys_shadow);
}

.runtoys_button--secondary {
  background-color: transparent;
  color: var(--runtoys_primary-color);
  border: 2px solid var(--runtoys_primary-color);
}

.runtoys_button--secondary:hover {
  background-color: var(--runtoys_primary-color);
  color: var(--runtoys_text-light);
  transform: translateY(-2px);
}

.runtoys_header {
  background: linear-gradient(
    135deg,
    var(--runtoys_background-dark) 0%,
    var(--runtoys_background-light) 100%
  );
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--runtoys_shadow);
  overflow: visible;
}

.runtoys_header__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 20px;
}

.runtoys_header__logo {
  text-align: center;
}

.runtoys_header__logo .runtoys_title {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.runtoys_header__logo .runtoys_subtitle {
  font-size: 1.2rem;
  margin-bottom: 0;
  text-align: left;
}

.runtoys_header__nav {
  position: relative;
  overflow: visible;
  flex: 1;
  display: flex;
  justify-content: center;
}

.runtoys_header__menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--runtoys_primary-color);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: var(--runtoys_transition);
  order: 3;
}

.runtoys_header__menu-toggle:hover {
  background-color: var(--runtoys_background-light);
}

.runtoys_header__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 30px;
}

.runtoys_header__menu-item {
  position: relative;
}

.runtoys_header__menu-link {
  color: var(--runtoys_text-light);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 8px;
  transition: var(--runtoys_transition);
  position: relative;
}

.runtoys_header__menu-link:hover {
  color: var(--runtoys_primary-color);
  background-color: var(--runtoys_background-light);
}

.runtoys_header__menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--runtoys_primary-color);
  transition: var(--runtoys_transition);
  transform: translateX(-50%);
}

.runtoys_header__menu-link:hover::after {
  width: 80%;
}

.runtoys_header__menu-link.active {
  color: var(--runtoys_primary-color);
  background-color: var(--runtoys_background-light);
  font-weight: 600;
}

.runtoys_header__menu-link.active::after {
  width: 80%;
}

.runtoys_main {
  min-height: 70vh;
  padding: 40px 0;
}

.runtoys_hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
}

.runtoys_hero__content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.runtoys_hero__title {
  font-size: 3.2rem;
  margin-bottom: 2rem;
}

.runtoys_hero__text {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.runtoys_hero__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.runtoys_hero__image-container {
  display: flex;
  justify-content: center;
  flex: 1;
  min-width: 300px;
}

.runtoys_hero__image {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: var(--runtoys_shadow);
  transition: var(--runtoys_transition);
}

.runtoys_hero__image:hover {
  transform: scale(1.05);
}

.runtoys_footer {
  background-color: var(--runtoys_background-light);
  padding: 40px 0 20px;
  border-top: 2px solid var(--runtoys_border-color);
}

.runtoys_footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.runtoys_footer__section {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.runtoys_footer__title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.runtoys_footer__subtitle {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.runtoys_footer__text {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.runtoys_footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.runtoys_footer__contact {
  color: var(--runtoys_text-gray);
  text-decoration: none;
  font-size: 1.4rem;
  transition: var(--runtoys_transition);
}

.runtoys_footer__contact:hover {
  color: var(--runtoys_primary-color);
}

.runtoys_footer__address {
  font-size: 1.4rem;
  color: var(--runtoys_text-gray);
  margin: 0;
}

.runtoys_footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.runtoys_footer__link {
  color: var(--runtoys_text-gray);
  text-decoration: none;
  font-size: 1.4rem;
  transition: var(--runtoys_transition);
}

.runtoys_footer__link:hover {
  color: var(--runtoys_primary-color);
}

.runtoys_footer__bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--runtoys_border-color);
}

.runtoys_footer__copyright {
  font-size: 1.2rem;
  color: var(--runtoys_text-gray);
  margin: 0;
}

@media (max-width: 768px) {
  .runtoys_header__content {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .runtoys_header__nav {
    order: 2;
    flex: 0;
  }

  .runtoys_header__menu-toggle {
    display: block;
    order: 3;
  }

  .runtoys_header__menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 15px;
    right: 15px;
    background-color: var(--runtoys_background-light);
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--runtoys_shadow);
    z-index: 1001;
    max-height: 80vh;
    width: auto;
  }

  .runtoys_header__menu.active {
    display: flex;
  }

  .runtoys_header__menu-item {
    width: 100%;
    text-align: center;
  }

  .runtoys_header__menu-link {
    display: block;
    width: 100%;
    padding: 15px;
  }

  .runtoys_hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .runtoys_hero__content {
    order: 2;
  }

  .runtoys_hero__image-container {
    order: 1;
  }

  .runtoys_hero__title {
    font-size: 2.4rem;
  }

  .runtoys_hero__text {
    font-size: 1.4rem;
  }

  .runtoys_footer__content {
    flex-direction: column;
    align-items: center;
  }

  .runtoys_footer__section {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .runtoys_container {
    padding: 0 15px;
  }

  .runtoys_title {
    font-size: 2.2rem;
  }

  .runtoys_hero__title {
    font-size: 2rem;
  }

  .runtoys_hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .runtoys_button {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .runtoys_header__content {
    gap: 10px;
  }

  .runtoys_header__menu {
    max-height: 70vh;
    padding: 15px;
    left: 10px;
    right: 10px;
    top: 70px;
  }

  .runtoys_header__menu-link {
    padding: 12px;
    font-size: 1.3rem;
  }

  .runtoys_header__menu-toggle {
    font-size: 1.8rem;
    padding: 8px;
  }
}

.runtoys_thanks {
  padding: 100px 0;
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.runtoys_thanks__icon {
  font-size: 6rem;
  margin-bottom: 30px;
  animation: runtoys_thanks__bounce 2s infinite;
}

@keyframes runtoys_thanks__bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.runtoys_thanks .runtoys_title {
  margin-bottom: 20px;
}

.runtoys_thanks .runtoys_text {
  font-size: 1.6rem;
  margin-bottom: 40px;
  max-width: 500px;
}

.runtoys_thanks .runtoys_button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.4rem;
  margin-top: 20px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .runtoys_thanks {
    padding: 60px 0;
  }

  .runtoys_thanks__icon {
    font-size: 5rem;
  }

  .runtoys_thanks .runtoys_text {
    font-size: 1.4rem;
  }

  .runtoys_thanks .runtoys_button {
    padding: 12px 24px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .runtoys_thanks {
    padding: 40px 0;
  }

  .runtoys_thanks__icon {
    font-size: 4rem;
  }

  .runtoys_thanks .runtoys_text {
    font-size: 1.3rem;
  }
}

.runtoys_about-hero {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--runtoys_background-dark) 0%,
    var(--runtoys_background-light) 100%
  );
  border-radius: 20px;
  margin: 20px 0;
}

.runtoys_story {
  padding: 80px 15px;
  background: var(--runtoys_background-light);
}

.runtoys_story__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.runtoys_story__text {
  flex: 1;
  min-width: 300px;
}

.runtoys_story__milestones {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.runtoys_story__milestone {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--runtoys_background-dark);
  border-radius: 15px;
  border-left: 4px solid var(--runtoys_primary-color);
  transition: var(--runtoys_transition);
}

.runtoys_story__milestone:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.runtoys_story__year {
  font-size: 2rem;
  font-weight: bold;
  color: var(--runtoys_primary-color);
  min-width: 80px;
}

.runtoys_story__milestone-text {
  font-size: 1.4rem;
  color: var(--runtoys_text-gray);
  margin: 0;
}

.runtoys_story__image-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.runtoys_story__image {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: var(--runtoys_shadow);
  transition: var(--runtoys_transition);
}

.runtoys_story__image:hover {
  transform: scale(1.05) rotate(1deg);
}

.runtoys_team {
  padding: 80px 15px;
  background: linear-gradient(
    45deg,
    var(--runtoys_background-dark) 0%,
    var(--runtoys_background-light) 100%
  );
}

.runtoys_team__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.runtoys_team__member {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: var(--runtoys_background-light);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--runtoys_transition);
  position: relative;
}

.runtoys_team__member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.runtoys_team__avatar {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.runtoys_team__avatar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(74, 144, 226, 0.1),
    transparent
  );
  opacity: 0;
  transition: var(--runtoys_transition);
}

.runtoys_team__member:hover .runtoys_team__avatar::before {
  opacity: 1;
}

.runtoys_team__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--runtoys_transition);
}

.runtoys_team__member:hover .runtoys_team__avatar-image {
  transform: scale(1.1);
}

.runtoys_team__info {
  padding: 25px;
}

.runtoys_team__name {
  font-size: 2rem;
  color: var(--runtoys_primary-color);
  margin-bottom: 5px;
}

.runtoys_team__position {
  font-size: 1.4rem;
  color: var(--runtoys_accent-color);
  font-weight: bold;
  margin-bottom: 15px;
}

.runtoys_team__description {
  font-size: 1.3rem;
  color: var(--runtoys_text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.runtoys_team__specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.runtoys_team__specialty {
  background: var(--runtoys_background-dark);
  color: var(--runtoys_primary-color);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 1.1rem;
  border: 1px solid var(--runtoys_primary-color);
  transition: var(--runtoys_transition);
}

.runtoys_team__specialty:hover {
  background: var(--runtoys_primary-color);
  color: white;
}

.runtoys_benefits {
  padding: 80px 15px;
  background: var(--runtoys_background-light);
}

.runtoys_benefits__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.runtoys_benefits__item {
  min-width: 280px;

  width: 45%;
  background: var(--runtoys_background-dark);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--runtoys_transition);
  position: relative;
  overflow: hidden;
}

.runtoys_benefits__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--runtoys_primary-color),
    var(--runtoys_accent-color)
  );
  transform: scaleX(0);
  transition: var(--runtoys_transition);
}

.runtoys_benefits__item:hover::before {
  transform: scaleX(1);
}

.runtoys_benefits__item:hover {
  border-color: var(--runtoys_primary-color);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.runtoys_benefits__icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

.runtoys_benefits__title {
  font-size: 2rem;
  color: var(--runtoys_primary-color);
  margin-bottom: 20px;
}

.runtoys_benefits__description {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--runtoys_text-gray);
}

.runtoys_benefits__list {
  list-style: none;
  text-align: left;
}

.runtoys_benefits__list li {
  font-size: 1.3rem;
  color: var(--runtoys_text-gray);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.runtoys_benefits__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--runtoys_primary-color);
  font-weight: bold;
}

.runtoys_achievements {
  padding: 80px 15px;
  background: linear-gradient(
    135deg,
    var(--runtoys_background-dark) 0%,
    var(--runtoys_background-light) 100%
  );
}

.runtoys_achievements__content {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.runtoys_achievements__left {
  flex: 1;
  min-width: 300px;
}

.runtoys_achievements__image-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.runtoys_achievements__image {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: var(--runtoys_shadow);
  transition: var(--runtoys_transition);
}

.runtoys_achievements__image:hover {
  transform: scale(1.05) rotate(2deg);
}

.runtoys_achievements__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.runtoys_achievements__stat {
  text-align: center;
  padding: 30px;
  background: var(--runtoys_background-light);
  border-radius: 20px;
  min-width: 200px;
  transition: var(--runtoys_transition);
  position: relative;
  overflow: hidden;
}

.runtoys_achievements__stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(74, 144, 226, 0.05),
    transparent
  );
  transform: translateX(-100%);
  transition: var(--runtoys_transition);
}

.runtoys_achievements__stat:hover::before {
  transform: translateX(100%);
}

.runtoys_achievements__stat:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.runtoys_achievements__number {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--runtoys_primary-color);
  margin-bottom: 10px;
  display: block;
}

.runtoys_achievements__label {
  font-size: 1.4rem;
  color: var(--runtoys_text-gray);
  margin: 0;
}

.runtoys_achievements__awards {
  text-align: center;
}

.runtoys_achievements__awards-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.runtoys_achievements__award {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--runtoys_background-light);
  border-radius: 15px;
  transition: var(--runtoys_transition);
  border: 2px solid transparent;
}

.runtoys_achievements__award:hover {
  border-color: var(--runtoys_primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.runtoys_achievements__award-icon {
  font-size: 3rem;
  min-width: 60px;
}

.runtoys_achievements__award-content {
  text-align: left;
}

.runtoys_achievements__award-content h4 {
  font-size: 1.8rem;
  color: var(--runtoys_primary-color);
  margin-bottom: 5px;
}

.runtoys_achievements__award-content p {
  font-size: 1.3rem;
  color: var(--runtoys_text-gray);
  margin: 0;
}

@media (max-width: 768px) {
  .runtoys_story__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .runtoys_story__milestone {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .runtoys_story__year {
    min-width: auto;
  }

  .runtoys_team__grid {
    flex-direction: column;
    align-items: center;
  }

  .runtoys_team__member {
    width: 100%;
    max-width: 400px;
  }

  .runtoys_benefits__grid {
    flex-direction: column;
    align-items: center;
  }

  .runtoys_benefits__item {
    width: 100%;
    max-width: 500px;
  }

  .runtoys_achievements__stats {
    flex-direction: column;
    align-items: center;
  }

  .runtoys_achievements__stat {
    width: 100%;
    max-width: 300px;
  }

  .runtoys_achievements__content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .runtoys_achievements__left {
    width: 100%;
  }

  .runtoys_achievements__image-container {
    width: 100%;
  }

  .runtoys_achievements__awards-list {
    flex-direction: column;
    align-items: center;
  }

  .runtoys_achievements__award {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .runtoys_team__member,
  .runtoys_benefits__item,
  .runtoys_achievements__award {
    min-width: 280px;
  }

  .runtoys_team__specialties {
    justify-content: center;
  }

  .runtoys_achievements__award {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .runtoys_achievements__award-content {
    text-align: center;
  }
}
