.materijali-page-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.materijali-page-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    margin-top:0px;
}

.materijali-page-container h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.materijali-page-container h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.materijali-page-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    padding-bottom: 40px;
}

.materijali-page-container > img {
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.leather-type {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 70px;
    text-align: left;
}

.leather-type.reverse {
    flex-direction: row-reverse;
}

.leather-type img {
    max-width: 50%;
    height: 400px;
    object-fit: cover;
}

.leather-type div {
    flex: 1;
}

.two-linked-images-container {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .leather-type,
    .leather-type.reverse {
        flex-direction: column;
    }

    .leather-type img {
        max-width: 100%;
        height: auto; /* Reset height for mobile */
        order: 1; /* Image first */
    }

    .leather-type div {
        order: 2; /* Text second */
    }
    .leather-type {
    margin-bottom:20px;
    gap:0px;
    }

}