.books-container {
    padding-bottom: 20px !important;
}

.books-layout {
    display: flex;
    flex-direction: row;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.books-intro {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 40px;
}

.books-title {
    color: #386560;
    font-size: 2.8em;
    font-family: "Kaushan Script", cursive;
}

.books-title span {
    font-size: 0.8em;
    font-family: "Arial", sans-serif;
    display: block;
    margin-top: 10px;
    color: #666;
}

.books-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.book-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 280px;
}

.book-card:hover {
    transform: scale(1.03);
    box-shadow: 6px 6px 24px rgba(0, 0, 0, 0.25);
}

.book-card h4 {
    color: #386560;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.book-card p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 20px;
}

.buy-button {
    background-color: #386560;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #2c4f4a;
}

.book-cover {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 6px;
    margin: 0 auto 14px;
    display: block;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.2);
}