     body {
            margin: 0;
            font-family: "Montserrat", Arial, sans-serif;
            background: linear-gradient(120deg, #402898 0%, #df43c0 100%);
            color: #fff;
            height: 100% !important;
        }

        .background {
            background: linear-gradient(120deg, #402898 0%, #df43c0 100%) !important;
        }

        .library-header {
            background: #23116d;
            padding: 22px 0 0 0;
            position: relative;
        }

        .header-content {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .header-img {
            width: 120px;
            height: 120px;
            border-radius: 10px;
            object-fit: cover;
            margin-right: 24px;
        }

        .header-info {
            flex: 1;
            margin-right: 24px;
        }

        .header-info h1 {
            font-size: 2.3rem;
            margin: 0 0 6px 0;
            letter-spacing: 1px;
        }

        .description {
            margin: 0 0 10px 0;
            font-size: 1.1rem;
        }

        .subtitle {
            margin: 0 0 6px 0;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 2px;
        }

        .header-icon {
            width: 70px;
            margin-left: 18px;
            margin-top: 12px;
        }

        .gallery {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            padding: 22px 0;
            background: #fff;
        }

        .gallery img {
            width: 130px;
            height: 100px;
            border-radius: 7px;
            object-fit: cover;
            border: 2px solid #e2e2e2;
        }

        .services {
            text-align: center;
            padding: 32px 24px 8px 24px;
        }

        .services h2 {
            font-size: 2rem;
            margin-bottom: 26px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 1px;
        }

        .service-cards {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 36px;
        }

        .card {
            background: rgba(255, 255, 255, 0.07);
            border-radius: 14px;
            width: 300px;
            min-height: 380px;
            color: #fff;
            padding: 20px 12px 16px 12px;
            box-shadow: 0 2px 22px rgba(38, 8, 137, 0.15);
            position: relative;
            text-align: left;
        }

        .card img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 8px;
        }

        .card-flag {
            position: absolute;
            top: 14px;
            left: 14px;
            background: #23116d;
            color: #fff;
            font-size: 0.88rem;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 50px;
            letter-spacing: 1px;
        }

        .card h3 {
            margin: 12px 0 8px 0;
            font-size: 1.13rem;
            font-weight: 700;
        }

        .card p {
            font-size: 0.98rem;
            margin-bottom: 0;
        }

        .digital-services {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 34px;
            margin-top: 42px;
        }

        .digital-info {
            max-width: 380px;
            text-align: left;
        }

        .digital-info img {
            width: 115px;
            height: 90px;
            border-radius: 10px;
            object-fit: cover;
            margin-bottom: 9px;
        }

        .digital-services p {
            font-size: 1rem;
        }

        .digital-icons {
            display: flex;
            gap: 34px;
        }

        .icon {
            width: 68px;
            height: 68px;
            background: rgba(255, 255, 255, 0.13);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.3em;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }

        /* Responsive styles */
        @media (max-width: 900px) {

            .header-content,
            .service-cards,
            .digital-services {
                flex-direction: column;
                align-items: center;
            }

            .card {
                width: 90vw;
                margin-bottom: 24px;
            }

            .gallery img,
            .digital-info img {
                width: 23vw;
                height: 50px;
            }
        }

       