.book-price {
    font-size: 36px!important;
    font-weight: 700;
}

/* Pattern a puntini più chiaro per contrasto */
.pattern-bg {
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Cards blu scuro con testo bianco */
.card {
    background-color: #084f79;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.25);
}

.card i {
    color: #ffffff; /* icone bianche */
}