 .faq-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 50px 20px;
        max-width: 1100px;
        margin: auto;
        color:black;
    }
    .faq-image {
        width: 400px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .faq-content {
        flex: 1;
    }
    .faq-title {
        color: #f56c2d;
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 50px;
    }
    .faq-heading {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 20px;
    }
    .faq-list {
        list-style: none;
        padding: 0;
    }
    
   
    .faq-items {
        background: #f8f8f8;
        
        padding: 15px 20px;
        margin-bottom: 10px;
        border-radius: 10px;
        cursor: pointer;
        transition: 0.3s;
        border: 1px solid #ddd;
    }
    .faq-items:hover {
        background: #f5f5f5;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
    }
    .faq-answer {
        display: none;
        padding-top: 10px;
        font-size: 14px;
        color: #555;
        animation: fadeIn 0.3s ease-in-out;
    }
    .faq-items.active .faq-answer {
        display: block;
    }
    .faq-items i {
        color: #f56c2d;
        transition: transform 0.3s ease;
    }
    .faq-items.active i {
        transform: rotate(45deg);
    }
    @media (max-width: 768px) {
        .faq-container {
            flex-direction: column;
            text-align: center;
        }
        .faq-image {
            width: 100%;
        }
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-5px); }
        to { opacity: 1; transform: translateY(0); }
    }
    