.box-header {
    padding: 20px;
    background: linear-gradient(to right, #e41e2f , #676262);
    border: 2px solid #faa2a9;
    border-radius: 20px;
    box-shadow: 3px 3px 2px #fc9d9d;
}
.box-header h4{
    color: #fdefef;
    font-weight: bold;
}
.box{
    border: 1px solid #f98484;
    border-radius: 15px;
    box-shadow: 5px 5px 4px #e41e2f inset;
    padding: 30px;
}
.box-content {
    padding: 10px;
    margin: 20px;
    background-color: #fefefe;
    border-radius: 8px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #f83c4b;
    text-align: justify;
    box-shadow: 3px 3px 2px #fea2a2;
}

.box-content p {
    line-height: 1.5rem;
    font-size: 1rem;
}

/* Optional responsive design */
@media (max-width: 768px) {
    .box-header h4{
        font-size: 1.2rem;
    }
    .box-content p {
        line-height: 1.3rem;
        font-size: 0.8rem;
    }
    .box{
        padding: 5px;
    }
}
