/* cleanZone.css */

.section {
    padding: 60px 20px;
    max-width: 1200px;
    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-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.cleanZone-gallery figure {
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cleanZone-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.cleanZone-gallery figcaption {
    margin-top: 8px;
    font-size: 14px;
    color: #444;
    font-weight: 600;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .cleanZone-gallery {
        grid-template-columns: repeat(1, 1fr);
    }

    .cleanZone-gallery img {
        height: auto;
    }
}
