* {
    box-sizing: border-box;
}
.flyer {
    width: 794px;
    max-width: 100%;
    min-height: 1123px;
    margin: auto;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .15);
}

/* =========================
   HEADER / HERO
========================= */

.hero {
    display: grid;
    grid-template-columns: 48% 52%;
    min-height: 410px;
}

.hero-left {
    padding: 35px 25px 20px 35px;
    position: relative;
    background: #fff;
}

.hero-left::after {
    content: "";
    position: absolute;
    top: 0;
    right: -70px;
    width: 140px;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
}

/* Logo */

.logo {
    position: relative;
    z-index: 5;
    margin-bottom: 30px;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #68a82d;
}

.logo-text {
    display: inline-block;
    vertical-align: top;
    margin-top: 8px;
}

.logo-main {
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.logo-main span {
    color: #72ad35;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: normal;
}

.logo-sub {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #555;
    margin-top: 5px;
}

/* Main title */

.hero-title {
    position: relative;
    z-index: 5;
    margin: 0;
    font-size: 36px;
    line-height: 1.05;
    font-weight: 900;
}

.hero-title .green {
    color: #4f9429;
}

.hero-description {
    position: relative;
    z-index: 5;
    margin: 18px 0 25px;
    font-size: 18px;
    line-height: 1.25;
    color: #333;
}

.hero-image {
    position: relative;
    background:
        linear-gradient(
            rgba(255,255,255,.08),
            rgba(255,255,255,.08)
        ),
        url("/includes/images/hero-bg-1.png") center center / cover no-repeat;
    min-height: 410px;
}

/* =========================
   BENEFITS
========================= */

.benefits {
    padding: 0 35px 25px;
    position: relative;
    z-index: 10;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 17px;
}

.benefit-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #67a82f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.benefit-content strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.benefit-content p {
    margin: 0;
    font-size: 10px;
    line-height: 1.35;
    color: #555;
}

/* =========================
   QR SECTION
========================= */

.qr-section {
    position: relative;
    z-index: 20;
    margin: 20px;
    padding: 20px 15px 15px;
    border: 3px solid #7baa48;
    border-radius: 12px;
    background: #fff;
    text-align: center;
}

.interested {
    display: inline-block;
    background: #1f271e;
    color: white;
    font-weight: 800;
    font-size: 13px;
    padding: 8px 25px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.qr-title {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 12px;
}

.qr-title span {
    color: #52942d;
}

.qr-code {
    width: 180px;
    height: 180px;
    margin: auto;
    padding: 10px;
    border: 5px solid #79a94d;
    border-radius: 10px;
    background: white;
}

.qr-code img {
    display: block;
    width: 100%;
    height: 100%;
}

.qr-note {
    margin: 12px -15px -15px;
    padding: 10px;
    background: #1f3020;
    color: white;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
}

/* =========================
   SERVICES BAR
========================= */

.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #1e2430;
    color: #fff;
    margin-top: 15px;
}

.service {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 7px;
    border-right: 1px solid rgba(255,255,255,.15);
    text-align: center;
}

.service:last-child {
    border-right: 0;
}

.service i {
    color: #79b33b;
    font-size: 23px;
}

.service span {
    font-size: 9px;
    line-height: 1.15;
    font-weight: 700;
    text-transform: uppercase;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #91c64c;
    padding: 18px 30px;
    display: grid;
    grid-template-columns: 1.3fr 1fr .8fr;
    align-items: center;
    gap: 20px;
}

.contact-title {
    display: inline-block;
    background: #1f3020;
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 5px 15px;
    margin-bottom: 10px;
}

.contact {
    font-size: 9px;
    line-height: 1.7;
}

.contact i {
    width: 18px;
    color: #263522;
}

.website {
    text-align: center;
    font-weight: 800;
    font-size: 12px;
    color: #263522;
}

.slogan {
    text-align: right;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: bold;
    font-size: 17px;
    color: #263522;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 700px) {

    body {
        padding: 10px;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-left::after {
        display: none;
    }

    .hero-image {
        min-height: 300px;
        order: -1;
    }

    .hero-left {
        padding: 25px;
    }

    .qr-section {
        margin: 20px 25px;
    }

    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slogan {
        text-align: center;
    }
}

/* =========================
   PRINT / A4
========================= */

@media print {

    @page {
        size: A4 portrait;
        margin: 0;
    }

    body {
        padding: 0;
        background: #fff;
    }

    .flyer {
        width: 210mm;
        min-height: 297mm;
        box-shadow: none;
    }
}