/* BEGIN CONTENT SECTION */

.content h2 {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    margin-top: clamp(1.25rem, 2vw, 1.75rem);
    margin-bottom: clamp(0.25rem, 0.5vw, 0.4rem);
    line-height: 1.3;
    text-align: left;
}
.content h2 a,
.content h2 a:hover{
    text-decoration: none;
}

.content h3 {
    font-size: clamp(0.9rem, 1vw + 0.3rem, 1.1rem);
    font-weight: var(--def-bold-fw);
    line-height: 1.45;
    color: rgba(var(--color6-rgb-values), 0.9);
    text-align: left;
    margin-top: clamp(0.1rem, 0.5vw, 0.4rem);
    margin-bottom: clamp(1.5rem, 2.4vw, 2.3rem);
}
.content h3 .subtitle {
    color: rgba(var(--color6-rgb-values), 0.8);
    font-weight: 600;
}


.content ol {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: clamp(0.2rem, 1vw, 0.5rem);
    margin: clamp(1.5rem, 3vw, 2rem);
}
.content ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: clamp(0.2rem, 1vw, 0.5rem);
    margin: clamp(1.5rem, 3vw, 2rem);
    list-style: disc;
}
.checkout-disclaimer{
    margin:0;
    font-size:0.75rem;
}
.content .btn {
    display: inline-block;
    background-color: var(--color10);
    color: var(--color6);
    font-weight: 600;
    font-size: clamp(0.7rem, 1vw + 0.25rem, 0.95rem);
    padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1.2rem, 2vw, 1.5rem);
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.content .btn:hover {
    background-color: var(--color7);
    color: var(--color1);
}

/* CALLOUT BOXES */
.callout {
    margin: .5rem auto;
    padding: 1rem 3rem;
    border: 1px solid var(--color11);
    border-radius: 6px;
}

.callout .callout-lead {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.callout p {
    margin-bottom: 1rem;
}

.callout a {
    text-decoration: underline;
}

figure {
    margin: clamp(0.5rem, 1vw, 1rem);
    max-width: 48%;
    clear: both;
}

figure img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 6px 12px rgba(var(--color13-rgb-values), 0.25);
}

/* Float positioning */
.float-right {
    float: right;
    margin-left: clamp(1rem, 2vw, 2rem);
    margin-right: 0;
}

.float-left {
    float: left;
    margin-right: clamp(1rem, 2vw, 2rem);
    margin-left: 0;
}

.content a svg {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    color: var(--def-link);
    fill: var(--def-hover);
    transition: color 0.3s ease;
}

.content a:hover svg {
    color: var(--def-hover);
    fill: var(--def-link);
}

/* Make each .content section wrap its floated children */
.content::after {
    content: "";
    display: block;
    clear: both;
}

/* Mobile fallback */
@media (max-width: 768px) {

    .float-right,
    .float-left, 
    .float {
        float: none;
        display: block;
        margin: 1.5rem auto;
        max-width: 90%;
    }
}

@media (max-width: 480px) {

    img,
    svg {
        max-width: 100%;
        height: auto;
        display: block;
    }

}


blockquote.announcement{
  display: block;
  background-color: var(--def-bg);
  margin: clamp(2rem, 5vw, 3rem) auto;
  padding: clamp(1.5rem, 4vw, 2rem);
  max-width: 70%;
  border: 1px solid var(--color11);
  border-radius: 1.2rem;
  box-shadow: var(--alt-box-shadow);
}

.announcement h2 {
  color: var(--color10);
}

.announcement .btn.small {
    align-self: center;
    background-color: var(--color10);
    color: var(--color1);
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    margin-top: 1.2rem;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 3px 6px rgba(var(--color10-rgb-values), 0.4);
    transition: all 0.3s ease, transform 0.2s ease;
    will-change: box-shadow, transform;
    z-index: 1;
}

.announcement .btn.small:hover {
    background-color: var(--color7);
    box-shadow: 0 3px 6px rgba(var(--color7-rgb-values), 0.4);
    transform: translateY(-2px);
}


a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}
a:hover {
  color: var(--color10);
}

.btn {
    background: var(--color10);
    box-shadow: 0 3px 6px rgba(var(--color10-rgb-values), 0.4);
    transition: all 0.3s ease, transform 0.2s ease;
    will-change: box-shadow, transform;
}

.btn:hover {
    background: var(--color7);
    box-shadow: 0 3px 6px rgba(var(--color7-rgb-values), 0.4);
    transform: translateY(-2px);
}

/* FAQ ACCORDION STYLES */
.faq-category {
    width: 90%;
    background: var(--portal-cards-alt-bg);
    box-shadow: var(--portal-cards-boxshadow);
    border-radius: 1rem;
    border: var(--portal-cards-border);
    padding: 0;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.faq-category:nth-of-type(odd) {
    background-color: var(--portal-cards-alt-bg);
}

.faq-category:nth-of-type(even) {
    background-color: var(--portal-cards-bg);
}


.faq-category summary {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2.5rem; /* makes room for the + icon */
    display: block;
}

.faq-category h2 {
    margin: 0;
}

.faq-category[open] summary {
    border-bottom: var(--portal-cards-border);
/*  box-shadow: 0 4px 10px rgba(0,0,0,0.08); */
    box-shadow: 0 4px 10px rgba(var(--color6-rgb-values),0.08);
}

.faq-category[open] .faq-item:first-of-type {
    padding-top: 1.75rem; 
}

.faq-item {
    padding: 1rem 1.25rem;
}

.faq-item h3 {
    margin: 0 0 .375rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.faq-item p {
    margin: 0 0 1.25rem 0;
    line-height: 1.6;
}

.faq-item a,
.faq-item a:hover {
    text-decoration: underline;
}

.faq-category summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    pointer-events: none; /* ensures the + doesn’t block clicks */;
}

.faq-category[open] summary::after {
    content: "–";
}

.content a img {
  transition: filter 0.3s ease;
  will-change: filter;
}

.content a:hover img, 
.content a:focus img {
  filter: brightness(1.05);
}

/* drop shadow on transparent images */
.transparent-img {
    border-radius: 0;
    box-shadow: none;
    filter: 
      drop-shadow(0 2px 4px rgba(var(--color13-rgb-values),0.25))
      drop-shadow(0 6px 12px rgba(var(--color13-rgb-values),0.20));   
}


/* Mobile fallback */
@media (max-width: 768px) {

}/* BEGIN CTA SECTION */
 .cta-section {
    padding: clamp(2rem, 4vw, 4rem) 1.5rem;
    font-size: clamp(0.8rem, 1vw + 0.3rem, 1rem);
}

.cta-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 50%, 400px), 1fr));
    align-items: start;
    gap: clamp(2rem, 3vw, 3rem);
    max-width: 1200px;
    margin: 0 auto;
}

.cta-left h2 {
    font-size: clamp(1.6rem, 2vw + 1rem, 2.25rem);
    margin-bottom: 1rem;
}

.cta-left .lead {
    font-size: clamp(1rem, 0.4vw + 0.9rem, 1.1rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.cta-left p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

form,
.cta-left form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}


input,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;    
    font-size: clamp(0.8rem, 1vw + 0.3rem, 1rem);
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0 4px rgba(var(--color13-rgb-values), 0.15);
    box-sizing: border-box;
}

textarea {
    resize: vertical;
    font-family: inherit;
}

.cta-btn {
    background-color: var(--cta-color);
    /* your orange button color */
    color: var(--cta-text);
    border: none;
    border-radius: 2rem;
    padding: 0.8rem 1.75rem;
    font-size: clamp(0.95rem, 0.3vw + 0.8rem, 1.05rem);
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform, box-shadow;
    text-decoration: var(--cta-link-td);
}

.cta-btn:hover,
.cta-btn:focus {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(var(--color13-rgb-values), 0.25);
    outline: none;
    text-decoration: var(--cta-hover-td);
}



.cta-right img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 6px 12px rgba(var(--color13-rgb-values), 0.25);
}

/* Error (invalid) style */
input.invalid,
textarea.invalid,
select.invalid {
    background-color: var(--error-bgcolor);
    border: 1px solid var(--error-color);
}

/* Error style when the user focuses the field */
input.invalid:focus,
textarea.invalid:focus,
select.invalid:focus {
    border: 2px solid var(--error-color);
    outline: none;
}


.form-response {
    display: block;
    box-sizing: border-box;
    color: var(--instruction-color);
    margin: 10px 0;
    font-size: 0.95rem;
    text-align: left;
    word-break: break-word;
    overflow-wrap: break-word;
    width: inherit;
}

.success-msg {
    color: var(--success-color) !important;
}

.error-msg {
    color: var(--error-color) !important;
}

/* END CTA SECTION */

input[name="verify"] {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: clamp(2rem, 4vw, 3rem) 0 0;
    
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    width: 90%;
    margin: 0 auto;
    align-items: start;
    font-size: clamp(1rem, 0.4vw + 0.9rem, 1.1rem);
}

.footer-left h2 {
    font-size: clamp(1rem, 0.6vw + 1rem, 1.25rem);
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-align: left;
}

.footer-left p {
    margin: 0.4rem 0;
}

/* Contact info */
.footer-contact {
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.footer-contact p {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--icon3-color);
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    white-space: nowrap;
    color: var(--footer-text);
    text-decoration: var(--footer-link-td);
    font-weight: 400;
}

.footer-contact a:hover {
    color: var(--footer-hover);
    text-decoration: var(--footer-hover-td);
}

.footer-contact a svg {
    flex: 0 0 auto;
    /* locks icon width */
}

/* Centered Social icons */
.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.3s ease, transform 0.3s ease;
    will-change: transform;
}

.footer-social a:hover {
    background-color: rgba(var(--icon4-hover-bg), 0.1);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 22px;
    height: 22px;
    fill: var(--icon4-color);
    transition: fill 0.3s ease;
}

.footer-social a:hover svg {
    fill: var(--icon2-hover);
    transform: translateY(-2px);
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.footer-right h2 {
    font-size: clamp(1rem, 0.6vw + 1rem, 1.25rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-weight: 600;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* keeps it right-aligned */
    /* gap: 0.5rem; */
    gap: clamp(0.5rem, -0.6vw + 0.8rem, 1.2rem);
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--footer-link);
    font-weight: 400;
    text-decoration: var(--footer-link-td);
}

.footer-links a:hover {
    color: var(--footer-hover);
    text-decoration: var(--footer-hover-td);
}

/* Bottom bar */
.footer-bottom {
    background-color: var(--copyright-bg);
    padding: 1rem 0;
    margin-top: 2rem;
}

.copyright,
.copyright a {
    width: 90%;
    font-size: clamp(0.75rem, 1.1vw, 1rem);
    text-align: center;
    color: var(--copyright-text);
    margin: 0 auto;
}

.copyright a {
    color: var(--copyright-link);
    font-weight: 400;
    text-decoration: var(--copyright-link-td);
}

.copyright a:hover {
    color: var(--copyright-hover);
    text-decoration: var(--copyright-hover-td);
}

/* Mobile stacking */
@media (max-width: 768px) {
    .footer-main {
        text-align: center;
    }

    .footer-right,
    .footer-links {
        align-items: center;
        text-align: center;
        gap: 1rem 1.5rem;
    }


}