    body{
        font-family: 'Roboto', sans-serif;
        }
    .promo-materials-section {
        background-color: #1c1c1c;
        color: #fff;
        padding: 10px 20px;
        margin-bottom: 50px;
    }

    .promo-materials-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: center;
      gap: 0px;
    }

    .promo-materials-text {
        display: inline-block;
        gap: 0px;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0px;
    }

    .promo-materials-text h1 {
        font-size: 50px;
        margin: 50px 0 20px 0;
    }

    .promo-materials-text p {
        margin: 0; /* убираем все отступы */
    }
    .promo-materials-buttons {
      display: flex;
      gap: 25px;          /* Расстояние между кнопками */
      margin: 40px 0 40px 0;
    }

    .materials-btn {
      display: inline-block;
      padding: 15px 25px;
      border: none;
      border-radius: 15px;
      font-size: 20px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none; /* для ссылок */
      text-align: center;
    }

    .btn-secondary {
      background-color: transparent; /* Прозрачная кнопка */
      color: #007bff;
      border: 2px solid #007bff;
    }

    .btn-secondary:hover {
      background-color: #007bff;
      color: #fff;
    }

    /*Блок FDM*/
    .fdm-section {
      margin-top: 0px;
      display: flex;
      justify-content: center;
      align-items: center;        /* Вертикально выравниваем по центру */
      min-height: 450px;
    }

    .fdm-container {
      max-width: 1200px; /* или другая желаемая ширина */
      width: 100%;
      display: flex;
      align-items: stretch;
      gap: 50px;         /* Расстояние между картинкой и текстом */
    }

    .fdm-image, .fdm-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Блок с картинкой */
    .fdm-image {
      flex: 0 0 400px;          /* Задаём, чтобы блок растягивался */
      display: flex;
      height: 450px;
      align-items: center;
      justify-content: flex-end;
    }

    .fdm-image img {
      max-width: 100%;
      height: auto;
      border-radius: 20px 20px 20px 20px; /* Опционально: скругление углов */
    }

    .fdm-content {
      flex: 1;
      display: flex;
      flex-direction: column; /* Ставим заголовок, список и кнопки друг под другом */
      justify-content: center;
      background-color: #ffffff;
      align-self: center;
      margin-top: 0px;
    }

    .fdm-content h2 {
      font-size: 100px;
      color: #2966f3;
      margin-bottom: 10px;
      margin-left: 20px;     /* добавляем отступ, как у h2 и p */
      line-height: 0.9;       /* немного поднимаем вверх */
    }

    .fdm-content h3 {
      font-size: 25px;
      margin-left: 20px;
      display: flex;
      justify-content: flex-start;
    }

    .fdm-content p {
      margin-top: 0px;
      font-size: 14px;
      margin-left: 20px;
      line-height: 1.4;
      justify-content: flex-start;
    }

    /* секция разновидности пластиков */
    .fdm-choise{
      margin-top: 100px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      height: auto;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-evenly;
      flex-wrap: wrap;
    }

    .fdm-choise-block{
      padding: 30px 20px;
      width: 500px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      margin-bottom: 100px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      border-radius: 20px;

    }

/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
    .promo-materials-section {
        padding: 10px;
    }

    .promo-materials-container {
        flex-direction: column;
        align-items: center;
    }

    .promo-materials-text h1 {
        font-size: 45px;
        text-align: center;
    }

    .promo-materials-text p {
        font-size: 14px;
        text-align: left;
        padding-left: 5px;
        text-align: justify;
    }

    .materials-btn{
      max-width: 300px;
    }
    .fdm-section {
        min-height: auto;
        padding: 20px 0;
    }

    .fdm-container {
        flex-direction: column;
        gap: 20px;
    }

    .fdm-image {
        flex: 1;
        width: 100%;
        height: auto;
    }

    .fdm-content h2 {
        font-size: 48px;
    }

    .fdm-choise {
        flex-direction: column;
        flex-wrap: wrap;
        margin-top: 50px;
    }

    .fdm-choise-block {
      max-width: 300px;
        width: 100%;
        margin-bottom: 20px;
        padding: 20px 10px;
    }
}

@media (max-width: 480px) {
    .promo-materials-section {
        padding: 5px;
    }

    .promo-materials-text h1 {
        font-size: 24px;
    }

    .promo-materials-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .materials-btn {
        max-width: 100%;
    }

    .fdm-content h2 {
        font-size: 36px;
    }

    .fdm-content h3 {
        font-size: 20px;
    }

    .fdm-content p {
        font-size: 12px;
    }
}
