/* FAQ Section Styles */
.faq-section {
    padding: 60px 0;
}

.faq-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.faq-content {
    padding: 10px;
}

.faq-klausimas {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-atsakymas {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.faq-atsakymas p {
    margin-bottom: 10px;
}

.faq-image {
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.faq-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-image img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-item,
    .faq-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .faq-item:nth-child(even) .faq-content,
    .faq-item:nth-child(even) .faq-image {
        order: 0;
    }

    .faq-heading {
        font-size: 2rem;
    }

    .faq-klausimas {
        font-size: 1.25rem;
    }
}
