﻿body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f2f2f2;
    color: #222;
}

/* CONTAINER */
.faq-container {
    max-width: 1500px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* TITLE */
.faq-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    /*    background: #ffefea;
    padding: 30px 20px;*/
}

/* LIST */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ITEM */
.faq-item {
    background: #FCF5E5;
    border-radius: 20px;
    padding: 18px 20px;
    transition: all 0.3s ease;
}

    /* ACTIVE ITEM */
    .faq-item.active {
        background: #FFF5EE;
    }

/* 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: #800080;
    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;
}
.download-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    background: #f8f9fa;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .download-item:hover {
        background: #e9f2ff;
        transform: translateX(5px);
        color: #0d6efd;
    }

.pdf-icon {
    font-size: 20px;
}
.download-title {
    font-size: 18px;
    font-weight: 600;
    color: #0d6efd;
    display: flex;
    align-items: center;
    gap: 10px;
}

    /* Add icon before title */
    .download-title::before {
        content: "📂";
        font-size: 20px;
    }

/* Active state (when opened) */
.faq-item.active .download-title {
    color: #dc3545;
}

/* Optional: smooth hover */
.faq-question:hover .download-title {
    color: #084298;
}
/* 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;
    }
}

                    
                
                    
              
                    
                
                    
              
                    
                
                    
                
                    
             