*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: sans-serif;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    padding: 20px;
}

.faq-container {
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

details {
    width: 80%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 3px;
}

details[open] {
    animation: smoothOpen 0.3s ease-in-out;
}

@keyframes smoothOpen {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 500px;
        opacity: 1;
    }
}

details:hover {
    background: #f9f9f9;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

details summary {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

details summary:hover {
    color: #007bff;
}

details summary::before {
    content: '🔍';
    font-family: FontAwesome;
    margin-right: 10px;
    color: #007bff;
}

p {
    margin-top: 10px;
    font-size: 16px;
    color: #555;
    transition: opacity 0.3s ease-in-out;
}