/* ============================================ 
   IMPROVED FAQ SECTION ONLY
   ============================================ */

#faq-1263 {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: #ffffff;
    position: relative;
}

#faq-1263 .cs-container {
    width: 100%;
    max-width: 55rem;
    margin: 0 auto;
    padding: 0 1rem;
}

#faq-1263 .cs-content {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 4rem);
}

#faq-1263 .cs-topper {
    display: inline-block;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

#faq-1263 .cs-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--headerColor);
    letter-spacing: -0.02em;
}

/* FAQ Items */
#faq-1263 .cs-faq-group {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#faq-1263 .cs-faq-item {
    background: #f8fafb;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

#faq-1263 .cs-faq-item.active {
    background: #ffffff;
    border-color: var(--primaryLight);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
}

#faq-1263 .cs-button {
    font-family: inherit;
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

#faq-1263 .cs-button::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

#faq-1263 .cs-faq-item.active .cs-button::after {
    transform: rotate(45deg);
}

#faq-1263 .cs-button-text {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    color: var(--headerColor);
    padding-right: 1rem;
}

#faq-1263 .cs-item-p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: #4a5568;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 0 2rem;
}

#faq-1263 .cs-faq-item.active .cs-item-p {
    max-height: 20rem;
    opacity: 1;
    padding: 0 2rem 1.5rem 2rem;
}

/* FAQ CTA Section */
#faq-1263 .cs-emergency {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primaryLight) 100%);
    border-radius: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#faq-1263 .cs-emergency::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

#faq-1263 .cs-emergency-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    position: relative;
}

#faq-1263 .cs-emergency-text {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    position: relative;
}

#faq-1263 .cs-emergency-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #ffffff;
    color: var(--primary);
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#faq-1263 .cs-emergency-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    gap: 1rem;
}

#faq-1263 .cs-emergency-button svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Remove or hide the background pattern for FAQ */
#faq-1263 .cs-background {
    display: none;
}

/* Mobile Responsiveness */
@media only screen and (max-width: 47.9375rem) {
    #faq-1263 .cs-button {
        padding: 1.25rem 1.5rem;
    }
    
    #faq-1263 .cs-button-text {
        font-size: 1.125rem;
    }
    
    #faq-1263 .cs-emergency {
        padding: 2rem 1.5rem;
    }
}

/* Better focus states for accessibility */
#faq-1263 .cs-button:focus {
    outline: 3px solid var(--primaryLight);
    outline-offset: 2px;
}