/* Serrapps Design System Style Utilities */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@300;400;500;600;700&display=swap');

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* Custom Scrollbar for Serrapps Dark Slate Theme */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #051424;
}
::-webkit-scrollbar-thumb {
    background: #1c2b3c;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #273647;
}

/* Glassmorphism / Serrapps Tonal Card */
.glass-card {
    background: rgba(18, 33, 49, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(69, 70, 77, 0.3);
}

.glass-card:hover {
    border-color: rgba(68, 226, 205, 0.5);
    background: rgba(28, 43, 60, 0.8);
}

/* Accordion Animation for FAQ */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}
.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 24px;
}
.accordion-item.active .chevron-icon {
    transform: rotate(180deg);
}

.article-content h2 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #d4e4fa;
}

.article-content p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: #c6c6cd;
}

.article-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 8px;
    list-style-type: disc;
    color: #c6c6cd;
}

.article-content strong {
    color: #d4e4fa;
    font-weight: 600;
}
