h1 {
    color: var(--text-color);
    padding: 0;
    margin: 0;
}

h2 {
    color: var(--text-color);
    font-size: 18px;
    padding-bottom: 10px;
}

.image {
    border-radius: 12px;
    border: 1px solid black;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

.zooming-image:hover {
    cursor: zoom-in;
    transform: scale(1.08);
    transition: transform 0.3s ease;
}

.scena_problem,
.scena_solved {
    display: flex;
    align-items: center;
    gap: 20px;
}

.scena_calling {
    display: flex;
    align-items: center;
    gap: 20px;
}


.card {
    display: flex;
    width: 75%;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.6;
    background: var(--main-gradient);
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    margin-bottom: 25px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);

}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.addition {
    padding-left: 30px;
    line-height: 1.4;
    padding-right: 30px;
    width: 85%;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;    
}

.to_center {
    text-align: center;
}



@media (max-width: 1000px) {
    .card {
        flex-direction: column;
        gap: 10px;
    }
}