.gallery-section {
    margin-bottom: 2rem;
    background: white;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(37, 99, 235, 0.10);
    padding: 2.2rem 1.7rem 1.7rem;
}

.gallery-section .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.3rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.gallery-section .section-desciption {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gallery-filters button {
    background: #e0e7ff;
    color: #762A8F;
    border: none;
    border-radius: 8px;
    padding: 0.5em 1.2em;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 1px 4px rgba(37, 99, 235, 0.06);
}

.gallery-filters button.active,
.gallery-filters button:hover {
    background: linear-gradient(90deg, #762A8F 0%, #d49ce7 100%);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
    overflow: hidden;
    transition: box-shadow 0.2s;
    cursor: pointer;
}

.gallery-item:hover {
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.16);
}

.gallery-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
    transition: transform 0.2s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-title {
    text-align: center;
    font-size: 1.05rem;
    color: #762A8F;
    font-weight: 600;
    padding: 0.7em 0.2em;
    background: #f0fdfa;
    border-radius: 0 0 12px 12px;
}