table {
    width: 750px;
    border-collapse: collapse;
    margin: 50px auto;
}

/* Zebra striping */
tr:nth-of-type(odd) {
    background: #eee;
}

th {
    background: #6FAA43;
    color: white;
    font-weight: bold;
}

td, th {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
    font-size: 18px;
}
.linking-installer {
    font-weight: 700;
    color: #6FAA43;
    text-decoration: none;
}
/* Max width before this PARTICULAR table gets nasty */
@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {

    table {
        width: 100%;
    }

    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr {
        display: block;
    }
    
    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    tr {
        border: 1px solid #ccc;
    }
    
    td {
        /* Behave like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

    td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        /* Label the data */
        content: attr(data-column);

        color: #000;
        font-weight: bold;
    }
}

tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    padding: 20px !important;
}
#ge-helpfulFaq-section {
    background: #ffffff;
    padding: 80px 0px;
    position: relative;
}
.ge-helpfulFaq-content h2 {
    font-size: 32px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 70px;
}
#ge-helpfulFaq-section .accordion-content {
    background-color: #ffffff;
    overflow: hidden;
    padding: 0 15px;
    max-height: 0;
    border-radius: 25px;
    transition: max-height 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#ge-helpfulFaq-section .accordion-content p {
    margin: 15px 0;
    line-height: 1.5;
}

#ge-helpfulFaq-section .icon {
    transition: transform 0.3s ease;
    color: #EAFAF1;
    font-size: 1.2rem;
    padding: 0px 10px 0px 8px;
    background-color: #6faa43;
    align-items: center;
    transition: 0.4s;
    border: 0;
    cursor: pointer;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    text-decoration: none;
    position: absolute;
    right: 20px;
}
button.accordion-header.active {
    background: #6faa43 !important;
    color: #ffffff !important;
}
#ge-helpfulFaq-section .active .icon {
    transform: rotate(45deg);
    background:#ffffff;
    color:#6faa43;
    padding: 0 10px 0 10px;
}
#ge-helpfulFaq-section .accordion-item {
    background-color: transparent;
    border: 0;
    margin-bottom: 10px;
}
#ge-helpfulFaq-section .accordion-header {
    background-color: transparent;
    color: #000000;
    padding: 6px;
    position: relative;
    font-size: 18px;
    border: 1px solid #6FAA43;
    width: 100%;
    text-align: left;
    padding-left: 20px;
    padding-right: 60px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    font-family: 'HelveticaNeueLight';
}