.info-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    border: 2px solid #e2e8f0; /* light grey */
    border-radius: 12px;
    background: #f9fafb;       /* subtle contrast */
    margin: 2rem 0;
}

.info-content {
    flex: 1 1 55%;
    font-size: 1.2rem;
    line-height: 2rem;
}

.info-content h4 {
    font-size: 2rem;
}

.info-illustration {
    flex: 1 1 45%;
    text-align: center;
}

.info-illustration img,
.info-illustration svg {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .info-block {
        flex-direction: column;
    }
}
