/* Injektoren-Prüfung Section */
.injektoren-section {
    padding: 4rem 0;
    background-color: #f4f4f4;
    margin-top: 3.5rem;
}

.injektoren-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.injektoren-image {
    flex: 1;
    margin-right: 2rem;
}

.injektoren-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.injektoren-text {
    flex: 1;
}

.injektoren-text h2 {
    font-size: 32px;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.injektoren-text p {
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

/* Lists Container for two columns */
.lists-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.lists-container .list-column h3 {
    margin-bottom: 1rem;
}

.list-column {
    flex: 1;
    margin-right: 2rem;
}

.list-column:last-child {
    margin-right: 0;
}

.injektoren-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.injektoren-list li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--color-black);
    display: flex;
    align-items: center;
}

.injektoren-list li i {
    color: var(--color-primary);
    margin-right: 1rem;
    font-size: 1.25rem;
}

.final-text-container {
    max-width: 800px;
    margin: 3rem auto 2rem;
    text-align: center;
}

.final-text-container h3 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.final-text-container p {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--color-black);
}

/* Fixed Background Section */
.fixed-background-section {
    position: relative;
    background-image: url('../../../assets/images/injektoren-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
    color: #fff;
}

.fixed-background-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 0;
}

.fixed-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fixed-background-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fixed-background-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.btn-contact {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: #fff;
    border-radius: 4px;
    border: 2px solid #fff;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-contact:hover {
    background-color: #333;
}

/* Additional Services Section */
.additional-services {
    padding: 4rem 0;
    background-color: #f4f4f4;
    text-align: center;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.additional-services h3 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.additional-services p {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.services-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.service-step {
    flex: 1;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-step i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-step h4 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.service-step p {
    font-size: 1rem;
    color: var(--color-black);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .injektoren-container {
        flex-direction: column;
        padding: 0 1rem;
    }

    .injektoren-image {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .lists-container {
        flex-direction: column;
    }

    .list-column {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .injektoren-list li {
        background-color: var(--body-color);
        color: #fff;
        padding: 1rem;
        border-radius: 8px;
    }

    .injektoren-list li i {
        font-size: 1.5rem;
        color: #fff;
    }

    .final-text-container {
        padding: 0 1rem;
    }

    .final-text-container h3 {
        font-size: 2.2rem;
    }

    .final-text-container p {
        font-size: 1.1rem;
    }

    .services-steps {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-step {
        padding: 1.5rem;
    }
}
