body {
    font-family: 'Liter', serif;
    background-color: #f8f9fa;
}

.book-section {
    padding: 50px 0;
}

.book-card {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform .2s;
}

.book-card:hover {
    transform: scale(1.02);
}

.book-card img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
    max-height: 300px; /* Limit height to prevent excessive size */
    border-radius: 5px;
    margin-bottom: 20px;
}

.book-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.book-card .price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 20px;
}

.order-form {
    display: none;
    margin-top: 30px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.headline {
    text-align: center;
    margin: 40px 0;
    font-weight: bold;
}

.about-section {
    background-color: #e9ecef;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    background-color: #343a40;
    color: #fff;
}
