/* Propera FAQ Page Styles */

/* FAQ Content Section */
.faq-content {
    max-width: 800px;
}

.faq-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
}

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

.faq-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.faq-item a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-item a:hover {
    color: var(--gradient);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-item {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .faq-item h3 {
        font-size: 20px;
    }

    .faq-item p {
        font-size: 15px;
    }
}
