﻿/* Outer accordion container */
.faq-accordion {
    font-family: georgia, palatino, serif;
    max-width: 1200px;
    margin: 0 auto 2rem;
}


    /* Each accordion item (one bordered container) */
    .faq-accordion details {
        border: 1px solid #ddd;
        border-radius: 6px;
        margin-bottom: 10px;
        padding: 30px;
        overflow: hidden; /* ensures rounded corners clip answer */
    }

    /* Clickable question (summary) */
    .faq-accordion summary {
        display: flex;
        align-items: center;
        cursor: pointer;
        padding: 1rem 1.25rem;
        font-weight: normal;
        font-size: 24px; /* QUESTION FONT SIZE */
        position: relative;
        background-color: transparent;
        border: none; /* no separate border here */
    }

        /* Remove browser default marker */
        .faq-accordion summary::-webkit-details-marker {
            display: none;
        }

        /* Plus/Minus icon */
        .faq-accordion summary::before {
            content: "+";
            font-family: georgia, palatino, serif;
            font-style: normal;
            font-weight: normal;
            text-decoration: none;
            font-size: 24px;
            line-height: 1;
            margin-right: 1.25rem;
            width: 1.2rem;
            text-align: center;
            transform: translateY(-1px);
            color: #444;
        }

    .faq-accordion details[open] > summary::before {
        content: "−";
    }

    /* Answer text (inside container) */
    .faq-accordion .answer {
        padding: 0 1.25rem 1rem 2.95rem; /* Indent past icon */
        color: #000000;
        font-family: helvetica;
        font-size: 16px;
        line-height: 22.4px;
        font-weight:400;
        background: transparent;
        word-break: break-word;
       
    }

        .faq-accordion .answer p,
        .faq-accordion .answer li,
        .faq-accordion .answer div,
        .faq-accordion .answer a {
            box-sizing: border-box;
            font-size: 16px;
            line-height: 22.4px;
        }

    /* Hover/focu /* subtle divider between Q & A */
    }

    /* Hover/focus states (no background change) */
    .faq-accordion summary:hover {
        background: transparent;
    }

/*    .faq-accordion summary:focus {
        outline: 2px solid #7aa7ff;
        outline-offset: 2px;
    }*/

/* Full-width header bar, centered content, Georgia/Palatino font */
.pageHeader {
    width: 100%;
    margin: 0;
    text-align: center;
    font-family: georgia, palatino, serif;
    margin-bottom:30px;
}

    /* Make the H1 ignore other site styles and use our header settings */
    .pageHeader h1 {
        all: unset; /* wipe inherited author styles */
        display: block;
        margin: 0;
        font-family: inherit;
        font-weight: normal;
        font-size: 62px; /* adjust as you like */
        line-height: 1.2;
        text-align: inherit; /* centers because parent is centered */
    }


