/* General container styling for both services and products */
.product-landing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #8ad861; /* Green background */
    padding: 5px 100px; /* Adjust padding as needed */
    color: white;
    margin-top: 130px;
    margin-bottom: 60px;
}

.product-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Changed to flex-start for left-aligning */
    background-color: #1c3519;
    padding: 5px 100px;
    color: white;
    margin: 5px 0;
    border-radius: 8px;
    font-size: clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.179), 16px);
    line-height: 1.65;
}

.title {
    text-align: center;
    font-size: 1.5rem;
    color: #04611a;
    padding: 20px 0;
}

.product-info {
    width: 50%;
    margin-right: 40px;
    color: black
}


.product-image {
    flex: 1 1 50%;
    padding: 20px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.product-text {
    flex: 1 1 55%;
    line-height: 1.65;
    font-size: clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.179), 16px);
}

.product-text h2, .product-text h3 {
    color: #04611a;
    margin-top: 1rem;
}

.product-text p, .product-text ul {
    margin-bottom: 1rem;
}

.product-text ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.product-text li {
    margin-bottom: 0.5rem;
}

.blue-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1c3519;
    color: white;
    padding: 5px 100px;
    border-radius: 8px;
    margin: 40px 0;
    font-size: clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.179), 16px);
    line-height: 1.65;
}

.content-image img {
    width: max-content;
    height: max-content;
    margin-top: 48px;
    margin-left: 4px;
}

.features {
    list-style: none;
    padding: 0;
    color: white
}

.features li {
    margin-bottom: 10px;
    font-size: small;
    text-align: justify;
}

.features li i {
    color: limegreen;
    margin-right: 5px;
    font-size: small;
}

.demo-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 149px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease; /* Smooth background transition */
}

.demo-button:hover {
    background-color: #397f3c;
    padding: 10px 149px;
}

.services-section, .products-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
    max-width: 1200px;
    margin: 10px auto;
    padding: 80px 5px;
}

.service, .product {
    flex: 1 1 calc(33.333% - 40px);
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.service img, .product img {
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service h2, .product h2 {
    font-size: 1.5rem;
    color: #04611a;
    margin-bottom: 10px;
}

.service p, .product p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

#autoglass_kalkulator {
    background-color: #1c3519; /* Light green background - other option*/
    color: white; /* Dark blue text */
    margin-top: 25px;
}

#autoglass_kalkulator h1 {
    color: white; /* Darker blue heading */
    font-size: clamp(1.5rem, 2vw + 1rem, 1rem); /* Responsive heading size */
}
#autoglass_kalkulator h3 {
    color: white; /* Darker blue heading */
    
}

#autoglass_kalkulator p {
    color: white; /* Dark blue text */
    /*font-size: clamp(1rem, 1vw + 0.5rem, .3rem); /* Responsive paragraph size */
    font-size: small;
    text-align: justify;
}

#autoglass_kalkulator strong {
    color: white; /* Black for bold text */
}

#autoglassmarkt {
    background-color: #6ae482a5; /* Light green background - other option*/
    color: #003366; /* Dark blue text */
    margin-top: 25px;
}

#autoglassmarkt h1 {
    color: #002244; /* Darker blue heading */
    font-size: clamp(1.5rem, 2vw + 1rem, 1rem); /* Responsive heading size */
}

#autoglassmarkt p {
    color: #003366; /* Dark blue text */
    font-size: clamp(1rem, .5vw + 0.5rem, .5rem); /* Responsive paragraph size */
}

#autoglassmarkt strong {
    color: #000000; /* Black for bold text */
}
/* Button Section for Contact Us and Book a Demo */
.button-section {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center; /* Center the buttons */
}

.cta-button {
    display: inline-block;
    background-color: #156f0b; /* Green background for buttons */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #397f3c; /* Darker green on hover */
}

.cta-button.demo {
    background-color: #156f0b; /* Different color for demo button */
}

.cta-button.demo:hover {
    background-color: #0e4d07; /* Darker shade on hover */
}



/* Responsive design: Stack items in two columns for medium screens */
@media (max-width: 992px) {
    .service, .product {
        flex: 1 1 calc(50% - 40px); /* Two columns */
    }
}

/* Responsive design: Stack items in a single column for small screens */
@media (max-width: 768px) {
    .service, .product {
        flex: 1 1 100%; /* One column */
    }

    .product-landing {
        flex-direction: column;
        text-align: center;
    }

    .product-info, .product-image {
        width: 100%;
    }

    .product-land-image img {
        max-width: 80%;
        margin: 0 auto;
    }

    .product-content {
        flex-direction: column;
        align-items: center;
    }

    .product-image, .product-text {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .product-image {
        min-height: 150px;
    }

    .product-image img {
        width: 100%;
        height: auto;
        max-width: 300px;
    }

    .content-image img {
        max-width: 300px;
        margin: 0 auto;
    }

    .blue-section {
        flex-direction: column;
    }
    .demo-button {
        padding: 10px 50px; /* Adjust padding for smaller screens */
        width: auto; /* Ensure width adapts */
    }
    .button-section {
        flex-direction: column; /* Stack buttons vertically on small screens */
        gap: 10px;
    }

