.accented-box {
    position: relative;
    background-color: #002336;
    color:white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing:border-box;
    
}

.accented-box::before,
.accented-box::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10px;
}

.accented-box::before {
    left: 0;
    background-color: #00a3e0; /* Left accent color */
}

.accented-box::after {
    right: 0;
    background-color: #bdc600; /* Right accent color */
}