* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', 'Garamond', 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    color: #2b2b2b;
    background-color: #faf8f5;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
    background-color: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
}

header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 35px;
    border-bottom: 2px solid #8b7355;
}

header h1 {
    font-size: 3.2em;
    color: #1a1a1a;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

header h2 {
    font-size: 1.8em;
    color: #6b5d52;
    font-weight: 400;
    font-style: italic;
}

header .author {
    font-size: 1.3em;
    color: #4a4038;
    font-weight: 400;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.book-section {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.book-cover {
    flex-shrink: 0;
    width: 280px;
}

.book-cover img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.content-wrapper {
    flex: 1;
}

main {
    padding: 0;
}

main h2 {
    font-size: 2.1em;
    color: #2b2b2b;
    margin: 45px 0 25px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #d4c5b0;
    font-weight: 600;
}

main h2:first-of-type {
    margin-top: 0;
}

main p {
    margin-bottom: 22px;
    font-size: 1.18em;
    text-align: justify;
    hyphens: auto;
}

main strong {
    color: #1a1a1a;
    font-weight: 600;
}

main a {
    color: #8b6f47;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #d4c5b0;
    transition: all 0.3s ease;
}

main a:hover {
    color: #6b5435;
    border-bottom-color: #8b6f47;
}

main a[href*="forms.gle"] {
    display: inline-block;
    background-color: #8b6f47;
    color: white;
    padding: 15px 35px;
    border-radius: 4px;
    font-size: 1.15em;
    margin-top: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.25);
    border-bottom: none;
}

main a[href*="forms.gle"]:hover {
    background-color: #6b5435;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(139, 111, 71, 0.35);
}

.author-photo {
    text-align: center;
    margin: 50px 0;
}

.author-photo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

footer {
    margin-top: 80px;
    padding-top: 35px;
    border-top: 2px solid #d4c5b0;
    text-align: center;
    color: #6b5d52;
    font-size: 1em;
}

footer p {
    margin-bottom: 12px;
}

footer a {
    color: #8b6f47;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }
    
    header h1 {
        font-size: 2.2em;
    }
    
    header h2 {
        font-size: 1.4em;
    }
    
    .book-section {
        flex-direction: column;
        align-items: center;
    }
    
    .book-cover {
        width: 240px;
        margin-bottom: 30px;
    }
    
    main h2 {
        font-size: 1.75em;
    }
    
    main p {
        font-size: 1.08em;
        text-align: left;
    }
}
