.docs {
    border: 2px solid #e8e8e8;
    border-radius: 5px;
    padding: 0 90px;
    margin-bottom: 80px;
}

.docs-heading {
    background-color: #0066d3;
    text-align: center;
    color: #fff;
    padding: 10px 0;
    border-radius: 5px 5px 0 0;
}

.doc-text {
    color: #000;
    font-weight: bold;
}

.docs-container {
    /* border: 2px solid yellow; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.doc {
    /* border: 2px solid Green; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.doc-image {
    width: 80px;
    height: 100px;
}

.doc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1040px) {
    .docs {
        padding: 0 50px;
    }
}

@media screen and (max-width: 900px) {
    .docs-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 700px) {
    .docs {
        padding: 0 30px;
    }
    .docs-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 450px) {
    .docs {
        padding: 0 15px;
    }
    .docs-heading {
        font-size: 24px;
    }
    .doc-text {
        font-size: 13px;
    }
}

@media screen and (max-width: 350px) {
    .docs-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }
}