    body {
        margin: 0;
        background: #f2f4f7;
        font-family: Arial, Helvetica, sans-serif;
        color: #212121;
    }

    .wrapper {
        max-width: 780px;
        min-width: 780px;
        margin: 20px auto;
        background: #fafafa;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        border-radius: 6px;
        overflow: hidden;
        position: relative;
    }

    /* HEADER */
    header {
        padding: 0px;
    }

    header img {
        display: flex;
        position: relative;
        top: 50%;
        right: -50%;
    }

    /* WEEK RIBBON */
    .week {
        position: absolute;
        z-index : 100;
        top: 30%;
        right: -140px;
        background: #cc0000;
        color: #fafafa;
        padding: 10px 160px;
        font-size: 36px;
        font-weight: bold;
        transform: rotate(45deg);
    }

    /* FOOTER */
    footer {
        text-align: center;
        padding: 10px;
        font-size: 20px;
    }

    footer small {
        display: block;
        font-size: 14px;
        color: #333333;
        margin-top: 5px;
    }

    .header-text {
        margin-left: 20px;
        position: absolute;
        z-index : 100;
        transform: translate(0%, 35%)
    }

    .header-text h1 {
        margin: 0;
        font-size: 56px;
        color: #339933;
    }

    .header-text p {
        margin: 5px 0 0;
        font-size: 18px;
    }


    /* CONTENT */
    .content {
        display: flex;
        padding: 10px;
        gap: 10px;
    }

    .products {
        flex: 1;
    }

    .product {
        margin-bottom: 18px;
    }

    .product-title {
        font-size: 30px;
        font-weight: bold;
    }

    .product-price {
        font-size: 30px;
        font-weight: normal;
    }

    .product-desc {
        font-size: 16px;
        color: #333333;
    }

    /* RIGHT SIDE */
    .right {
        width: 50%;
    }

    .right img {
        width: 100%;
        border-radius: 6px;
    }

    .facebook {
        margin-bottom: 10px;
    }

    .facebook a {
        display: inline-flex;
        align-items: center;
        background: #1877F2;
        color: white;
        text-decoration: none;
        padding: 10px 10px;
        font-weight: bold;
        border-radius: 6px;
        font-size: 18px;
    }

    .facebook img {
        height: 28px;
        margin-right: 10px;
    }
