        .faq-item {
            transition: all 0.3s ease;
        }
        .faq-item.active {
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        }
        .faq-toggle {
            transition: transform 0.3s ease;
        }
        .faq-toggle.active {
            transform: rotate(180deg);
        }
        .underline-animation {
            position: relative;
        }
        .underline-animation::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #2563eb;
            transition: width 0.3s ease;
        }
        .underline-animation:hover::after {
            width: 100%;
        }
