* {
    margin: 0;
    padding: 0;
}

.added section {
    background-color: #fff;
    font-family: Arial, sans-serif;
    color: #000;
    text-align: center;
}

h1 {
    margin-top: 20px;
    font-size: 22px;
    color: #000;
    margin-bottom: 20px;
}

.contain {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
    margin: 0 auto;
}

.row {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-bottom: 70px;
    border: 1px solid #3333330a;
    border-radius: 10px;
    background-color: #12121211;
}

.box {
    width: 33.33%;
    /* Each box takes 1/3 of the row */
    padding: 20px;
    text-align: left;
    border-right: 1px solid #3333335e;
    /* Add borders between boxes */
}

/* Remove right border for the last box in a row */

.box:last-child {
    border-right: none;
}

.box-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 18px;
    margin-bottom: 10px;
}

.box-title i {
    font-size: 24px;
    margin-bottom: 10px;
    /* Space between icon and text */
    color: #3C99FC;
}

.box-title span {
    font-weight: bold;
    font-size: 20px;
}

.box-title img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.box p {
    font-size: 17px;
    color: #000;
}

@media (max-width: 768px) {
    .contain {
        flex-direction: column;
        align-items: center;
    }
    .row {
        flex-direction: column;
        /* Stacks boxes vertically on smaller screens */
        margin-bottom: 30px;
        /* Adjust margin as needed */
    }
    .box {
        width: 100%;
        /* Makes each box take full width on smaller screens */
        border-right: none;
        /* Remove border-right when stacked */
        border-bottom: 1px solid #3333335e;
        /* Optional: add a bottom border between stacked boxes */
    }
    .box:last-child {
        border-bottom: none;
        /* Remove the bottom border on the last box */
    }
}