.background-container {
    background-image: url("https://i0.wp.com/www.kitchendesigncentre.com/wp-content/uploads/2022/10/contemporary-modern-kitchens-img-22.png?fit=1595%2C876&ssl=1");
    background-size: cover;
    background-position: 50%;
    position: relative;
    height: 30vh;
}

h1 {
    text-align: center;
}

.section-title {
    text-align: center;
}

.image-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-row {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    width: 80%;
    align-items: center;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-image {
    width: 40%;
    height: auto;
    padding: 50px 0;
}

.content-text {
    width: 50%;
    padding: 50px 0;
    font-size: large;
    line-height: 1.6;
    letter-spacing: 0.02em;
    text-align: justify;
}

.blue-line {
    width: 50%;
    height: 2px;
    background-color: #7593b1;
    margin: 10px auto;
}

@media screen and (max-width: 900px) {
    .content-row {
        flex-direction: column;
        width: 95%;
    }

    .content-row:nth-child(even) {
        flex-direction: column;
    }

    
    .content-text {
        width: 95%;
        font-size: small;
        letter-spacing: normal;
    }

    .content-image {
        width: 100%;
    }

    .content-text {
        padding: 2%;
    }

    .blue-line {
        width: 80%;
    }
}

#contact-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0px 50px 0px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}