/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header Section */
.header {
    background-color: #f0f0f0;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.header .buy-button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #0073cf;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.header .buy-button:hover {
    background-color: #005fa3;
}

/* Main Content Section */
.main-content {
    padding: 60px;
}

.content-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.book-cover {
    flex: 1;
}

.book-cover img {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.book-details {
    flex: 2;
}

.book-details h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0073cf;
}

.book-details p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.details-section ul {
    list-style: none;
    padding: 10px 0;
}

.details-section li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

strong {
    color: #0073cf;
}

/* Praise Section */
.praise-section {
    margin-top: 40px;
}

.praise-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.praise-section blockquote {
    font-size: 1.1rem;
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #f0f8ff;
    border-left: 5px solid #0073cf;
    font-style: italic;
}

.praise-section footer {
    font-size: 0.9rem;
    color: #555;
    text-align: right;
    margin-top: 10px;
}