.pv-calculator-container {
    width: 1200px;
    height: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
    position: relative;
    overflow: hidden;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.logo,
.heading,
.google-reviews {
    flex: 1; /* jeweils 1/3 */
}

.logo img {
    height: 120px !important;
padding: 15px; 
}

.heading h1 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    text-align: center !important; 
}

.google-reviews {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #4b5563;
}

.google-reviews .stars {
    color: #facc15;
    margin-right: 5px;
}

.progress-line {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    position: relative;
}

.progress-line-fill {
    width: 0;
    height: 100%;
    background: #3FA3FD;
    transition: width 0.3s ease;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background: #fff;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 12.5%;
    cursor: pointer;
    padding: 15px !important; 
    background: #f6f6f6 !important; 
    margin: 5px !important; 
    border-radius: 5px !important;
    font-weight: bold !important; 
    color: black !important; 
}

.progress-step.active {
    background-color: #3fa3fd20 !important; 

}

.progress-step.completed {
    background-color: #3fa3fd20 !important; 

}

.progress-step svg {
    width: 24px;
    height: 24px;
    margin-bottom: 5px; 
}

.progress-step.active svg,
.progress-step.completed svg {
    stroke: #3FA3FD;
}

.progress-step span {
    font-size: 12px;
    color: #374151;
}

.progress-step.active span,
.progress-step.completed span {
    color: #3FA3FD;
    font-weight: 500;
}

.step {
    display: none;
    height: calc(600px - 110px);
    padding: 20px;
}

.step.active {
    display: block;
}

.step-content {
    display: flex;
    height: 100%;
    align-items: center;
    padding-bottom: 100px; /* Platz für Buttons */
    padding-left: 8px;
    padding-right: 8px;

}
.step-image {
    width: 50% !important;
    height: 350px !important;
    object-fit: cover;
    border-radius: 5px !important;
}

.step-question {
    width: 50%;
    padding-left: 50px;
}

.step-question h3 {
    font-size: 16px;
    color: #3fa3fd;
    margin-bottom: 10px;
}

.step-question h2 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 20px;
}

.step-question h2 .bold {
    font-weight: 700;
}

.step-question h2 .thin {
    font-weight: 400;
}

.option-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-box {
    flex: 1 1 calc(50% - 10px);
    padding: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    transition: all 0.2s ease;
}

.option-box:hover {
    border-color: #3FA3FD;
}

.option-box.selected {
    background: #3FA3FD;
    color: #fff;
    border-color: #3FA3FD;
}

.input-boxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    /* margin: 0 auto; */ /* entfernen oder überschreiben */
    margin: 0; /* sorgt für linksbündige Ausrichtung */
}

.input-boxes input {
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3FA3FD;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.offer-container {
    width: 66%;
    padding: 20px;
}

.offer-container h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 15px;
}

.offer-box-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.offer-box {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    width: 33% !important; 
}

.offer-box h4 {
    font-size: 16px;
    color: #111827;
    margin-bottom: 10px;
}

.offer-box p {
    font-size: 14px;
    color: #4b5563;
    margin: 5px 0;
}

.contact-form {
    width: 34%;
    padding: 20px;
    background: #f9fafb;
    border-left: 1px solid #e5e7eb;
}

.contact-form h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 15px;
}

.contact-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
}

.gdpr-checkbox {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #4b5563;
    margin-bottom: 10px;
}

.gdpr-checkbox input {
    width: auto;
    margin-right: 5px;
}

.gdpr-checkbox a {
    color: #3FA3FD;
    text-decoration: underline;
}

.thank-you {
    text-align: center;
    padding: 20px;
}

.thank-you h2 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 10px;
}

.thank-you p {
    font-size: 16px;
    color: #4b5563;
}

.start-btn,
.fixed-next-btn,
.fixed-prev-btn,
.fixed-submit-btn,
.fixed-restart-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
    background: #3FA3FD !important; 
    color: white !important; 
    border-color: #3FA3FD !important; 
}

.start-btn {
    display: block;
    margin: 20px auto;
}

.start-btn:hover {
    background: #2563eb;
}

.fixed-prev-btn {
    position: absolute;
    bottom: 20px;
    left: 28px;
    background: #6b7280;
    color: #fff;
}

.fixed-prev-btn:hover {
    background: #4b5563;
}

.fixed-next-btn,
.fixed-submit-btn {
    position: absolute;
    bottom: 20px;
    right: 0px;
    background: #3FA3FD;
    color: #fff;
}

.fixed-next-btn:hover,
.fixed-submit-btn:hover {
    background: #2563eb;
}

.fixed-restart-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #10B981;
    color: #fff;
}

.fixed-restart-btn:hover {
    background: #059669;
}

@media (max-width: 1024px) {
    .pv-calculator-container {
        width: 100%;
        height: auto;
        border-radius: 0;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .logo img {
        height: 50px;
    }

    .heading h1 {
        font-size: 18px;
        margin: 10px 0;
    }

    .google-reviews {
        font-size: 12px;
    }

    .progress-bar {
        flex-wrap: wrap;
        padding: 10px;
    }

    .progress-step {
        width: 25%;
        margin-bottom: 10px;
    }

    .progress-step span {
        font-size: 10px;
    }

    .step-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-image {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }

    .step-question {
        width: 100%;
        padding-left: 0;
    }

    .step-question h2 {
        font-size: 20px;
    }

    .option-box {
        flex: 1 1 100%;
    }

    .input-boxes {
        max-width: 100%;
    }

    .offer-container {
        width: 100%;
        padding: 15px;
    }

    .contact-form {
        width: 100%;
        padding: 15px;
        border-left: none;
        border-top: 1px solid #e5e7eb;
    }

    .fixed-prev-btn,
    .fixed-next-btn,
    .fixed-submit-btn,
    .fixed-restart-btn {
        position: static;
        margin: 10px auto;
        display: block;
        width: fit-content;
    }
}