/* --- SCOPED CSS FOR COLOR COPIES FAQ WITH RANDOM CODE: 7159283460 --- */

/* 1. Wrapper & Reset */
.ccp-faq-7159283460 {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 2rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
    background-color: #ffffff;

    * {
        box-sizing: border-box;
    }
}

/* 2. Typography */
.ccp-faq-7159283460 h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ccp-faq-7159283460 p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

/* 3. Section Layout */
.ccp-faq-7159283460 .ccp-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e2e8f0;
}

.ccp-faq-7159283460 .ccp-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* 10. FAQ Accordion */
.ccp-faq-7159283460 .ccp-faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.ccp-faq-7159283460 .ccp-faq-item summary {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    padding: 1.5rem 1rem;
    cursor: pointer;
    position: relative;
    list-style: none;
    /* Remove default marker */
    transition: color 0.25s ease, background-color 0.25s ease, padding 0.25s ease;
    border-radius: 0.35rem;
}

.ccp-faq-7159283460 .ccp-faq-item summary:hover {
    color: #0056b3;
}

.ccp-faq-7159283460 .ccp-faq-item summary::-webkit-details-marker {
    display: none;
    /* Hide for Webkit */
}

.ccp-faq-7159283460 .ccp-faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.25s ease;
}

.ccp-faq-7159283460 .ccp-faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.ccp-faq-7159283460 .ccp-faq-item .ccp-faq-answer {
    padding: 0 1rem 1.5rem 1rem;
    color: #4a5568;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.35s ease;
}

.ccp-faq-7159283460 .ccp-faq-item[open] summary {
    color: #007BFF;
    background-color: rgba(0, 123, 255, 0.03);
    padding-left: 1rem;
    padding-right: 2.5rem;
}

.ccp-faq-7159283460 .ccp-faq-item[open] .ccp-faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding-top: 0.5rem;
}

.ccp-faq-7159283460 .ccp-faq-item .ccp-faq-answer p:last-child {
    margin-bottom: 0;
}