
/*кнопки*/

.conf-buttons .conf-button-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  padding: 0 10px;
  box-sizing: border-box;
  gap: 40px;
}

.conf-buttons .conf-btn {
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #007BFF;
  min-height: 44px;
  text-align: center;
  box-sizing: border-box;
  color: #007BFF;
  background-color: transparent;
  flex: 1;
  margin: 0 5px; /* небольшие отступы от краёв, если нужно */
}

/* Левая кнопка — обводка */
.conf-buttons .conf-btn-outline {
  background-color: white;
  color: #007BFF;
  border: 1px solid #007BFF;
}

/* Левая кнопка — hover: становится как правая */
.conf-buttons .conf-btn-outline:hover {
  background-color: #007BFF;
  color: white;
  border-color: #007BFF;
}

/* Правая кнопка — сплошная */
.conf-buttons .conf-btn-primary {
  background-color: #007BFF;
  color: white;
  border: none;
}

/* Правая кнопка — hover: становится как левая */
.conf-buttons .conf-btn-primary:hover {
  background-color: white;
  color: #007BFF;
  border: 1px solid #007BFF;
}

@media (max-width: 768px) {
.conf-buttons .conf-button-container {
    display: grid;
    justify-content: center;
    gap:15px;
 }
.conf-buttons .conf-btn {
    padding: 8px 12px;
 }
}


.card_uchastniki {
   display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    margin-top: 20px;
}

.card_obsuzhdeniya {
    padding: 20px 40px;
    flex: 1 1 30%;
    margin-top: 20px;
    box-shadow: 0px 4px 20px rgba(85, 94, 112, 0.1);
    border-radius: 20px;
    background-color: #e5f5ff;
}

/*блок с аудиторией*/

.audience-wrapper {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    margin-top: 0px;
}

.audience-title {
    color: #0066cc;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Обёртка для карточек — теперь используем grid */

.audience-card {
    padding: 20px 40px;
    flex: 1 1 30%;
    margin-top: 20px;
    box-shadow: 0px 4px 20px rgba(85, 94, 112, 0.1);
    border-radius: 20px;
}


/* Номера: без фона, затемнённые, крупные */
.audience-card-number {
    font-size: 50px;
    font-weight: bold;
    color: #e5f5ff;
}

/* Заголовок с отступом от номера */
.audience-card-title {
    margin-top: 0;
    margin-bottom: 12px;
    color: #005487;
    font-size: 1.1em;
}

/*.audience-card-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    line-height: 1.6;
    color: #333;
}
*/
.audience-card-list li {
    margin-bottom: 8px;
}

/*мероприятие ориентировано на*/

.blok_s_oriyentirovaniyem {
    margin-left: 20px;
    margin-top: 20px;
}
.blok_oriyentirovaniyem {
    padding: 10px 40px;
    flex: 1 1 30%;
    margin-top: 20px;
    box-shadow: 0px 4px 20px rgba(85, 94, 112, 0.1);
    border-radius: 10px;
    background-color: #0078c0;
    font-size: 20px;
    color: white;
    font-weight: bold;
}

@media (max-width: 768px) {
.blok_s_oriyentirovaniyem {
    margin-left: 25px;
}
}


/*что будет интересно*/

    /* Контейнер для блоков */
    .features-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 0;
    }

    /* Блоки с информацией */
    .feature-block {
      display: flex;
      background-color: #e6f5ff;
      border-radius: 12px;
      padding: 24px;
      margin-bottom: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      align-items: center;
    }

    .feature-block:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    }

    /* Левая часть — заголовок */
    .feature-title {
      flex: 1;
      font-size: 20px;
      color: #005b9c;
      margin-right: 20px;
      font-weight: bold;
      margin-left: 20px;
    }

    /* Правая часть — описание */
    .feature-text {
      flex: 2;
      color: #444;
      margin-top: 0;
    }

    /* Адаптивность для мобильных устройств */
    @media (max-width: 768px) {
      .feature-block {
        flex-direction: column;
        padding: 20px;
      }
      .feature-title {
        margin-right: 0;
        margin-bottom: 12px;
        font-size: 16px;
        margin-left: 0;
      }
      .feature-text {
        font-size: 15px;
      }
    }

/*мы приглашаем*/

.guests-wrapper {
    font-family: Arial, sans-serif;
}

.guests-wrapper h2 {
    color: #0066cc;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.guests-title {
    background-color: #0066cc;
    color: white;
    padding: 12px 12px;
    border-radius: 12px;
    margin: 0 0 12px;
    font-size: 1em;
    font-weight: bold;
    line-height: 1.4;
}

.guests-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-top: 20px !important;
}

.guests-list ul {
    padding-left: 20px;
    flex: 1;
}

.guests-list li {
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95em;
}

/* Адаптивность */
@media (max-width: 768px) {
    .guests-list {
        flex-direction: column;
    }

    .guests-list ul {
        min-width: auto;
    }
}

/*ключевые темы*/

.opisaniye_programmy {
    margin-top: auto;
    margin-left: 50px;
}

.topics-wrapper {
    font-family: Arial, sans-serif;
}

.topics-wrapper h2 {
    color: #005487;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.topic-card {
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.topic-number {
    font-size: 30px;
    color: #e5f5ff;
    font-weight: bold;
}

.topic-text {
    margin-top: 0;
    margin-left: 10px;
    color: #005487;
    font-weight: bold;
    font-size: 21px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .topic-card {
        padding: 12px;
        margin-bottom: 8px;
    }
    .topic-number {
        font-size: 30px;
        width: 28px;
        height: 28px;
    }
    .opisaniye_programmy {
    margin-top: 15px;
    margin-left: auto;
    }
    .topic-text {
    font-size: 15px;
    }
}

/*блок Кому будет интересно*/
.customers {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1rem;
	margin-top: 20px;
}

.customer-card {
	padding: 20px 40px;
	flex: 1 1 30%;
	margin-top: 20px;
	box-shadow: 0px 4px 20px rgba(85, 94, 112, 0.1);
}



@media (max-width: 1000px) {
	.customer-card {
		flex: 1 1 48%;
	}
}

@media (max-width: 767px) {
	.customer-card {
		flex: 1 1 100%;
	}
}


  .pmgf-card {
      border-radius: 12px;
      flex: 1 1 30%;
      margin-top: 20px;
      cursor: auto;
      box-shadow: 0px 4px 20px rgba(85, 94, 112, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
  }


  @media (max-width: 1000px) {
      .pmgf-card {
          flex: 1 1 48%;
      }
  }

  @media (max-width: 767px) {
      .pmgf-card {
          flex: 1 1 100%;
      }
  }

.card {
  position: relative;
  box-sizing: border-box;
  padding: 24px;
  border-radius: 12px;
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Элементам в карточке будет дано пространство между ними */
  height: 100%;
}

  .card-content {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 10px;
      height: 100%;
  }




.card__decorative {
  width: 156px;
  height: 109px;
  position: absolute;
  bottom: 0; /* Прибиваем к нижней части */
  right: 0; /* Прибиваем к правой части */
  border-bottom-right-radius: 12px;
}


.mesto {
   margin-top: 0px;
   color: #005487;
}

/*картинка*/

/* Уникальный класс для этой страницы — снижает риск конфликта */
    .page-specific-img-container img {
      width: 300px;
      cursor: pointer;
      border-radius: 8px;
      transition: transform 0.3s;
    }

    .page-specific-img-container img:hover {
      transform: scale(1.05);
    }

    /* Модальное окно — уникальные имена */
    #pageImageModal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      display: flex;
      justify-content: center;
      align-items: center;
    }

    #pageImageModalContent {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
    }

    #pageImageModalClose {
      position: absolute;
      top: 20px;
      right: 30px;
      color: #f1f1f1;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      background: none;
      border: none;
    }

    #pageImageModalClose:hover {
      color: #bbb;
    }
