/* Required for smooth max-height transition */
.faq-answer {
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }
/* Icon rotation */
.rotate-icon {
            transition: transform 0.3s ease-in-out;
        }
#faq{
    color: black;
}




body {
    font-family: 'Inter', sans-serif;
    color: #d1d5db; /* Light gray text color */
    
    /* 1. Use the image URL */
    background-image: 
        /* 2. Add a white, semi-transparent overlay gradient to desaturate/whiten the image */
        linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
        /* 3. The actual image URL */
        url('/bckg_images/bckgv2_aionscope_sol.jpg');
    
    /* Fallback background color if the image doesn't load */
    background-color: #f0f0f0; 
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
