/* Using Inter as the primary font for a modern look */
body {
    font-family: 'Inter', sans-serif;
}
h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
}
/* Style for the active navigation link */
.nav-link.active {
    color: #10B981; /* Emerald Green */
    position: relative;
}
/* Underline effect for active link */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #10B981;
}
/* Typewriter cursor animation */
.typewriter-container {
    display: flex;
    align-items: center;
    min-height: 84px; /* Set a min-height based on the tallest text to prevent layout shift */
}
@keyframes blink {
    50% { border-color: transparent; }
}
.typewriter-cursor {
    border-right: 4px solid white;
    animation: blink 1s step-end infinite;
    margin-left: 4px;
}
/* Custom styles for FAQ accordion */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details[open] summary .plus-icon {
    transform: rotate(45deg);
}
