.elementor-1775 .elementor-element.elementor-element-f978399{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS */:root {
            --primary-color: #0077b6;
            --secondary-color: #00b4d8;
            --accent-color: #fca311;
            --text-color: #333;
            --light-grey: #f8f9fa;
            --white: #ffffff;
            --border-radius: 8px; /* Behalten für andere Elemente */

        }
        
        
        
        body {
            font-family: 'Poppins', sans-serif!important;
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--light-grey);
            margin: 0;
            padding: 0;
        }
        .container {
            max-width: 900px;
            margin: 2rem auto;
            background-color: transparent; /* Macht den Hintergrund durchsichtig */
            padding: 0; /* Padding wird von den Sektionen übernommen */
        }
        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif!important;
            color: var(--primary-color);
            line-height: 1.3;
            font-weight: 700;
            text-align: left!important;
        }
        h1 {
            text-align: center!important; /* H1 soll zentriert bleiben */
            font-size: 3.5rem!important;
            margin-bottom: 0.5rem;
            padding: 0 1rem; /* Padding für den Fall, dass der Bildschirm schmal ist */
            font-weight: 700!important;
        }
        .subtitle {
            text-align: center; /* Subtitle ebenfalls zentriert */
            font-size: 1.25rem;
            font-weight: 400;
            color: #555;
            margin-top: 0;
            margin-bottom: 3rem;
            padding: 0 1rem;
        }
        h2 {
            font-size: 1.4rem!important;
            font-weight: 600!important;
            padding-bottom: 0.5rem;
            margin-top: 3.5rem;
            margin-bottom: 1.5rem;
            color: #ffffff!important;
        }
        h3 {
             font-size: 1rem!important;
             color: #ffffff!important;
             margin-top: 1.5rem!important;
        }
        h4 {
            font-size: 1.2rem!important;
            color: var(--secondary-color);
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
        }
        a:hover {
            text-decoration: underline;
        }
        strong {
             color: var(--primary-color);
             font-weight: 600;
        }
        
        .white-subtitle {
             color: #ffffff;
             font-weight: 600;
        }
        
        details {
            background: var(--white);
            border: 2px solid var(--primary-color);
            border-radius: 20px;
            margin-bottom: 1rem;
            box-shadow: none;
            overflow: hidden;
        }
        details:hover {
            box-shadow: 0 4px 8px rgba(0, 119, 182, 0.15);
        }
        summary {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1rem 1.5rem;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--primary-color);
            background-color: var(--white);
        }
        summary::after {
            content: '+';
            font-size: 1.8rem;
            font-weight: 400;
            color: var(--primary-color);
            transition: transform 0.3s ease-in-out, content 0.3s ease-in-out;
        }
        details[open] > summary {
            background-color: var(--white);
            border-bottom: 1px solid #e0e0e0;
        }
        details[open] > summary::after {
            content: '−';
            transform: rotate(180deg);
        }
        .details-content {
            padding: 0.5rem 1.5rem 1.5rem 1.5rem;
            border-top: none;
        }
        details[open] .details-content {
             animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }
        thead th {
            background-color: var(--primary-color);
            color: var(--white);
            font-weight: 600;
        }
        tbody tr:nth-of-type(even) {
            background-color: var(--light-grey);
        }
        tbody tr:last-of-type {
            border-bottom: 2px solid var(--primary-color);
        }
        tbody tr:hover {
            background-color: #e0f7fa;
        }
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            text-align: center;
            padding: 3rem;
            margin: 2rem 0; /* Angepasster Abstand */
            border-radius: 20px; /* Passend zum neuen Design */
        }
        .cta-section h2, .cta-section h3 {
            color: var(--white);
            border: none;
            margin-top: 0;
            text-align: center!important;
        }
        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--white) !important;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            text-decoration: none;
        }
        blockquote {
            background-color: var(--light-grey);
            border-left: 5px solid var(--accent-color);
            margin: 1.5rem 0;
            padding: 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        blockquote p {
            margin: 0;
        }
        blockquote strong {
            color: var(--primary-color);
            font-size: 1.1rem;
        }
        ul {
            list-style: none;
            padding-left: 0;
        }
        ul li {
            padding-left: 2rem;
            position: relative;
            margin-bottom: 0.75rem;
        }
        ul li::before {
            content: '✅';
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }
        ul li.problem::before {
             content: '❌';
        }

        /* --- NEUER CODE FÜR ABSCHNITTS-RAHMEN --- */
        
        .h2-content-box {
            color: #ffffff;
            background-color: #48B7F0;
            padding: 20px;
            border-radius: 20px;
            margin-bottom: 20px;
        }
        
        .content-section {
          background-color: #1191D1;
          border: 1px solid #e9ecef; /* Ein dezenter grauer Rahmen */
          border-radius: 50px;       /* Deine gewünschte Rundung */
          padding: 1.5rem 2rem;      /* Innenabstand, damit der Inhalt nicht am Rahmen klebt */
          margin-bottom: 2rem;       /* Abstand zum nächsten Abschnitt */
          box-shadow: var(--shadow);
        }

        .content-section > h2 {
          margin-top: 0; /* Entfernt den großen Abstand oben bei der Überschrift im Kasten */
        }/* End custom CSS */