.section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    color: #333;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
    color: #222;
}

.section p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.cleanZone-installed-gallery {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.cleanZone-installed-gallery figure {
    background-color: transparent;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}

.cleanZone-installed-gallery img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cleanZone-installed-gallery figcaption {
    margin-top: 16px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    font-size: 18px;
    line-height: 1.6;
    color: #222;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.no-image {
    width: 100%;
    height: 500px;
    background-color: #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    .cleanZone-installed-gallery img,
    .no-image {
        height: auto;
    }

    .cleanZone-installed-gallery figcaption {
        font-size: 16px;
        padding: 16px;
    }
}
