.image-text-section ul {
    list-style-type: disc;
    list-style-position: inside;
    white-space: normal;
}

.image-text-section li {
    margin-bottom: 5px;
}

/* Basstil för sektionen */
.image-text-section {
    display: flex;
    justify-content: center;
    margin: 0 !important;
}

.image-text-container {
    display: flex;
    width: 100%;
}

.image-column {
    width: 50%;
}

.image-column__image {
    width: 100%;
    object-fit: cover;
}

.text-column {
    flex: 1;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-column__content {
    max-width: 500px;
}

.text-column__text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: "Serifa", sans-serif;
    color: #fff;
}

.text-column__button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.text-column__button:hover {
    background-color: #f0f0f0;
    color: #000;
}

/* Stilar för vänster- eller högermappning av bild */
.image-text-section.image-left .image-text-container {
    flex-direction: row;
}

.image-text-section.image-right .image-text-container {
    flex-direction: row-reverse;
}

/* Responsiv design */
@media (max-width: 768px) {
    .image-text-container {
        flex-direction: column;
    }

    .text-column {
        padding: 1.5rem;
    }
}
