.container h1{
	color: black;
    text-align: center;
    margin-bottom: 0;
    font-size: 34px;
    font-family: Arial, sans-serif;
}

.container p {
    text-align: center;
    margin-bottom: 0;
    font-family: Arial, sans-serif;
}

.products-image {
	margin-top: 20px;
}

.products-content p {
	text-align: justify;
	line-height: 150%;
	font-size: 18px;
}

/* Стилі для сторінки послуг */
.products-top {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 20px 0;
}

.products-image {
    flex: 0 0 auto;
}

.products-image img {
    width: 600px;
    height: 600px;
}

.products-content {
    flex: 1;
    text-align: left;
}

.products-content h1 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.products-content h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.products-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
	text-align: justify;
}

.products-list {
    list-style: none;
    padding: 0;
	margin: 50px;
}

.products-list li {
    margin: 15px 0;
    font-size: 1.4em;
}

.products-list a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

.products-list a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.products-pricing {
    margin-top: 20px;
    text-align: center;
}

.pricing-list {
    list-style: none;
    padding: 0;
}

.pricing-list li {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 1px;
}

.products-logo {
	display: flex;
	flex-wrap: wrap;
	margin: 20px;
}

.osaka-logo {
	margin: 20px;
}

.tosot-logo {
	margin: 20px;
}

.nordis-logo {
	margin: 20px;
}

.haier-logo {
	margin: 20px;
}

.gree-logo {
	margin: 20px;
}

.cooper-logo {
	margin: 20px;
}

.hitachi-logo {
	margin: 20px;
}

.daikin-logo {
	margin: 20px;
}

.me-logo {
	margin: 20px;
}

.samsung-logo {
	margin: 20px;
}



/* Адаптивні стилі для смартфонів */
@media (max-width: 768px) {

    /* Секція послуг */
    .products-top {
        flex-direction: column;
        align-items: center;
    }

    .products-image img {
        width: 100%;
        height: auto;
    }

    .products-content {
        text-align: center;
    }

    .products-content h1 {
        font-size: 1.5em;
    }

    .products-content h2 {
        font-size: 1.3em;
    }

    .products-content p {
        font-size: 1em;
    }

    .products-list li {
        font-size: 1.2em;
        margin: 10px 0;
    }

    .pricing-list li {
        font-size: 1em;
    }