/* FAQ Section Styles */
.faq-section {
    padding: 4rem 0;
    width: 100%;
    overflow: hidden;
}

.faq-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: #000;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.faq-description {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    color: #000;
    line-height: 1.6;
}

/* Accordion Styles */
.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
}

.accordion-item {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.2s ease;
    border: 4px solid #000;
}



/* Hide the native checkbox */
.accordion-checkbox {
    display: none;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
}

.accordion-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.accordion-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: none;
}

.accordion-inner {
    padding: 1.25rem 1.5rem;
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

/* Accordion Open State - using checkbox hack */
.accordion-checkbox:checked + .accordion-header {
    border-bottom: none;
}

.accordion-checkbox:checked + .accordion-header .accordion-icon {
    transform: rotate(180deg);
}

.accordion-checkbox:checked ~ .accordion-content {
    max-height: 1000px;
    opacity: 1;
}

/* FAQ CTA Button */
.faq-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: #FF69B4;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    font-size: 1.125rem;
    position: relative;
    border: 4px solid #000;
    box-shadow: 6px 6px 0px 0px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
}



.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    background-color: #e5509e;
    box-shadow: 8px 8px 0px 0px rgba(0,0,0,1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 15px;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .accordion-header {
        padding: 1rem 1.25rem;
    }
    
    .accordion-title {
        font-size: 1rem;
    }
    
    .accordion-inner {
        padding: 1rem 1.25rem;
    }
} 

/* FAQ Page Template Styles */
.faq-page-container {
    padding: 4rem 0;
    width: 100%;
    overflow: hidden;
}

.faq-page-container .faq-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-page-container .faq-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #000;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: center;
}

.faq-page-container .faq-content {
    margin-bottom: 3rem;
    color: #333;
    font-size: 1.125rem;
    line-height: 1.6;
}

.faq-page-container .faq-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.faq-page-container .faq-content p {
    margin-bottom: 1.25rem;
}

.faq-page-container .faq-content ul, 
.faq-page-container .faq-content ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.faq-page-container .faq-category-title {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: #000;
    font-weight: 700;
}

.faq-page-container .faq-category-description {
    margin-bottom: 1.5rem;
    color: #000;
    font-size: 1.125rem;
    line-height: 1.6;
    padding-bottom: 0.5rem;
    border-bottom: none;
}

/* Add space between categories */
.faq-page-container .accordion-wrapper {
    margin-bottom: 3rem;
}

/* Message for no FAQ items */
.faq-page-container .no-faq-items {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 0;
    color: #000;
    font-style: italic;
    border: 4px solid #000;
}

/* Responsive Adjustments for FAQ Page */
@media (max-width: 768px) {
    .faq-page-container {
        padding: 2rem 0;
    }
    
    .faq-page-container .faq-title {
        font-size: 2rem;
    }
    
    .faq-page-container .faq-content {
        font-size: 1rem;
    }
    
    .faq-page-container .faq-category-title {
        font-size: 1.5rem;
    }
} 