
                        .gdpr-popup {
                            position: fixed;
                            bottom: 20px;
                            left: 20px;
                            max-width: 300px;
                            background: #f0f0f0;
                            padding: 15px;
                            border-radius: 5px;
                            box-shadow: 0 0 10px rgba(0,0,0,0.1);
                            z-index: 1000;
                            font-size: 14px;
                            display: none;
                        }
                        .gdpr-popup p {
                            margin-bottom: 10px;
                        }
                        .gdpr-popup button {
                            background: #007bff;
                            color: white;
                            border: none;
                            padding: 8px 15px;
                            border-radius: 3px;
                            cursor: pointer;
                            margin-right: 10px;
                            font-size: 12px;
                        }
                        .gdpr-popup button.decline {
                            background: #f8f9fa;
                            color: #212529;
                            border: 1px solid #dee2e6;
                        }
                        /* ACCORDION/DROPDOWN STYLES */

.accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    background-color: #f7f7f7;
    color: #333;
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: #e8e8e8;
}

/* Optional: Add a chevron icon for visual cue */
.accordion-header::after {
    content: '\002B'; /* Plus sign */
    font-size: 24px;
    font-weight: bold;
    color: #F50707; /* Red color from your site */
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] {
    background-color: #F50707; /* Highlight active header */
    color: #fff;
}

.accordion-header[aria-expanded="true"]::after {
    content: '\2212'; /* Minus sign */
    transform: rotate(0deg);
    color: #fff;
}

.accordion-content {
    padding: 0 20px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-content p {
    padding: 20px 0;
    margin: 0;
}
                    