        .accordion {
            max-width: 1832px;
            margin: 0 0 30px 0;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
			margin-top:-32px;
			margin-bottom:4px;
        }
        .accordion_title {
            cursor: pointer;
            padding: 3px 20px;
            background-color: #330f0f;
            color: #ffbf00;
            font-family: Verdana;
			font-size:15px;
            font-weight: bold;
            transition: background-color 0.9s ease;
            border-bottom: 1px solid #654878;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .accordion_title:hover {
            background-color: #662600;color:#ffbf00;
        }
        .accordion_title::after {
            content: ' 🡳 ';
            font-size: 12px;
            transition: transform 0.9s ease;color:#aa9aff;
        }
        .accordion_title.active::after {
            transform: rotate(180deg);color:#ff6969;
        }
        .accordion_content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.9s ease;
            padding: 0 20px;
            background-color: #23204f;
        }
        .accordion_content.active {
            max-height: 1000px; /* Großer Wert für flexible Höhe */
            padding: 10px 20px;
        }
        .accordion_content p {
            margin: 5px 0;
            font-family: Verdana;
			font-size:15px;border-top: 1px solid #423c96;
        }
        .accordion_content a {
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .accordion_content a:nth-child(1) { color: #a1abff; }
        .accordion_content a:nth-child(2) { color: #3498db; }
        .accordion_content a:nth-child(3) { color: #2ecc71; }
        .accordion_content a:hover {color: #fff; }
		
        @media (max-width: 600px) {
            .accordion {
                width: 100%;
            }
            .accordion_title {
                font-size: 14px;
            }
        }