.documentation-section {
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--neutral-accent);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.document-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--complementary-blue);
    text-align: center;
    padding: 10px 0;
    background-color: var(--neutral-accent);
}


.documentation-section-upper {
    text-align: center;
    margin-bottom: 20px;
}

.documentation-section-upper h4 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.documentation-section-upper p {
    font-size: 16px;
    color: var(--dark-accent); 
    line-height: 1.5; 
    text-align: justify;
}


.documentation-section-lower {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.document-items label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.document-checkbox {
    position: absolute;
    bottom: 4px;
    left: 2px;
    width: 20px;
    height: 20px;
    z-index: 2;
    opacity: 0;
}

.document-checkbox + label::before {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    background-color: var(--neutral-accent);
    z-index: 1;
    transition: background-color 0.3s;
}

.document-checkbox:checked + label::before {
    background-color: var(--primary-color);
}

.document-checkbox:checked + label::after {
    content: "\2713"; /* Unicode for checkmark */
    position: absolute;
    bottom: 4px;
    left: 8px;
    font-size: 12px;
    color: var(--neutral-accent);
    z-index: 2;
}


.send-inquiry {
    position: sticky; 
    width: calc(33.33% - 20px);
    display: none;
    margin-top: 4px;
    margin-bottom: 10px;
    text-align: center;
    background-color: var(--secondary-color);
    transition: transform 0.3s, background-color 0.3s;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px; /* Added padding to match the margin */
}

.send-inquiry button {
    position: absolute; /* Position the button absolutely */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 12px 0; /* Adjusted padding */
    font-size: 20px;
    font-weight:bold;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
    text-decoration: none;
    z-index: 1; /* Ensure button is above other content */
}

.send-inquiry button:hover {
    background-color: var(--pantone-blue);
    transform: scale(1.05);
}




.document-items {
    flex: 0 0 calc(33.33% - 20px);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    background-color: var(--secondary-color);
    counter-increment: item;
    padding-left: 5px;
}

.document-items::before {
    content: counter(item);
    position: absolute;
    left: 1px;
    top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--pantone-blue);
    color: var(--gold-color);
    font-size: 16px;
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.document-items h4 {
    color: var(--primary-color);
    margin-top: 10px;
    text-align: center;
    margin-left:4px;
    font-size:16px;
}

.document-items:hover {
    background: var(--pantone-blue);
}

.document-items:hover h4 {
    color: var(--gold-color);
}

.document-items::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    z-index: 1;
    transition: opacity 0.3s;
    opacity: 0;
}

.document-items:hover::after {
    opacity: 1;
}

.documents-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    transition: transform 0.3s, visibility 0.3s;
    z-index: 2;
    position: relative;
}

.document-items:hover .documents-img {
    transform: scale(0.6);
}

@media (max-width: 768px) {
    .document-items {
        flex-basis: 100%;
        margin-bottom: 5px;
    }
.send-inquiry {
    width: 100%;
    position:relative;
    height:60px;
    margin-bottom:10px;
    font-size: 16px;
}
}
