h1 {
    font-size: 37px;
    color: black;
    font-weight: 500;
}

.mera-new-p p {
    margin-top: 35px;
    font-size: 17.9px;
    color: #5c5252;
    line-height: 1.6;
}

h3 {
    font-size: 24px;
    color: black;
    margin-top: 25px;
}

h4 {
    font-size: 20px;
    color: black;
    margin-top: 27px;
}

h6 {
    margin-top: 30px;
    margin-bottom: 50px;
    font-size: 18px;
    color: #000;
    font-weight: 400;
}

h5 {
    color: #000;
    margin-bottom: 22px;
}

.custom-list ul {
    list-style: none;
    padding-left: 0;
}

.custom-list ul li {
    position: relative;
    padding-left: 18px;
    font-size: 18px;
    line-height: 2.1;
    color: #6a5555;
}

.custom-list ul li::before {
    content: ".";
    position: absolute;
    left: -8px;
    top: -28px;
    font-size: 50px;
    line-height: 1.2;
    color: #3b3a3a;
}

b {
    color: #5a5a5a;
    font-weight: 500;
}

.new-p {
    line-height: 2.2;
    font-size: 18px;
}

/* ================= DESKTOP ONLY ================= */
@media (min-width: 992px) {

    /* FORCE button styling on desktop */
    .padd-width button {
        background-color: #fff !important;
        border: 1px solid #000 !important;
        color: #000 !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        padding-top: 23px !important;
        padding-bottom: 23px !important;
        width: 47%;
        margin-right: 23px;
    }

}


/* ================= TABLET ONLY ================= */
@media (min-width: 768px) and (max-width: 991px) {

    .tablet-btn-row {
        display: flex;
        justify-content: center;
        gap: 25px;
    }

    .tablet-btn-row button {
        width: 300px;
        padding: 23px 0px;
        background: transparent;
        border: 1px solid #000;
        font-size: 15px;
        font-weight: 500;
        text-align: center;
    }
}

/* ================= MOBILE ONLY ================= */
@media (max-width: 576px) {

    /* Page heading */
    h1 {
        font-size: 35px;
        margin-top: 40px !important;
        padding-top: 0 !important;
    }

    /* Paragraph readability */
    p {
        font-size: 17px;
        line-height: 1.6;
        text-align: left;
    }

    /* Headings spacing */
    h3,
    h4,
    h5,
    h6 {
        margin-top: 20px;
        font-size: 21px;
    }

    h6 {
        font-size: 18px;
    }

    /* List padding fix */
    .custom-list {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .custom-list ul {
        padding-left: 18px;
    }

    .custom-list ul li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    /* Inner paragraph box */
    .new-p {
        font-size: 16px;
        line-height: 1.7;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* BUTTON ROW — mobile only */
    .tablet-btn-row {
        display: flex;
        flex-direction: column;
        gap: 22px;
        padding: 20px 10px;
        justify-content: center;
        align-items: center;
        margin-bottom: 60px;
        background-color: #fff;
    }

    .tablet-btn-row button {
        width: 100%;
        padding: 18px 0;
        font-size: 16px;
        text-align: center;
        background-color: #fff;
        border: 1px solid #000;

    }

}