/* FAQ Grid Layout */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1600px;
    color: white;
    background-color: white;
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Mobile: single column */
@media(max-width:768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Accordion Item */
.faq-item {
    background-color: #1182ce;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

/* Accordion Question */
.faq-question {
    padding: 18px;
    font-size: 1rem;
    cursor: pointer;
    background: #259FF0;
    position: relative;
    font-weight: bold;
}

/* Add + sign */
.faq-question::after {
    content: '\002B';
    /* Plus sign */
    font-size: 18px;
    font-weight: bold;
    color: #005994;
    position: absolute;
    right: 20px;
}

/* Change + to – when active */
.faq-item.active .faq-question::after {
    content: '\2212';
    /* Minus sign */
}

/* Accordion Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #1182ce;
    padding: 0 18px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

/* Answer Text */
.faq-answer p {
    margin: 15px 0;
    padding-bottom: 15px;
}

/* Highlighted text */
.highlight {
    color: #ffd000;
    font-weight: bold;
}

/* Tablet responsiveness */
@media (max-width:1024px) {
    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1.1rem;
    }
}

/* Mobile responsiveness */
@media (max-width:600px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}

/* Disable image dragging & right-click saving */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}