.sc-box-container {
    border: 2px solid;
    margin: 30px 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: verdana, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.sc-box-title {
    color: #ffffff;
    padding: 16px 20px;
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.2rem;
}

.sc-box-content {
    background: #f4f7ff;
    font-size: 16px;
    line-height: 1.7;
    transition: color 0.3s ease; /* Aggiunto per transizione morbida */
}

/* Responsive */
@media (max-width: 768px) {
    .sc-box-title {
        font-size: 18px;
    }
    .sc-box-content {
        font-size: 15px;
    }
}