/* Für Bootstrap Light Theme */
.sortable-placeholder-light {
    background-color: #f8f9fa; /* Hintergrundfarbe anpassen */
    border: 2px dashed #ced4da; /* Randfarbe anpassen */
    margin: 5px 0;
    height: 25px; /* Höhe des Platzhalters anpassen */
    width: 100%; /* Breite des Platzhalters anpassen */
}

/* Für Bootstrap Dark Theme */
.sortable-placeholder-dark {
    background-color: #343a40; /* Hintergrundfarbe anpassen */
    border: 2px dashed #6c757d; /* Randfarbe anpassen */
    margin: 5px 0;
    height: 25px; /* Höhe des Platzhalters anpassen */
    width: 100%; /* Breite des Platzhalters anpassen */
}
body {
    font-family: "Roboto", sans-serif;
    background-color:#f2fdf5;
}

.job-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #f9f9f9;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.job-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.job-description {
    color: #6c757d;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.hero {
    height: 100vh;
    background: linear-gradient(to bottom right, #007bff, #6610f2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.content {
    padding: 100px 15px;
    background-color: #f8f9fa;
}

.apple-glassmorphism {
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-radius: 12px;
}

.apple-transition {
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.info-card {
    border-radius: 1rem;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    text-align: center;
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.icon-green { color: #3cb371; }     /* leaf */
.icon-blue { color: #1e90ff; }      /* building */
.icon-purple { color: #7a5cff; }    /* euro */
.icon-orange { color: #ff7f50; }    /* award */

.navbar-nav .nav-link {
    font-size: 0.875rem;         /* ≈14px – kleiner als Standard */
    position: relative;
    top: -1px;                   /* leicht nach oben verschoben */
    padding-top: 0.75rem;        /* optional: feiner Ausgleich */
    padding-bottom: 0.75rem;
    transition: color 0.2s ease-in-out;
    font-weight: 500;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #28a745;
    top: -2px;                   /* beim Hover noch etwas mehr „Erhebung“ */
}

.navbar-nav .nav-link.active {
    color: #28a745;
    font-weight: 600;
    top: -2px;
}

.fade-in-left,
.fade-in-right {
    opacity: 0;
    transform: translateX(0);
    transition: all 1s ease;
}

.fade-in-left.appear {
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 1s ease forwards;
}

.fade-in-right.appear {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 1s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-card {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.2s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

.step-number {
    font-weight: 600;
    font-size: 0.9rem;
    color: #000;
}

/* Ausgangszustand */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Wenn sichtbar */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.job-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.job-description {
    color: #6c757d;
}

/* new style! */
body {
    padding-top: 70px;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.hero {
    height: 100vh;
    background: linear-gradient(to bottom right, #007bff, #6610f2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.content {
    padding: 100px 15px;
    background-color: #f8f9fa;
}

.apple-glassmorphism {
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-radius: 12px;
}

.apple-transition {
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.info-card {
    border-radius: 1rem;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    text-align: center;
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.icon-green { color: #3cb371; }     /* leaf */
.icon-blue { color: #1e90ff; }      /* building */
.icon-purple { color: #7a5cff; }    /* euro */
.icon-orange { color: #ff7f50; }    /* award */


.feature-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background: #fff;
    transition: transform 0.3s ease;
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card .card-body {
    padding: 1.5rem;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d6f2e2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .icon-circle {
    background-color: #eafff0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 1rem;
}

.feature-card .btn {
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 0.5rem;
}

/* Animation Ausgangszustand */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.image-wrapper {
    overflow: hidden;
    height: 200px;
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.1); /* Zoom-In */
}

.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    width: calc(200%); /* doppelt wegen Duplikate */
    animation: scroll 70s linear infinite;
}

.logo {
    flex: 0 0 auto;
    width: 300px; /* oder responsive mit max-width */
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-height: 60px;
    max-width: 100%;
    opacity: 0.8;
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.dynamic-gradient {
    background: linear-gradient(to right, #e6f5ec, #d9f0ff);
    transition: filter 0.2s linear;
}

.bg-gradient-green {
    background: linear-gradient(135deg, #e0f7e9, #a8dbc7);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #e3f0ff, #b0cfff);
}

.bg-gradient-pink {
    background: linear-gradient(135deg, #f9e8f1, #dab6d9);
}


.underline {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255,255,255,0.5);
    transition: all 0.3s ease-in-out;
}

.stat-card:hover .underline {
    width: 60px;
    background-color: #fff;
}



/* Navbar allgemein */
#mainNavbar {
    background-color: #f6fdf8;
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Branding links */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand strong {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1d1d1f;
}

.navbar-brand span {
    font-size: 0.95rem;
    font-style: italic;
    color: #666;
}

/* Hauptnavigation */
.navbar-nav .nav-link {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1d1d1f !important;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #198754 !important;
    border-bottom: 2px solid #198754;
    background-color: transparent;
}

.navbar-nav .nav-link.active {
    color: #198754 !important;
    font-weight: 600;
    border-bottom: 2px solid #198754;
}

/* Dropdown-Pfeil */
.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: 0.1em;
    font-size: 0.65em;
}

/* Dropdown Menü */
.dropdown-menu {
    border-radius: 0.5rem;
    box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    min-width: 14rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.55rem 1.2rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #e6f4ec;
    color: #198754;
}

/* Button "Anmelden" */
.btn-success {
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 0.25rem 0.75rem rgba(25, 135, 84, 0.2);
}

.btn-custom-green {
    background-color: #4caf68;
    color: white;
    border: none;
}
.btn-custom-green:hover {
    background-color: #43a05c;
}
.feature-box {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    padding: 2rem;
}
.feature-item {
    background-color: #ecfdf5;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border-left:4px solid #10b981;
}

.feature-item-card-1 {
    background-color:#f0fdf4 !important;
}

.feature-item-card-2 {
    background-color:#ecfdf5 !important;
}

.feature-item-card-3 {
    background-color:#f0fdfa !important;
}

.feature-icon {
    background-color: #4caf68;
    color: white;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.feature-icon-1 {
    background-color:#59c07b;
}

.feature-icon-2 {
    background-color:#10b981;
}

.feature-icon-3 {
    background-color:#14b8a6;
}

.card-feature {
    border-radius: 1rem;
    padding: 2rem;
    background-color: white;
    border: 1px solid #eee;
    box-shadow: 0 0 15px rgba(0,0,0,0.03);
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.card-feature:hover {
    border-color: #11b75c;
    box-shadow: 0 0 0 3px rgba(17, 183, 92, 0.2);
}

.icon-box {
    background-color: #4caf68;
    color: white;
    border-radius: 12px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 1rem;
}

.icon-box-1 {
    background-color:#59c07b;
}

.icon-box-2 {
    background-color:#10b981;
}

.icon-box-3 {
    background-color:#14b8a6;
}

.badge-custom {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
    display: inline-block;
}
.badge-finanzierung { background-color: #59c07b; }
.badge-reichweite { background-color: #10b981; }
.badge-netzwerk { background-color: #14b8a6; }

.feature-list li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-list li i {
    color: #4caf68;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.success-box {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    height: 100%;
}
.tag {
    display: inline-block;
    background-color: #4caf68;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.highlight-box {
    background-color: #edf9f0;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 1rem 0;
}
.quote-box {
    border-left: 4px solid #4caf68;
    padding-left: 1rem;
    font-style: italic;
    color: #374151;
    font-size: 0.95rem;
}
.star-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: gold;
    font-size: 1.1rem;
}

.number-circle {
    background-color: #4caf68;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: bold;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.numbered-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.numbered-item:nth-child(2) .number-circle {
    background-color: #009f6b;
}

.numbered-item:nth-child(3) .number-circle {
    background-color: #007e6d;
}

.impact-box {
    background-color: #eefcf5;
    padding: 2rem;
    border-radius: 1rem;
}

.impact-step {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.impact-step i {
    font-size: 1.5rem;
    color: #1e8f67;
}

.impact-arrow {
    text-align: center;
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .impact-box {
        margin-top: 2rem;
    }
}

.twzm-step-card {
    background-color: #f8f9f8;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    position: relative;
}

.twzm-step-number {
    background-color: #4caf68;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.twzm-step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.twzm-checklist {
    list-style: none;
    padding-left: 0;
}

.twzm-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.twzm-checklist i {
    color: #4caf68;
    margin-top: 3px;
}

.twzm-arrow-down {
    text-align: center;
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .twzm-wrapper {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

.kontakt-section {
    background: linear-gradient(to bottom, #fafcfd 0%, #f8f8f9 100%);
    padding: 6rem 1rem;
    text-align: center;
}

.kontakt-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.kontakt-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #333;
}

@media (max-width: 768px) {
    .kontakt-title {
        font-size: 2.25rem;
    }

    .kontakt-subtitle {
        font-size: 1.1rem;
    }
}

.tucf-form-wrapper {
    padding: 5rem 1rem;
}

.tucf-form-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tucf-form-box input,
.tucf-form-box select,
.tucf-form-box textarea {
    border-radius: 0.5rem;
}

.tucf-btn-submit {
    background-color: #4caf68;
    color: white;
    font-weight: 500;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem;
    transition: background-color 0.2s ease;
}

.tucf-btn-submit:hover {
    background-color: #43a95f;
}

.tucf-contact-box {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.tucf-contact-icon {
    font-size: 1.25rem;
    color: #4caf68;
    margin-top: 0.3rem;
}

.tucf-contact-email {
    color: #11b75c;
    font-weight: 500;
    text-decoration: none;
}

.tucf-contact-email:hover {
    text-decoration: underline;
}

.tucf-heading {
    font-weight: 700;
}

@media (max-width: 768px) {
    .tucf-form-wrapper {
        padding: 3rem 1rem;
    }
}

.tfaq-section {
    padding: 5rem 1rem;
    background: #f5f5f6;
    text-align: center;
}

.tfaq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tfaq-subtitle {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.tfaq-box {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
}

.tfaq-box:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #11b75c;
}

.tfaq-question {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tfaq-answer {
    font-size: 0.95rem;
    color: #333;
}

@media (max-width: 767px) {
    .tfaq-title {
        font-size: 2rem;
    }
    .tfaq-subtitle {
        font-size: 1rem;
    }
}

.tcta-section {
    background: linear-gradient(135deg, #57ba74 0%, #6aa84f 100%);
    color: white;
    padding: 5rem 1rem;
    text-align: center;
}

.tcta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tcta-subtext {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.tcta-button {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    margin: 0 0.5rem;
    transition: all 0.2s ease;
}

.tcta-button-primary {
    background-color: #ffffff;
    color: #11b75c;
    border: none;
}

.tcta-button-primary:hover {
    background-color: #e9f8f0;
}

.tcta-button-disabled {
    background-color: rgba(255, 255, 255, 0.4);
    color: white;
    border: none;
}

.tcta-button-disabled:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .tcta-heading {
        font-size: 2rem;
    }

    .tcta-subtext {
        font-size: 1rem;
    }

    .tcta-button {
        display: block;
        width: 100%;
        margin: 0.5rem auto;
    }
}

.thero-badge {
    display: inline-block;
    background-color: #4caf68;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.thero-headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.thero-subtext {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
}

.thero-button-primary {
    background-color: #4caf68;
    color: white;
    font-weight: 600;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.thero-button-primary:hover {
    background-color: #43a95f;
}

.thero-button-outline {
    background-color: transparent;
    color: #4caf68;
    font-weight: 600;
    border: 2px solid #4caf68;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.thero-button-outline:hover {
    background-color: #eafbf1;
}

.thero-checklist {
    font-size: 0.95rem;
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.thero-checklist i {
    color: #4caf68;
    margin-right: 0.5rem;
}

.thero-card {
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.thero-advantages {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.thero-adv-box {
    flex: 1 1 30%;
    background: linear-gradient(135deg, #39d27f, #10967c);
    color: white;
    border-radius: 0.75rem;
    text-align: center;
    padding: 1rem;
    font-weight: 600;
}

.thero-adv-box span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

@media (max-width: 992px) {
    .thero-headline {
        font-size: 2.2rem;
    }

    .thero-advantages {
        flex-direction: column;
    }
}

.tumau-adv-section {
    padding: 4rem 1rem;
}

.tumau-adv-card {
    border: 1px solid #eee;
    border-radius: 1.25rem;
    padding: 2rem;
    background-color: #fff;
    transition: all 0.3s ease;
    height: 100%;
}

.tumau-adv-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.tumau-adv-icon {
    background-color: #f2f2f4;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tumau-check {
    color: #4caf68;
    margin-right: 0.5rem;
}

.tumau-btn-green {
    background-color: #4caf68;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    width: 100%;
    transition: background 0.2s ease;
}

.tumau-btn-green:hover {
    background-color: #3fa15e;
}

.tumau-subtitle {
    font-size: 1.1rem;
    color: #555;
}

@media (max-width: 767px) {
    .tumau-adv-icon {
        margin-bottom: 0.5rem;
    }
}

.testimonial-section {
    padding: 4rem 1rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
}

.testimonial-badge {
    display: inline-block;
    background-color: #4caf68;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.testimonial-star {
    color: #ffc107;
    float: right;
    font-size: 1.2rem;
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.testimonial-location {
    font-size: 0.875rem;
    color: #666;
    margin-top: -0.25rem;
}

.testimonial-highlight {
    background-color: #e9f8ed;
    padding: 0.6rem 1rem;
    border-radius: 0.6rem;
    font-weight: 600;
    margin: 1rem 0;
}

.testimonial-quote {
    border-left: 4px solid #4caf68;
    padding-left: 1rem;
    font-style: italic;
    color: #333;
}

@media (max-width: 767px) {
    .testimonial-star {
        display: none;
    }
}

.twzm-step-card {
    transition: all 0.3s ease-in-out;
    transform: translateY(0px);
    box-shadow: 0 0 0 rgba(0,0,0,0);
    border-radius: 12px;
    background-color: white;
    border: 1px solid #e5e5e5;
}

.twzm-step-card.hovered {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border-color: transparent;
}

.custom-checkbox-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    background-color: #fff;
}

.custom-checkbox-card input[type="checkbox"] {
    margin-top: 0.15rem;
    transform: scale(1.2); /* Größer und sichtbarer */
    cursor: pointer;
}

.custom-checkbox-card label {
    margin: 0;
    cursor: pointer;
}

.custom-checkbox-card .label-title {
    font-weight: 600;
    color: #212529;
}

.custom-checkbox-card .label-text {
    color: #6c757d;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}