/*mobile screens below 750 width*/
@media only screen and (max-width: 750px)
{
    .section1
    {
        width: 96% !important;
        padding-left: 2% !important;
        padding-right: 2% !important;
    }
}

.section1
{
    display: grid;
    height: auto;
    width: 92%;
    margin: 0%;
    padding-top: 0.5%;
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 2%;
    grid-template-rows: auto auto;
    grid-template-columns: 100%;
    background-color: rgba(210, 180, 140, 0.12);
}

.categorydoc1
{
    font-weight: bold;
    margin-left: 3%;
    padding-left: 1%;
    padding-right: 1%;
    width: 92%;
}

.catbackground
{
    padding-top: 19px;
    padding-bottom: 0px;
    background-color: rgba(210, 180, 140, 0.12);
}

.documents-section
{
    padding: 20px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.document-list
{
    list-style: none;
    padding: 0;
}

.document-item
{
    margin-bottom: 15px;
}

.download-link
{
    display: inline-block;
    padding: 8px 15px;
    background-color: #fde32c;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #bbb;
}

.download-link:hover
{
    background-color: #d1ba0f;
}

/*mobile screens below 750 width*/
@media only screen and (max-width: 750px)
{

    table,
    .pricing-table
    {
        width: 96% !important;
        margin: 20px auto !important;
    }
}

table
{
    width: 100%;
    max-width: 800px;
    margin: 20px 0px;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    color: black;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

th,
td
{
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
    border-collapse: collapse;
    border-bottom: 1px solid #ddd;
}

th
{
    background-color: #fde32c;
    color: black;
    font-weight: bold;
}

tr:nth-child(even)
{
    background-color: #f9f9f9;
}

tr:hover
{
    background-color: #eaf5ff;
}

.pricing-section
{
    padding: 20px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.pricing-table
{
    width: 100%;
    border-collapse: collapse;
}

.pricing-item
{
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.pricing-title
{
    margin-bottom: 5px;
}

.bulk-order-note
{
    font-style: italic;
    color: #777;
}

.store-section
{
    padding: 20px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.pricing-cost
{
    color: #000000;
}

.workdrive
{
    width: 100%;
    height: 520px;
    border: 1px solid #bbb;
}

.faq-section
{
    padding: 20px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.faq-item
{
    border: 1px solid #ccc;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f9f9f9;
}

.faq-question
{
    font-weight: bold;
    cursor: pointer;
}

.faq-answer
{
    display: none;
    /* Initially hide the answer */
    margin-top: 5px;
    padding: 5px;
    border-left: 2px solid #ddd;
}

.faq-question:hover
{
    text-decoration: underline;
}