﻿body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
/*    background: #f2f2f2;*/
}

/* CONTAINER */
.faq-container {
    max-width: 1500px;
    margin: 40px auto;
    padding: 20px;
}

/* TITLE */
.faq-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* LIST */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ITEM */
.faq-item {
    background: #e6e6e6;
    border-radius: 20px;
    padding: 18px 20px;
    transition: all 0.3s ease;
}

    /* ACTIVE ITEM */
    .faq-item.active {
        background: #ddd;
    }

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

/* ICON */
.faq-icon {
    width: 36px;
    height: 36px;
    background: #c4000f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

/* ANSWER */
.faq-answer {
    margin-top: 15px;
    font-size: 14px;
    color: #444;
    display: none;
    line-height: 1.6;
}

/* SHOW ANSWER */
.faq-item.active .faq-answer {
    display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .faq-title {
        font-size: 26px;
    }

    .faq-item {
        padding: 15px;
        border-radius: 15px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .faq-answer {
        font-size: 13px;
    }
}

                    
                
                    
              
                    
                
                    
              
                    
                
                    
                
                    
             