
/* Base styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.bt-layout__content {
    padding: 32px;
    background-color: #1c1c1c;
}

.bt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.text-center {
    text-align: center;
}

.faqs {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 0 -16px;
}

.folder {
    background-color: #202020;
    padding: 24px;
    border-radius: 8px;
    flex: 1 1 calc(33.33% - 32px) !important;
    min-width: 300px;
}
.text-light{
    color: #ffffff !important;
}

.folder h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.2 !important;
}

.folder ul {
    list-style: none;
    padding: 0;
}

.folder__title-link{
    line-height: 1.2 !important;
    color: #fff !important;
}

.folder__title-link:hover{
    color: #007bff !important;
}

.bt-article-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease !important;
    line-height: 1.5 !important;
}

.bt-article-item a:hover {
    color: #007bff;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .folder {
        flex: 1 1 calc(50% - 32px);
    }
}

@media (max-width: 768px) {
    .folder {
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {
    .bt-layout__content {
        padding: 16px;
    }
}

.bt-article-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.bt-article-item a::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid #007bff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.bt-article-item a:hover::before {
    border-left-color: #007bff;
}
