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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: #1a1a1a;
    color: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: left;
    margin: 20px;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cookie-btn {
    background: #c44c3a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.cookie-btn:hover {
    background: #a63d2d;
}

/* Header */
.header {
    background: #000;
    color: white;
    padding: 15px 0;
    text-align: center;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    background: #f8f9fa;
    color: #333;
    text-align: center;
    padding: 80px 0;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.cta-btn {
    background: #c44c3a;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    background: #a63d2d;
}

/* About Section */
.about {
    background: #1a1a1a;
    color: white;
    padding: 80px 0;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.about-content p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.8;
    opacity: 0.9;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
}

/* Books Section */
.books {
    padding: 80px 0;
    background: white;
}

.books h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
}

.book-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

.book-cover img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.book-details h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #c44c3a;
    margin-bottom: 20px;
}

.book-details p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

.book-details ul {
    list-style: none;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.book-details li {
    margin-bottom: 5px;
}

.book-details li:first-child {
    font-weight: 600;
}

/* Curatorship Section */
.curatorship {
    padding: 80px 0;
    background: #f8f9fa;
}

.curatorship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.curatorship-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
}

.curatorship-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.curatorship-text p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.curatorship-text strong {
    color: #333;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.testimonials-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.testimonials-text p {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #666;
}

.testimonial {
    margin-bottom: 30px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.testimonial p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
    font-style: italic;
}

.testimonial cite {
    font-size: 12px;
    color: #999;
    font-style: normal;
}

.testimonials-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
}

/* Essays Section */
.essays {
    padding: 80px 0;
    background: #f8f9fa;
}

.essays h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.essays-subtitle {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.6;
}

.essays-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.essay-item {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.essay-item:hover {
    transform: translateY(-5px);
}

.essay-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.essay-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 20px 15px;
    color: #333;
    line-height: 1.4;
}

.essay-item p {
    font-size: 12px;
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 20px 0;
    border: none;
    border-bottom: 1px solid #333;
    background: transparent;
    color: white;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.form-group input::placeholder {
    color: #666;
}

.form-group input:focus {
    border-bottom-color: #c44c3a;
}

.submit-btn {
    background: #c44c3a;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    justify-self: end;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #a63d2d;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright p {
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about .container,
    .curatorship-content,
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .book-item {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .book-cover img {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .about,
    .books,
    .curatorship,
    .testimonials,
    .essays,
    .contact {
        padding: 60px 0;
    }
    
    .about-content h2,
    .curatorship-text h2,
    .testimonials-text h2,
    .books h2,
    .essays h2 {
        font-size: 28px;
    }
    
    .essays-grid {
        grid-template-columns: 1fr;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cookie-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 13px;
    }
    
    .about-content h2,
    .curatorship-text h2,
    .testimonials-text h2,
    .books h2,
    .essays h2 {
        font-size: 24px;
    }
    
    .submit-btn {
        justify-self: stretch;
    }
}