body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    margin: 0px;
    padding: 0px;
}

/*  .mainSection {
                    background: linear-gradient(135deg, #181819, #181818);
                    color: #fff;
                    padding: 50px 0;
                    text-align: center;
                    }*/

.mainSection h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: red;
    text-decoration: underline;
    font-weight: bold;
}

.mainSection p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: yellow;
}

.CallToAction {
    padding: 20px;
    text-align: center;
    background-color: red;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 30px;
    border-radius: 50px;
}

    .CallToAction:hover {
        background-color: yellow;
        color: red;
    }

.SectionWhite {
    padding: 60px 0;
    text-align: center;
}


.SectionGrey {
    background-color: #d5d5d5;
    padding: 60px 0;
    text-align: center;
}

.SectionDark {
    background-color: black;
    padding: 60px 0;
    text-align: center;
    color: white;
}

.PainPointBox {
    background-color: #f5b5b578;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    border: solid 1px #f5b5b5;
}

    .PainPointBox input {
        font-weight: 500;
        font-size: 20px;
        cursor: pointer;
        height: 17px;
        width: auto;
    }

    .PainPointBox label {
        font-weight: 500;
        font-size: 18px;
        cursor: pointer;
    }

    .PainPointBox:hover {
        border: solid 1px red;
    }

.FeatureBox {
    background-color: #bcfcba;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    border: solid 1px #bcfcba;
}

    .FeatureBox:hover {
        border: solid 1px green;
    }


.TestimonialBox {
    background-color: #b6befd;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: solid 1px #b6befd;
}

    .TestimonialBox img {
        height: 70px;
        width: 70px;
        border-radius: 35px;
    }

    .TestimonialBox:hover {
        border: solid 1px blue;
    }


.CaseStudyBox {
    background-color: #fdf7b6de;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: solid 1px #fdf7b6de;
}

    .CaseStudyBox:hover {
        border: solid 1px yellow;
    }



.Question {
    background-color: darkblue;
    color: white;
    cursor: pointer;
    text-align: left;
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
}

    .Question span {
        font-weight: bold;
        font-size: 25px;
    }

.Answer {
    background-color: lightgrey;
    font-size: 18px;
    display: none;
    padding: 10px;
    margin: 0px;
    text-align: left;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: height 2s;
}


.optech-accordion-body {
    display: none; /* Start hidden */
}

.optech-accordion-item.open .optech-accordion-body {
    display: block; /* Show when open */
}