<?
require($_SERVER["DOCUMENT_ROOT"]."/bitrix/header.php");
$APPLICATION->SetTitle("Title");
?>details {
    margin-bottom: 30px;
}

details {
    background-color: white;
    border-radius: 20px;
    margin-bottom: 20px;
}

summary {
    cursor: pointer;
    padding: 15px;
    background: #D7F4E8;
    border-radius: 20px;
    margin-bottom: 5px;
}

/* Стили для карточек */
.card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin: 20px;
    padding-bottom: 20px;
}

.img_control {
    width: 100%;
    height:100px;
    text-align: center;
    align-content: center;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    max-height: 100px;
    margin:auto;
    border-radius: 5px;
    object-fit: contain;
}

.card img[alt] {
    font-size:2em;
    font-weight: 900;
    color: gray;
    line-height: 1.5;
}

.card-content h3 {
    text-align: center;
}

.card-content {
<?require($_SERVER["DOCUMENT_ROOT"]."/bitrix/footer.php");?>