/* FAQ Page Specific Styles */

.faq-main-content {
    position: relative;
    z-index: 5;
    max-width: 1440px;
    margin: 0 auto;
    min-height: auto;
    padding: 40px 74px 80px;
}

/* Contact Cards Section */
.contact-section {
    /* Cards */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    padding: 0px;
    gap: 25px;
    position: relative;
    width: 100%;
    max-width: 1298px;
    height: auto;
    margin: 0 auto 60px auto;
    padding-top: 40px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: rgba(74, 144, 226, 0.5);
    border-radius: 16px;
    padding: 24px 34px;
    width: 415px;
    height: auto;
    flex: 1;
    max-width: 415px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.card-icon {
    /* Star icon styling from about page */
    width: 34px;
    height: 37px;
    display: block;
    object-fit: contain;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 37px;
    color: #333333;
    margin: 0;
}

.card-text {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #2C3E50;
    margin: 0;
}

.card-text strong {
    font-weight: 700;
}

/* FAQ Content Section */
.faq-section {
    /* Content */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
    position: relative;
    width: 100%;
    max-width: 1282px;
    height: auto;
    margin: 0 auto;
}

.faq-title {
    /* Title */
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #2C3E50;
    text-align: left;
    margin-bottom: 24px;
    max-width: 629px;
}

.faq-list {
    /* Body Text */
    width: 100%;
    max-width: 1282px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #2C3E50;
    display: flex;
    flex-direction: column;
    gap: 42px;
    padding: 0px;
}

.faq-item {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    width: 100%;
    text-align: left;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: 'Work Sans';
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    color: #2C3E50;
    margin-bottom: 12px;
    text-align: left;
}

.faq-answer {
    font-family: 'Work Sans';
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #2C3E50;
    margin: 0;
    text-align: left;
}

/* Hide old title */
.contact-title {
    display: none;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .faq-main-content {
        padding: 40px 60px 80px;
    }
}

@media (max-width: 1200px) {
    .faq-main-content {
        padding: 40px 24px 100px;
    }
    
    .contact-section {
        flex-direction: column;
        gap: 20px;
        padding-top: 40px;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 600px;
        height: auto;
        min-height: auto;
        padding: 24px;
        flex: none;
    }
    
    .faq-title {
        width: 100%;
        height: auto;
        margin-bottom: 24px;
        text-align: left;
    }
    
    .faq-list {
        width: 100%;
        height: auto;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .faq-main-content {
        padding: 24px 24px 120px;
    }
    
    .contact-section {
        flex-direction: column;
        gap: 16px;
        padding-top: 20px;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 20px;
        flex: none;
    }
    
    .card-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .card-text {
        font-size: 16px;
        line-height: 26px;
    }
    
    .card-icon {
        width: 28px;
        height: 30px;
    }
    
    .faq-title {
        font-size: 24px;
        line-height: 36px;
        text-align: left;
        margin: 0 0 32px 0;
        width: 100%;
    }
    
    .faq-list {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
        margin: 0;
        gap: 32px;
    }
    
    .faq-item {
        text-align: left;
        padding: 0 0 24px 0;
    }
    
    .faq-question {
        font-size: 16px;
        line-height: 26px;
        text-align: left;
        margin: 0 0 12px 0;
    }
    
    .faq-answer {
        font-size: 16px;
        line-height: 26px;
        text-align: left;
        margin: 0;
    }
}