.faq-section{
    padding:80px 0;
}

.faq-section .container {
    max-width: 900px;
    margin: auto;
}

/* FAQ Card */
.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Question */
.faq-question {
    width: 100%;
    padding: 20px 22px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

/* Icon */
.faq-question .icon {
    font-size: 20px;
    transition: 0.3s;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding-bottom: 0;
}

.faq-answer p {
    padding: 0 22px;
    color: #000;
    line-height: 1.6;
}

/* Active State - height is set via JS */
.faq-item.active .faq-answer {
    padding-bottom: 18px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

/* =================================
   RESPONSIVE BREAKPOINTS
================================= */

/* Large Tablets (992px and below) */
@media (max-width: 992px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .container {
        max-width: 90%;
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question .icon {
        font-size: 18px;
    }
    
    .faq-answer p {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 16px;
    }
}

/* Small Tablets & Large Phones (768px and below) */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section .container {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .faq-header h2 {
        margin-bottom: 20px;
    }
    
    .faq-item {
        margin-bottom: 12px;
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 14px 18px;
    }
    
    .faq-question .icon {
        font-size: 18px;
        flex-shrink: 0;
        margin-left: 12px;
    }
    
    .faq-answer p {
        padding: 0 18px;
        line-height: 1.5;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 14px;
    }
}

/* Mobile Devices (576px and below) */
@media (max-width: 576px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section .container {
        max-width: 100%;
        padding: 0 12px;
    }
    
    .faq-header h2 {
        margin-bottom: 15px;
    }
    
    .faq-item {
        margin-bottom: 10px;
        border-radius: 10px;
    }
    
    .faq-item:hover {
        transform: translateY(-1px);
    }
    
    .faq-question {
        padding: 12px 15px;
    }
    
    .faq-question .icon {
        font-size: 20px;
        margin-left: 10px;
    }
    
    .faq-answer p {
        padding: 0 15px;
        line-height: 1.5;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 12px;
    }
}

/* Small Mobile Devices (400px and below) */
@media (max-width: 400px) {
    .faq-section {
        padding: 30px 0;
    }
    
    .faq-section .container {
        padding: 0 10px;
    }
    
    .faq-header h2 {
        margin-bottom: 12px;
    }
    
    .faq-item {
        margin-bottom: 8px;
        border-radius: 8px;
    }
    
    .faq-question {
        padding: 10px 12px;
    }
    
    .faq-question .icon {
        font-size: 20px;
        margin-left: 8px;
    }
    
    .faq-answer p {
        padding: 0 12px;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 10px;
    }
}

/* Landscape Mode for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 12px 18px;
    }
    
    .faq-item.active .faq-answer {
        /* landscape keeps default JS height */
    }
}

/* Print Styles (Optional) */
@media print {
    .faq-section {
        padding: 20px 0;
    }
    
    .faq-item {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .faq-question {
        cursor: default;
    }
    
    .faq-question .icon {
        display: none;
    }
    
    .faq-answer {
        max-height: none !important;
        overflow: visible;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 0;
    }
}

/* =========================================
   TYPOGRAPHY STANDARDIZATION (USER REQUESTED)
   ========================================= */
/* Desktop */
.faq-section h2, .faq-header h2 { font-size: 40px !important; }
.faq-section h3, .faq-question { font-size: 22px !important; }
.faq-section p, .faq-answer p, .faq-header p { font-size: 18px !important; line-height: 1.6 !important; }
.faq-section li { font-size: 18px !important; line-height: 1.6 !important; }

/* Tablet and Mobile (<= 1024px) */
@media (max-width: 1024px) {
    .faq-section h2, .faq-header h2 { font-size: 35px !important; }
    .faq-section h3, .faq-question { font-size: 22px !important; }
    .faq-section p, .faq-answer p, .faq-header p { font-size: 18px !important; line-height: 1.6 !important; }
    .faq-section li { font-size: 18px !important; line-height: 1.6 !important; }
}