.faq-box {
    font-family: 'Roboto', sans-serif;
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.faq-container details {
    padding: 0.8rem 0;
}

.faq-container summary {
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--highlight-color);
    position: relative;
    transition: color 0.3s ease-in-out;
}

.faq-container summary::marker {
    font-size: 1.5rem;
}

.faq-container summary:focus {
    outline: none;
}

.faq-container p {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.9;
}

.faq-container details[open] summary {
    color: var(--text-color);
    font-weight: bold;
}

.faq-container details[open] p {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}