html {
    scroll-behavior: smooth;
}

.video-container {
    height: 315px;
    max-width: 560px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 560px) {
    .video-container {
        width: 100%;
    }
}

.faq-questions {
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    border-color: #333;
}

#faq-questions {
    font-size: 1.7em;
    padding: 0 20px;
    border-bottom: 2px solid black;
    padding-bottom: 5px;
}

.faq-hr {
    border-top: 1px solid #000; /* Adjust color and width as needed */
    margin: 3px 0; /* Adds space around the line */
}

.mini-section {
    padding: 0 20px;
}

.mini-section h3 h4 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.mini-section ul {
    list-style-type: none;
    padding: 0;
}

.mini-section li {
    margin-bottom: 10px;
    transition: transform 0.3s ease; /* Smooth transition effect */
}

.mini-section li:hover {
    transform: scale(1.01); /* Slightly increases the size */
}

.mini-section li a {
    text-decoration: none;
    color: #202268;
    transition: color 0.3s ease;
}

.mini-section li a:hover {
    color: #0056b3;
}

.faq-answers {
    padding: 0 20px;
    background-color: #fff;
}

.faq-answer {
    margin-bottom: 30px;
}

.faq-answer h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.faq-answer p {
    font-size: 1em;
    color: #666;
}

.slideshow-container {
    position: relative;
    max-width: 800px; /* Increased max width for the slideshow */
    margin: auto;
}

.slides {
    display: none; /* Hide all slides by default */
}

.active {
    display: block; /* Show the active slide */
}

img {
    width: 100%; /* Make images responsive */
    border-radius: 10px;
    height: auto; /* Maintain aspect ratio */
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border: none;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    transition: background-color 0.3s;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
    transform: translateY(-50%);
}

.next {
    right: 10px;
    transform: translateY(-50%);
}

:target {
    scroll-margin-top: 10px;
}

.pdf-container {
    width: 50%;
    height: 700px;
    border: none;
    overflow: hidden;
}

.pdf-container embed {
    width: 100%;
    height: 100%;
    border: none;
    overflow: hidden;
    display: block;
}

.sourcelink p {
    font-size: 10px;
    font-style: italic;
    user-select: none;
}

.pdf-image{
    width: 600px;
}

/* Media query to adjust for mobile screens */
@media screen and (max-width: 600px) {
    .pdf-container {
        width: 100%;
        height: 500px; /* Adjust height for mobile */
    }

    .faq-questions {
        flex-direction: column;
    }

    .pdf-image{
        width: 100%;
    }
}

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #11286A;
    border: none;
    border-radius: 10%;
    padding: 15px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

/* Button hover effect */
.floating-button:hover {
    background-color: #f15900;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
