
/* ===========================
   ======= SPECIFICATIONS ====
   =========================== */

   .spec-section {
    background-color: #ecf9fd;
    border-bottom: 1px solid #1c365b;
    padding: 2em 5em;
}

.specs-container {
    width: 90%;
    max-width: 1200px;
    margin: 3em auto;
}

.specs-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 5px;
    text-align: center;
}

.specs-title {
    font-size: 28px;
    color: #333;
    margin: 0;
    text-align: center;
}

.highlight {
    color: #01b8ea;
}

.specs-row {
    display: flex;
    align-items: center;
    justify-items: space-between;
    gap: 4em;
}

.specs-icon {
    text-align: center;
    width: 10em;
}

.specs-icon img {
    width: 5em;
    margin-bottom: 10px;
}

.specs-heading {
    font-size: 18px;
    color: #1c365b;
    margin: 0;
}

.specs-content {
    flex: 1;
    align-items: right;
}

.specs-product-title {
    font-size: 22px;
    color: #333;
    margin: 0 0 10px 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #01b8ea;
    font-size: large;
    font-weight: 400;
}

.specs-table td {
    padding: 0.5em 1em;
    vertical-align: top;
    border-bottom: 1px solid #e0e0e0;
}

.specs-divider {
    border: none;
    border-top: 1px solid #d0e0eb;
    margin: 20px 0;
}
@media (max-width: 1440px){
    .specs-table{
        width: 80%;
        font-size: 1rem;
    }
}

@media (max-width:1024px){
    .spec-section {
        padding: 1em;
    }
    .specs-container {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .spec-section{
        padding: 1em;
    }
    .specs-container{
        padding: 0;
        margin: 0;
        width: 100%;
    }
    .specs-title{
        font-size: 1.2em;
    }
    .specs-row {
        flex-direction: column;
        gap: 20px;
    }

    .specs-icon {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .specs-icon img {
        margin-bottom: 0;
        width: 100%;
    }

    .specs-heading {
        text-align: left;
    }
    .specs-product-title{
        text-align: center;
    }

    .specs-table td:first-child {
        width: 40%;
    }

    .specs-table td:last-child {
        width: 60%;
    }
}

/* ===========================
   ========= TRIAL ===========
   =========================== */
.trial {
    padding: 2em 5em;
    border-bottom: 1px solid gray;
}

.trs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trs-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4em;
    flex-wrap: wrap;
    /* allows wrapping on smaller screens */
}

.trs-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.trs-content {
    max-width: 600px;
}

.trs-list {
    padding: 0;
    margin: 0;
}

.trs-item {
    color: #555;
    font-size: 20px;
    position: relative;
    padding-left: 30px;
    list-style: none;
}

.trs-item:before {
    content: "✔ ";
    color: #4CAF50;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* ==== RESPONSIVE RULES ==== */
@media (max-width:1440px){
    .trs-item{
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .trial {
        padding: 2em 2em;
    }

    .trs-row {
        flex-direction: column;
        text-align: center;
        gap:1em;
    }
    .trs-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .trs-item{
        width:81%
    }

    .trs-content {
        max-width: 100%;
    }

    .trs-content>.mbox-btn-grp {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1em;
    }

    .mbox-btn1,
    .mbox-btn2 {
        /* width: 100%; */
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .trial {
        padding: 1em;
    }

    .trs-item {
        font-size: 18px;
    }
}


