 
    .course-card {
        width: 100%;
        max-width: 1170px;
        margin: 0 auto 20px;
        padding: 20px;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        background: #f8f9fa;
        border-radius: 8px;
        border: 1px solid #ddd;
        flex-wrap: wrap; /* Позволяет элементам переноситься */
    }

    .course-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 1;
    }

    .course-title {
        font-size: 20px; /* Чуть меньше для мобильных */
        font-weight: bold;
    }

    .qualification {
        font-size: 16px;
        color: #444;
        margin-top: 5px;
    }

    .course-price {
        font-size: 22px;
        font-weight: bold;
        color: #a00;
        margin-top: 10px;
    }

    .course-action {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .price1 {
        background: #e7f3ff;
        padding: 12px 20px;
        border-radius: 5px;
        font-size: 16px; /* Чуть меньше */
        font-weight: bold;
        color: #004085;
        cursor: pointer;
        border: 1px solid #b0d4f1;
        width: auto;
        margin-top: 10px;
    }

    /* Адаптация под мобильные устройства */
    @media (max-width: 768px) {
        .course-card {
            flex-direction: column; /* Перестраиваем блоки вертикально */
            align-items: center;
            text-align: center;
            padding: 15px;
        }

        .course-info, .course-action {
            align-items: center;
            text-align: center;
        }

        .course-title {
            font-size: 18px;
        }

        .course-price {
            font-size: 20px;
        }

        .price1 {
            width: 100%; /* Кнопка на всю ширину */
        }
    } 
    
    
    
    
    
   
        /* Общие стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Контейнер с зеленым фоном */
        .content-container {
            width: 90%; /* Растягивается, но с небольшими отступами по бокам */
            max-width: 1350px;
            margin: 20px auto;
            background: linear-gradient(135deg, #2643bb, #90a5fa); /* Градиент */
            border-radius: 20px; /* Закругленные углы */
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            text-align: left;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Легкая тень */
        }

        /* Левая часть с текстом */
        .text-content {
            width: 50%;
        }

        .text-content h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
        }

        .text-content p {
            font-size: 1.2em;
        }
        
        
        /* Кнопка */
        .btn {
            margin-top: 20px;
            padding: 12px 25px;
            font-size: 1.2em;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #45a049;
        }
        

        /* Правая часть с изображением */
        .image-content {
            width: 40%;
            display: flex;
            justify-content: center;
        }

        .image-content img {
            max-width: 100%;
            height: auto;
            border-radius: 15px; /* Закругление углов у изображения */
        }
        
        
              /* Блоки с иконками */
        .icon-boxes {
            display: flex;
            justify-content: center;
            width: 100%;
            gap: 20px;
            margin-top: 0px;
            flex-wrap: wrap; /* Позволяет адаптироваться на мобильных */
        }

        .icon-box {
            background: rgba(255, 255, 255, 0.2);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            width: 30%;
            min-width: 180px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
        }

        .icon-box:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .icon-box i {
            font-size: 40px;
            margin-bottom: 10px;
        }

        .icon-box p {
            font-size: 0.7em;
        }
        

        /* Адаптация для мобильных устройств */
        @media (max-width: 768px) {
      .content-container {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            .text-content {
                width: 100%;
                margin-bottom: 20px;
            }

            .image-content {
                width: 100%;
            }
                        .btn {
                font-size: 1em;
                padding: 10px 20px;
            }
           .icon-boxes {
                flex-wrap: nowrap;
                overflow-x: auto; /* Горизонтальная прокрутка на маленьких экранах */
                justify-content: flex-start;
                padding-bottom: 10px;
            }

            .icon-box {
                flex: 0 0 auto;
                width: 30%;
                min-width: 150px;
            }
            
        }
        
         /* Кнопка */
        .btn2 {
            margin-top: 10px;
            padding: 12px 25px;
            font-size: 1.0em;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .btn2:hover {
            background-color: #45a049;
        }  
        
        
        
        
        
        
        
        
        
        
   