.block {
                text-align: justify;
            }

            /* Верхняя часть */
            .header-blocks {
                display: flex;
                justify-content: space-between;
                margin-bottom: 20px;
            }

            .block-top {
                background-color: #cccccc;
                height: 400px;
                border: 1px solid #ddd;
            }

            .block-left {
                width: 66%;
            }

            .block-right {
                width: 32%;
            }

            /* Нижняя часть */
            .articles {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }

            .article {
                border: 1px solid #ddd;
                padding: 10px;
                text-align: center;
            }

                .article img {
                    width: 100%;
                    height: 250px;
                    object-fit: cover;
                    border-radius: 8px;
                    margin-bottom: 10px;
                }

                .article p {
                    font-family: Arial, sans-serif;
                    line-height: 1.5;
                }