.library-section-container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.library-section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #7B3294;
}

.library-section-paragraph {
    font-size: 18px;
    line-height: 1.9;
    text-align: justify;
    background: #ffffff;
    padding: 25px;
    color: black;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.library-section-gallery-heading {
    margin-top: 50px;
    font-size: 24px;
    text-align: center;
    color: #7B3294;
}

.library-section-gallery {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.library-section-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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