/* FAQ Page Specific Styles - Following Brand Guidelines */

/* FAQ Hero Section */
.faq-hero {
    padding: 120px 0 60px;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Main FAQ Header */
.faq-page-title {
    font-family: 'Gotham Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 8px 0;
}

/* Last Updated Sub-header */
.faq-last-updated,
.faq-sub-header {
    font-family: 'Gotham Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    text-align: left;
    margin-bottom: 48px;
}

/* FAQ Content Section */
.faq-content {
    padding: 0 0 120px;
    background: #ffffff;
    overflow: visible;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
}

/* FAQ Section Headers (if categorized) */
.faq-section-header {
    font-family: 'Gotham Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #444444;
    margin: 24px 0 12px 0;
}

/* FAQ Items - Card style with rounded edges */
.faq-item {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: opacity 0.3s ease;
    position: relative;
}

.faq-question:hover {
    opacity: 0.9;
}

/* Plus/Minus Icon - Dark blue and on the left */
.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.icon-plus,
.icon-minus {
    font-size: 20px;
    color: #003b7a;
    font-weight: 400;
    line-height: 1;
}

.icon-minus {
    display: none;
}

.faq-question[aria-expanded="true"] .icon-plus {
    display: none;
}

.faq-question[aria-expanded="true"] .icon-minus {
    display: block;
}

/* FAQ Question Text */
.faq-question-text {
    font-family: 'Gotham Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    line-height: 1.5;
    flex: 1;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    width: 100%;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 1000px;
    padding: 0 24px 24px 56px;
}

.faq-answer p {
    font-family: 'Gotham Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    display: block;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.faq-answer a {
    color: #FF4500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.faq-answer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Smooth transition for answer visibility */
.faq-answer {
    opacity: 0;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    opacity: 1;
}

/* CTA Section */
.faq-cta {
    background: #f8f8f8;
    padding: 64px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-cta h2 {
    font-family: 'Gotham Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.faq-cta p {
    font-family: 'Gotham Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: #1192f2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Gotham Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #0077cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(17, 146, 242, 0.2);
}

/* Footer styles inherited from footer-mega.css */

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 24px;
    }
    
    
    .faq-hero {
        padding: 80px 0 40px;
    }
    
    .faq-page-title {
        font-size: 36px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question-text {
        font-size: 16px;
    }
    
    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 0 20px 20px 48px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .faq-cta {
        padding: 48px 0;
    }
    
    .faq-cta h2 {
        font-size: 24px;
    }
    
    .faq-cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    
    .faq-hero {
        padding: 60px 0 30px;
    }
    
    .faq-content {
        padding: 0 0 80px;
    }
    
    .faq-page-title {
        font-size: 28px;
    }
    
    .faq-icon {
        width: 18px;
        height: 18px;
    }
    
    .icon-plus,
    .icon-minus {
        font-size: 18px;
    }
}