
    /* FAQ Container - Mike Printing Theme */
    .faq-container {
        max-width: 800px;
        margin: 40px auto;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        color: #333;
        padding: 0 20px;
    }

    .faq-title {
        text-align: center;
        color: #333;
        margin-bottom: 30px;
        font-size: 2.2rem;
        font-weight: 700;
    }

    /* Individual FAQ Item */
    .faq-item {
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        margin-bottom: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        background: #fff;
    }

    /* Hover effect */
    .faq-item:hover {
        border-color: #56C164;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    /* Summary / Question Styling */
    summary {
        padding: 20px 25px;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-weight: 600;
        font-size: 1.1rem;
        outline: none;
        user-select: none;
    }

    /* Hide default browser arrow */
    summary::-webkit-details-marker {
        display: none;
    }

    /* Custom Icon (+/-) */
    summary::after {
        content: '+';
        font-size: 1.6rem;
        color: #56C164;
        font-weight: 400;
        transition: transform 0.3s ease;
    }

    /* Active / Open State Styling */
    details[open] {
        border-color: #56C164;
        box-shadow: 0 4px 15px rgba(86, 193, 100, 0.15);
    }

    details[open] summary {
        color: #56C164;
        border-bottom: 1px solid #f0f0f0;
    }

    details[open] summary::after {
        content: '−';
        transform: rotate(180deg);
    }

    /* Content / Answer Styling */
    .faq-content {
        padding: 20px 25px;
        line-height: 1.7;
        color: #555;
        background-color: #fcfdfc; /* Very light tint of brand green */
        animation: slideDown 0.4s ease-out;
    }

    /* Smooth opening animation */
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
