
        body {
        font-family: Arial, sans-serif;
        background: #f9f9f9;
        color: #333;
        margin: 0;
        padding: 0;
        }

        .faq-section {
        max-width: 900px;
        margin: 4rem auto;
        padding: 2rem;
        background: #fff;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
        border-radius: 10px;
        }

        .faq-section h2 {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 2rem;
        color: #111;
        }

        .accordion .faq-item {
        border: none;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        padding: 0 24px;
        margin-bottom: 18px;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        }
        .accordion .faq-item:hover {
        box-shadow: 0 18px 42px rgba(0,0,0,0.14);
        transform: translateY(-3px);
        }

        .faq-question {
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        font-size: 1.05rem;
        font-weight: 600;
        cursor: pointer;
        color: #333;
        padding: 1rem 0;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        }

        .faq-question:hover {
        color: #007acc;
        }

        .faq-icon {
        font-size: 1.2rem;
        color: #007acc;
        transition: transform 0.3s ease;
        }

        .faq-answer {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease, padding 0.3s ease;
        font-size: 0.95rem;
        color: #555;
        line-height: 1.6;
        }

        .faq-answer.show {
        padding: 0.5rem 0 1rem;
        max-height: 300px; /* or adjust based on content */
        }
    