/* MAIN BOX */
.why-text-container {
    max-width: 1100px;
    margin: auto;

    text-align: center;

    padding: 60px 80px;   /* LEFT + RIGHT BIG SPACE (like 1 inch feel) */

    border: 2px solid #0f3d2e;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* HEADING */
.why-text-container h2 {
    font-size: 36px;
    color: #0f3d2e;
    margin-bottom: 25px;
}

/* PARAGRAPH */
.why-text-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #2f5d4a;
    margin-bottom: 15px;
}


/* TRUST STRIP CONTAINER */
.trust-strip {
    margin-top: 25px;
    padding: 15px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    background: rgba(15, 61, 46, 0.08);
    border: 1px solid rgba(15, 61, 46, 0.2);
    border-radius: 12px;
}

/* EACH LOGO BOX (WHITE CARD) */
.trust-box {
    flex: 1;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 10px;

    padding: 10px;
    transition: 0.3s ease;
}

/* LOGO IMAGE */
.trust-box img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

/* HOVER */
.trust-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: #0f3d2e;
}



@media (max-width: 768px){

    .my-inline-form{
        flex-direction: column;
        align-items: stretch;
    }

    .my-inline-form input{
        width: 100%;
        min-width: 100%;
    }

    .submit-container{
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px;
    }

    .cf-turnstile{
        transform: scale(0.75);
    }

    .submit-container button,
    .submit-container .btn{
        width: 100%;
        max-width: 280px;
    }
}