﻿.gallery {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
}

.gallery-item {
    width: 25%;
    padding: 1px;
}

    .gallery-item > a > img {
        width: 100%;
        height: 200px;
        padding: 2px;
        border: 1px solid #C6C6C6;
        object-fit: cover;
        transition: .5s ease-in-out;
        display: block;
    }

        .gallery-item > a > img:hover {
            border: 1px solid #9E9E9E;
        }

img {
    opacity: 1;
    transition: opacity 1s;
}

    img[data-src] {
        opacity: 0;
    }


.faq-section {
    background: linear-gradient(135deg, #0070c0 0%, #008000 100%);
    padding: 3rem 1rem;
    color: #1e293b;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #f9fafb;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-title {
    font-size: 2rem;
    margin: 0;
    color: #1d2553;
}

.faq-subtitle {
    color: #1e293b;
    font-size: 1rem;
    opacity: .7;
    text-align: center;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #0070c0;
    border-radius: 10px;
    overflow: hidden;
    transition: all .3s ease;
}

    .faq-item:hover {
        border-color: #ff6600;
        transform: translateY(-2px);
    }

.faq-question {
    padding: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: #1d2553;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .faq-question::after {
        content: "+";
        font-size: 1.2rem;
        color: #ff6600;
        transition: transform .3s ease;
    }

.faq-item[open] .faq-question::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1rem 1rem;
    font-size: .95rem;
    line-height: 1.5;
    color: #1e293b;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}