/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.book-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.book-mockup img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.book-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.book-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.book-author {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.book-edition {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.book-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    align-self: flex-start;
}

/* Reviews Section */
.reviews-section {
    margin-top: 100px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 100px auto 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .book-mockup {
        margin-bottom: 40px;
    }

    .cta-button {
        align-self: center;
    }


}