/* Softwareoptimierung Section */
.software-section {
    padding: 4rem 0;
    background-color: #f4f4f4;
    margin-top: 3.5rem;
}

.software-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.software-image {
    flex: 1;
    margin-right: 2rem;
}

.software-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.software-text {
    flex: 1;
}

.software-text h2 {
    font-size: 32px;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.software-text p {
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

.software-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.software-list li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--color-black);
    display: flex;
    align-items: center;
}

.software-list li i {
    color: var(--color-primary);
    margin-right: 1rem;
    font-size: 1.25rem;
}

/* Button Style for Fixed Background Section */
.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; /* Darker hover effect */
}

/* Fixed Background Section */
.fixed-background-section {
    position: relative;
    background-image: url('../../../assets/images/software-bg.jpg'); /* Placeholder Image */
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
    color: #fff;
}

/* Darker overlay for background section */
.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;
}

/* Process Section */
.process-section {
    padding: 4rem 0;
    background-color: #f4f4f4;
    text-align: center;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-section h3 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.process-section p {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.process-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;
}

.process-step i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1rem;
    color: var(--color-black);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .software-container,
    .process-container {
        flex-direction: column;
        padding: 0 1rem;
    }

    .software-image {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .software-list li {
        background-color: var(--body-color);
        color: #fff;
        padding: 1rem;
        border-radius: 8px;
    }

    .software-list li i {
        font-size: 1.5rem;
        color: #fff;
    }

    .fixed-background-section h3 {
        font-size: 2rem;
    }

    .fixed-background-section p {
        font-size: 1rem;
    }

    .btn-contact {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .fixed-container {
        padding: 0 1rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }
}
