:root {
  --hob-main-blue: #3498db;
  --hob-main-red: #d52b1e;
  --hob-bg: #e2f3ff;
}

.heroes-of-belarus {
  max-width: 830px;
  width: 100%;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 20px;
}

.hob__header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--hob-bg);
}

.hob__title {
  color: var(--hob-main-blue);
  font-size: 40px;
  margin-bottom: 10px;
}

.hob__subtitle {
  color: #666;
  font-size: 18px;
  margin-bottom: 20px;
}

.hob__info {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  border-left: 4px solid var(--hob-main-blue);
}

.hob__info h2 {
  color: var(--hob-main-red);
  margin-bottom: 10px;
}

.hob__info p {
  margin-bottom: 10px;
}

.hero-count {
  background-color: var(--hob-main-red);
  color: var(--white);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 24px;
  font-weight: bold;
  margin-top: 10px;
}

/* Аккордеон стили */
.hob-accordion {
  width: 100%;
}

.hob-accordion__item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hob-accordion__header {
  background-color: #5dade2;
  color: white;
  transition: background-color 0.3s;
}

.hob-accordion__header:hover {
  background-color: #85c1e9;
}

.hob-accordion__header.active {
  background-color: #e74c3c;
}

.hob-accordion__header.active:hover {
  background-color: #de5344;
}

.hob-accordion__title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
}

.hob-accordion__title img {
  width: 24px;
}

.hob-accordion__icon {
  transition: transform 0.3s;
  font-size: 1.5rem;
}

.hob-accordion__header.active .hob-accordion__icon {
  transform: rotate(45deg);
}

.hob-accordion__content {
  max-height: 0;
  overflow: hidden;
  background-color: #f9f9f9;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
}

.hob-accordion__content.open {
  max-height: 5000px;
  padding: 20px;
}

.hob-hero {
  line-height: 1.7;
}

.hob-hero__container {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hob-hero__photo {
  width: 100%;
  max-width: 30%;
}

.hob-hero__photo img {
  width: 100%;
}

.hob-hero h3 {
  color: #2980b9;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--hob-bg);
}

.hob-hero p {
  margin-bottom: 15px;
}

.hob-hero-award {
  background-color: #f0f8ff;
  padding: 15px;
  border-radius: 5px;
  border-left: 3px solid #2d5b8a;
  margin-bottom: 16px;
}

.hob-hero-award strong {
  color: var(--hob-main-red);
}

.hob-hero-award ul {
  list-style: none;
  margin: 15px 0;
  padding-left: 0;
}

.hob-hero-award ul li {
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
  color: #444;
}

.hob-hero ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background-color: var(--hob-main-blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .heroes-of-belarus {
    padding: 20px;
  }

  .hob__title {
    font-size: 2rem;
  }

  .hob-accordion__header {
    font-size: 1.1rem;
    padding: 15px;
  }
}