* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #383838;
}

.container {
    width: 1154px;
    height: 660px;
    background-color: #fff;
    padding: 0;
    display: flex;
    flex-direction: column; 
    justify-content: flex-start;
    align-items: flex-start;
}

.title {
    text-align: left;
    margin-bottom: 35px;
}

.title h3 {
    font-size: 20px;
    color: #383838;
    font-weight: 400;
    margin-bottom: 5px;
}

.title h2 {
    font-size: 32px;
    color: #383838;
    font-weight: 800;
}

.boxes {
    display: grid;
    grid-template-columns: repeat(3, 253px);
    grid-template-rows: repeat(2, 215px); 
    gap: 2px 4px;
    margin-left: 4px;
    height: 100%;
}

.boxitem {
    background-color: #ffffff;
    padding: 18px;
    text-align: left;
    box-shadow: 0 10px 10px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
}

.boxitem.first-row {
    border-top: 4px solid #ED1F1F;
}

.boxitem img {
    margin-bottom: 15px;
}

.boxitem h2 {
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.boxitem p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .title {
        width: 305px;
    }

    .title h3 {
        font-size: 16px;
    }

    .title h2 {
        font-size: 24px;
    }

    .boxes {
        display: grid;
        grid-template-columns: 305px;
        grid-template-rows: repeat(auto-fit, 145px);
        gap: 2px;
        margin-left: 0px;
        justify-content: flex-start;
    }

    .boxitem {
        width: 305px;
        height: 145px;
        padding: 10px 10px;
    }

    .boxitem img {
       width: 36px;
       height: auto;
       margin-bottom: 10px;
    }

    .boxitem h2 {
       margin-bottom: 5px;
    }

    .boxitem p {
      font-size: 14px;
    }

    .boxitem.first-row {
        border-top: none;
    }

    .boxitem:first-child {
        border-top: 4px solid #ED1F1F;
    }
}
