/* Shared styles for Privacy Policy, Terms of Service, and Text Sign-Up pages */

.pageBnr{
    background: #E5EFDF;
    padding: 70px 0 50px;
    text-align: center;
}
.pageBnr h1{
    font-family: 'recoletaregular_demo';
    font-size: 42px;
    line-height: 1.2em;
    color: #111111;
    margin-bottom: 10px;
    text-align: center;
}
.pageBnr p{
    color: #386458;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

/* Legal content pages (Privacy Policy / Terms of Service) */
.legalWrap{
    padding: 60px 0 80px;
    max-width: 900px;
    margin: 0 auto;
}
.legalWrap h2{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3em;
    color: #111111;
    margin-top: 42px;
    margin-bottom: 14px;
}
.legalWrap h2:first-child{ margin-top: 0; }
.legalWrap h3{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #111111;
    margin-top: 26px;
    margin-bottom: 10px;
}
.legalWrap p{
    color: #3c3c3c;
    font-size: 16px;
    line-height: 27px;
    font-family: 'Karla', sans-serif;
    margin-bottom: 16px;
}
.legalWrap ul, .legalWrap ol{
    margin-bottom: 16px;
    padding-left: 22px;
}
.legalWrap ul{ list-style: disc; }
.legalWrap ol{ list-style: decimal; }
.legalWrap li{
    color: #3c3c3c;
    font-size: 16px;
    line-height: 27px;
    font-family: 'Karla', sans-serif;
    margin-bottom: 8px;
}
.legalWrap a{
    color: #386458;
    font-weight: 700;
    text-decoration: underline;
}
.legalWrap a:hover{ color: #8cc426; }
.legalWrap .updated{
    color: #6b6a86;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 30px;
}
.legalWrap .contactBlock{
    background: #F5F9F1;
    border-radius: 16px;
    padding: 24px 28px;
    margin-top: 10px;
}
.legalWrap .contactBlock p{ margin-bottom: 6px; }

/* Text message sign-up form */
.signupWrap{
    padding: 50px 0 90px;
    max-width: 640px;
    margin: 0 auto;
}
.signupForm label{
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #111111;
    margin-bottom: 6px;
}
.signupForm .fld{ margin-bottom: 22px; }
.signupForm .fldRow{
    display: flex;
    gap: 22px;
}
.signupForm .fldRow .fld{
    flex: 1 1 0;
    min-width: 0;
}
.signupForm input[type="text"],
.signupForm input[type="tel"]{
    width: 100%;
    height: 48px;
    border: 1px solid #cfd8cc;
    border-radius: 10px;
    padding: 0 16px;
    font-family: 'Karla', sans-serif;
    font-size: 16px;
    color: #111111;
    outline: 0;
    background: #ffffff;
}
.signupForm input[type="text"]:focus,
.signupForm input[type="tel"]:focus{
    border-color: #ABE063;
}
.signupForm input.error{
    border-color: #d9534f;
}
.signupForm .consentRow{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
    background: #F5F9F1;
    border-radius: 14px;
    padding: 18px 20px;
}
.signupForm .consentRow input[type="checkbox"]{
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 3px;
    accent-color: #62a53a;
}
.signupForm .consentRow label{
    font-family: 'Karla', sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #3c3c3c;
}
.signupForm .consentRow label a{
    color: #386458;
    font-weight: 700;
    text-decoration: underline;
}
.signupForm .consentRow label a:hover{ color: #8cc426; }
.signupForm .req-marker{ color: #d9534f; }
.signupForm .smsBtn{
    background: #ABE063;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border: none;
    border-radius: 220px;
    padding: 14px 42px;
    cursor: pointer;
    transition: 0.3s ease;
    display: block;
    margin: 10px auto 0;
}
.signupForm .smsBtn:hover{ background: #8cd1bf; }
.signupForm .formMsg{
    margin-top: 16px;
    font-family: 'Karla', sans-serif;
    font-size: 14px;
}
.signupForm .formMsg.error{ color: #d9534f; }
.signupForm .carrierNote{
    font-family: 'Karla', sans-serif;
    font-size: 13px;
    color: #3c3c3c;
    text-align: center;
    margin-bottom: 22px;
}
.signupHoneypot{ position: absolute; left: -9999px; top: -9999px; }

/* Single-column footer used on inner pages (no contact form) */
footer.simpleFooter{ padding-bottom: 40px; }
footer.simpleFooter .lftClm{ width: 100%; float: none; }
footer.simpleFooter .cpyrt{ flex-wrap: wrap; row-gap: 10px; }

@media(max-width: 767px){
    .pageBnr h1{ font-size: 30px; }
    footer.simpleFooter .cpyrt{ flex-direction: column; align-items: flex-start; }
   
}
