.modern-faq-container {
    margin: 1rem auto;
    padding: 0 1rem;
	display: flex;
    flex-direction: column;
    align-items: center;
}
.faq-wrapper {
    width: 1905px;
	padding: 0 80px;
	 display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolon */
}

.faq-item {
    cursor: pointer;
}

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

.faq-question {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	width:80%;
	  
}

.faq-question h4 {
    margin: 0;
	color: #003a78 !important;
    font-size: 18px !important;
}

.faq-icon {
	color: #003a78;
    transition: transform 0.3s ease;
	font-size: 30px;
    font-weight: 600;
}

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

.faq-answer {
    display: none;
color: #323232cc;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
	padding-left:20px;
}

.faq-answer h4 {
color: #ff0606 !important;
    font-family: "Montserrat", sans-serif !important;
    font-size: 14px !important;
}

.faq-item.active .faq-answer {
    display: block;
	width:70%;
}



@media (max-width: 768px) {
    .modern-faq-container {
        margin: 1rem auto;
    }

    .faq-question h4 {
        font-size: 1rem;
    }
	.faq-wrapper {
    width: auto;
}
}
@media (max-width: 1670px) {
	.faq-wrapper {
    width: 100%;
		padding:0;
}
}