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

body {
    font-family: Georgia, 'Times New Roman', serif;
    /* font-family: "Montserrat", sans-serif; */
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    background-color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #f5f0e8;
    margin-bottom: 0;
}

.brand-logo {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.shop-btn {
    background-color: #000;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.shop-btn:hover {
    background-color: #333;
}

.hero { 
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
    background-color: #f5f0e8;
    margin-bottom: 60px;
}

.hero h1 {
    max-width: 1000px;
    font-size: 42px;
    margin: 0 auto;
    line-height: 1.3;
}

.hero p {
    font-size: 14px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    margin-top: 20px;
}

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

.listicle-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
    clear: both;
    overflow: hidden;
}

.listicle-image {
    flex: 0 0 600px;
    width: 600px;
    height: 600px;
    object-fit: cover;
    display: block;
}

.listicle-content {
    flex: 1;
    padding-top: 10px;
    min-width: 0;
}

.listicle-content h2 {
    font-size: 25px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.listicle-content p {
    font-size: 18px;
    color: #303030;
    line-height: 1.6;
}

.cta-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    border: 2px dashed #333;
    text-align: center;
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cta-section .subtext {
    font-size: 14px;
    margin-bottom: 30px;
    color: #666;
}

.cta-content {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.cta-image {
    width: 150px;
    height: 150px;
    background-color: #ddd;
    object-fit: cover;
    display: block;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: left;
}

.benefits {
    text-align: left;
    margin-bottom: 20px;
}

.benefits p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.cta-btn {
    background-color: #000;
    color: white;
    padding: 12px 40px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
}

.shipping-text {
    font-size: 12px;
    color: #666;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

footer .brand-logo {
    font-size: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    .brand-logo {
        font-size: 18px;
    }

    .shop-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .hero {
        padding: 20px 20px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 18px;
    }

    main {
        padding: 0 15px;
    }

    .listicle-item {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

.listicle-image {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
}

.listicle-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

    .listicle-content h2 {
        font-size: 20px;
    }

    .cta-section {
        padding: 30px 20px;
        margin: 60px 15px;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .cta-content {
        flex-direction: column;
        gap: 20px;
    }

    .cta-image {
        width: 200px;
        height: 200px;
    }

    .product-info {
        text-align: center;
    }

    .product-info h3,
    .benefits {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 30px;
    }

    .listicle-content h2 {
        font-size: 25px;
    }

    .cta-section h2 {
        font-size: 20px;
    }

    .cta-section {
        padding: 20px 15px;
    }
}