
  .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
  }

  .question {
    cursor: pointer;
    position: relative;
    font-weight: bold;
    font-size: 1.1em;
    padding-right: 30px;
  }

  .question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.3em;
    transition: transform 0.2s ease;
  }

  .faq-item.active .question::after {
    content: '–';
  }

  .answer {
    display: none;
    margin-top: 10px;
    color: #fff;
  }

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

    #overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        display: none;
        z-index: 9998; 
    }

    #sliding-image-container {
        position: fixed;
        top: 152px;
        background-color: #fff;
        padding: 10px;
        border: 1px solid #ccc;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        display: none;
        opacity: 0; 
        pointer-events: none; 
        transition: opacity 0.5s ease, right 0.5s ease;
        right: -470px; 
        z-index: 9999; 
    }
    #sliding-image-container p {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: #000;
    margin-bottom: 5px;
}
    .sliding-image {
        max-width: 100%;
        max-height: 200px; 
        width: auto;
        height: auto;
        padding: 5px;
    }
.close-button {
    position: absolute;
    top: -3px;
    left: 1px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: red; 
}

    #show-sliding-image {
        position: fixed;
        top: 85px;
        right: 10px;
        z-index: 10000;
        padding: 5px 10px;
        background-color: #0eb014;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        outline: none;
        line-height: 1.2em;
    }

    #show-sliding-image:hover {
        background-color: #127081;
    }

    #show-sliding-image:focus {
        box-shadow: 0 0 0 2px #fff, 0 0 0 4px #007bff; 
    }
    .block-title {
        font-weight: bold;
        font-size: 24px;
        text-align: center;
        padding: 5px 5px;
        z-index: 1;
        color: #127081;
        width: 100%;
    }

@media only screen and (max-width: 768px) {
    #sliding-image-container {
        top: 132px;
        right: 0; 
        padding: 5px; 
        width: 90%;
    }
    .close-button {
        top: -3px;
    }
    #show-sliding-image {
        top: 85px; 
        right: 10px; 
        font-size: 14px; 
    }
    .block-title {
        font-size: 22px; 
        padding: 8px 5px; 
    }
}


@media only screen and (min-width: 769px) and (max-width: 1024px) {
    #sliding-image-container {
        top: 140px; 
        width: 45%; 
    }
    #show-sliding-image {
        right: 10px; 
    }
        #show-sliding-image {
        top: 90px;
    }
}
