

/* Billede med tekst henover */
.image-with-text {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.image-with-text img {
    width: 40%;
    height: auto;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
}

/* Testimonial-sektion */
.testimonial-row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.testimonial-row.reverse {
    flex-direction: row-reverse;
}

.testimonial-image {
    flex: 1;
    padding: 10px;
}

.testimonial-image img {
    max-width: 150px;
    height: auto;
}

.testimonial-text {
    flex: 2;
    padding: 10px;
    font-size: 16px;
}

/* Footer styling */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
    position: relative;
    bottom: 0;
    width: 100%;
}
