html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

body {
    margin-bottom: 60px;
    font-family: 'Roboto', sans-serif;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

/* Loading Spinner */
#loader {
    display: none;
}

.loading #loader {
    display: flex;
}

/* Accordion Styles */
.faq-content {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

    .faq-content.open {
        max-height: 500px;
        opacity: 1;
    }

.rotate-icon {
    transition: transform 0.3s ease;
}

    .rotate-icon.open {
        transform: rotate(180deg);
    }

/* Slider Transition */
.slide {
    transition: opacity 0.5s ease-in-out;
}

    .slide.hidden-slide {
        opacity: 0;
        pointer-events: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .slide.active-slide {
        opacity: 1;
        position: relative;
        z-index: 1;
    }

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
