/* FAQ Sekcija */
.FAQ {
    padding: 20px 20px;
    background: #000;
    min-height: 100vh;

    margin-bottom: 200px;
}

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

.faq-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
    color: #FFBB3F;
    letter-spacing: 1px;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: white;
    margin-bottom: 60px;
    font-weight: 300;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FFBB3F;
}

.faq-item.specijalno .faq-question h3 {
    color: #28a745;
}

.faq-item.specijalno .faq-answer p,
.faq-item.specijalno .faq-answer li {
    color: #28a745;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    font-weight: 600;
    color: #000;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.8em;
    font-weight: 300;
    color: #000;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin: 0 0 15px 0;
    color: #333;
    line-height: 1.8;
    font-size: 1em;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 0;
    padding-left: 20px;
    color: #333;
    line-height: 1.8;
}

.faq-answer li {
    margin-bottom: 10px;
    font-size: 1em;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

/* Responsive dizajn */
@media screen and (max-width: 768px) {
    .FAQ {
        padding: 60px 15px;
    }

    .faq-title {
        font-size: 2em;
    }

    .faq-subtitle {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1.1em;
        padding-right: 15px;
    }

    .faq-icon {
        font-size: 1.5em;
        width: 25px;
        height: 25px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 0.95em;
    }
}

@media screen and (max-width: 480px) {
    .FAQ {
        padding: 40px 10px;
    }

    .faq-title {
        font-size: 1.6em;
        margin-bottom: 10px;
    }

    .faq-subtitle {
        font-size: 0.9em;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 18px 15px;
    }

    .faq-question h3 {
        font-size: 1em;
        padding-right: 10px;
    }

    .faq-icon {
        font-size: 1.3em;
        width: 20px;
        height: 20px;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 18px 15px;
    }
}

