.customer-gallery-container {
    padding: 20px;
}

/* Brand Section */
.brand-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    justify-items: center;
    text-align: center;
    padding: 20px;
}

.brand-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s;
}

.brand-item img {
    width: 100%;
    /* Ensure it fills the width of the parent container */
    height: 250px;
    /* Set a fixed height for all brand images */
    border-radius: 5px;
    object-fit: cover;
    margin-top: 10px;
    /* Make sure the image covers the area without stretching */
}


.brand-item p {
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: bold;
}

.brand-item:hover {
    transform: translateY(-10px);
}

/* Customer Gallery Section */
.customer-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.customer-gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.gallery-item img {
    width: 40%;
    max-width: 300px;
    height: 250px;
    margin: 10px;
    border-radius: 8px;
    object-fit: cover;
}

.gallery-item p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .brand-section {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .brand-section {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        max-width: 100%;
    }
}

.customer-gallery-header {
    font-size: 24px;
    color: var(--text-001, #1D242B);
    text-align: center;

    font-family: Quicksand;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}