.article-image {
    margin: 30px auto;
    text-align: center;
    max-width: 100%;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article-image figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    font-family: 'Hind', sans-serif;
}

.glava li {
    background: #fff;
    padding: 15px 20px 15px 45px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    font-weight: 600;
    color: #333;
    transition: transform 0.2s;
}

.glava li:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('../img/qtick.png') no-repeat center;
    background-size: contain;
}

.glava li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.title_block_lead {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-box {
    background: #fff;
    border: 2px solid #349dee;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin: 40px auto;
    box-shadow: 0 5px 15px rgba(52, 157, 238, 0.2);
    max-width: 600px;
}

.cta-box h3 {
    margin-top: 0;
    color: #05519d;
}

.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 3px solid #ff4e00;
}

.btn-cta {
    background: #ff4e00;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.3s;
    display: inline-block;
}

.btn-cta:hover {
    background: #e04400;
    color: #fff;
    text-decoration: none;
}