/* === CSS RESET & NORMALIZE === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* === CSS VARIABLES - FALLBACKS === */
:root {
    --color-primary: #235634;
    --color-secondary: #98C8A7;
    --color-accent: #F3F7F1;
    --color-dark: #151D17;
    --color-light: #FFF;
    --color-grey: #dee6df;
    --color-error: #D33E43;
    --font-display: 'Montserrat', Arial, sans-serif;
    --font-body: 'Roboto', Arial, sans-serif;
}

/* === BASE TYPOGRAPHY === */
body {
    background: var(--color-accent);
    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.01em;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1.2;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}
h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
h3 {
    font-size: 1.3rem;
    margin: 18px 0 12px 0;
    font-weight: 700;
}
h4, h5, h6 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}
p, ul, ol {
    color: var(--color-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
strong {
    font-weight: 900;
    color: var(--color-primary);
}
blockquote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    padding: 12px 28px;
    border-left: 6px solid var(--color-secondary);
    color: var(--color-primary);
    background: #ecf7ef;
    margin-bottom: 16px;
    margin-top: 8px;
    border-radius: 0 16px 16px 0;
}

/* === CONTAINER / LAYOUT === */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}
.content-wrapper {
    margin-bottom: 32px;
    padding: 0;
    position: relative;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: var(--color-light);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(35, 86, 52, 0.07);
}

hr {
    border: none;
    border-top: 2px solid var(--color-grey);
    margin: 32px 0;
}

/* === HEADER === */
header {
    background: var(--color-primary);
    padding: 0;
    width: 100%;
    box-shadow: 0 1px 10px rgba(35,86,52,0.09);
    position: relative;
    z-index: 10;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    gap: 22px;
}
header img {
    height: 46px;
    margin-right: 18px;
}
header nav {
    display: flex;
    align-items: center;
    gap: 26px;
}
header nav a {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.08rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
}
header nav a:hover, header nav a.active {
    color: #fff;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.06rem;
    font-weight: 800;
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 13px 28px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    letter-spacing: 0.04em;
    box-shadow: 0 3px 18px rgba(35,86,52,0.08);
    transition: background 0.18s, color 0.18s, box-shadow 0.22s;
    text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 6px 28px rgba(35,86,52,0.15);
    outline: none;
}
button, .btn {
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    transition: background 0.16s, color 0.15s, box-shadow 0.2s;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
    display: none;
    background: none;
    color: var(--color-secondary);
    font-size: 2rem;
    border: none;
    padding: 6px 16px;
    cursor: pointer;
    z-index: 31;
    transition: color 0.13s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus { color: #fff; }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(35, 86, 52, 0.98);
    z-index: 1000;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.33s cubic-bezier(.73,-0.02,.43,1.15), opacity 0.3s;
    opacity: 0;
}
.mobile-menu.open {
    display: flex;
    pointer-events: auto;
    transform: translateX(0);
    opacity: 1;
}
.mobile-menu-close {
    background: none;
    color: var(--color-accent);
    font-size: 2.5rem;
    position: absolute;
    right: 22px;
    top: 18px;
    border: none;
    cursor: pointer;
    z-index: 1013;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-top: 88px;
    width: 86vw;
    max-width: 430px;
    padding-left: 32px;
}
.mobile-nav a {
    font-family: var(--font-display);
    color: var(--color-accent);
    font-weight: 800;
    font-size: 1.23rem;
    letter-spacing: 0.02em;
    padding: 6px 0;
    border-bottom: 1.5px solid rgba(255,255,255,0.08);
    width: 100%;
    transition: color 0.18s;padding 0.25s;
}
.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--color-secondary);
    padding-left: 8px;
}

/* === MAIN HERO & VISUAL SECTIONS === */
.hero {
    background: linear-gradient(90deg, #f5fbf7 80%, #e3f2e7 100%);
    border-radius: 0 0 28px 28px;
    padding: 54px 0 40px 0;
    box-shadow: 0 6px 32px 0 rgba(35,86,52,0.06);
    margin-bottom: 56px;
}
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}
.hero .content-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.hero h1 {
    color: var(--color-primary);
    font-size: 2.6rem;
    font-weight: 900;
}
.hero p {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 18px;
    font-weight: 500;
}

/* === CARD, TESTIMONIAL, FEATURES LAYOUTS === */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: var(--color-light);
    border-radius: 20px;
    box-shadow: 0 3px 24px 0 rgba(35,86,52,0.07);
    padding: 32px 22px 22px 22px;
    margin-bottom: 20px;
    position: relative;
    min-width: 276px;
    transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover { box-shadow: 0 8px 32px 0 rgba(35,86,52,0.18); transform: translateY(-3px) scale(1.015); }

.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border-radius: 17px;
    box-shadow: 0 2px 12px 0 rgba(35,86,52,0.09);
    padding: 20px;
    margin-bottom: 20px;
    border-left: 7px solid var(--color-secondary);
    max-width: 480px;
    min-width: 250px;
}
.testimonial-card p {
    font-size: 1.09rem;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.5;
}
.testimonial-card span {
    font-size: 1rem;
    color: var(--color-dark);
    font-family: var(--font-body);
    font-weight: 500;
    opacity: 0.84;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 22px;
    background: var(--color-accent);
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px 0 rgba(35,86,52,0.05);
}
.feature-item strong {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* === SERVICE, BLOG, FAQ CARDS === */
.service-card, .blog-preview, .faq-preview, .theme-highlights, .benefits-summary {
    background: var(--color-accent);
    border-radius: 20px;
    box-shadow: 0 1.5px 10px 0 rgba(35,86,52,0.05);
    padding: 24px;
    margin-bottom: 20px;
    transition: box-shadow 0.17s, transform 0.13s;
}
.service-card:hover,
.blog-preview:hover,
.faq-preview:hover,
.benefits-summary:hover {
    box-shadow: 0 9px 19px 0 rgba(35,86,52,0.12);
    transform: translateY(-2px) scale(1.01);
}
.service-card h3,
.blog-preview h3 {
    font-size: 1.23rem;
}
.price-highlights,
.theme-highlights {
    font-family: var(--font-display);
    color: var(--color-primary);
    font-size: 1.12rem;
    margin: 14px 0 0 0;
}
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 13px;
    margin-bottom: 16px;
}

/* === CONTACT INFO === */
.contact-info {
    margin-top: 20px;
    background: #ebf2ed;
    border-radius: 12px;
    padding: 19px 16px;
    box-shadow: 0 2px 9px 0 rgba(35,86,52,0.04);
}
.contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    color: var(--color-dark);
    font-size: 1rem;
}

/* === FOOTER === */
footer {
    background: var(--color-primary);
    color: var(--color-accent);
    padding: 36px 0 22px 0;
    margin-top: 36px;
    width: 100%;
}
footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
footer img { height: 38px; margin-bottom: 5px; }
footer nav {
    display: flex;
    gap: 26px;
}
footer nav a {
    color: var(--color-accent);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    opacity: 0.93;
    transition: color 0.18s, opacity 0.12s;
}
footer nav a:hover { color: var(--color-secondary); opacity: 1; }
footer .contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.96rem;
    color: #ddebe0;
    opacity: 0.9;
    font-family: var(--font-body);
    font-weight: 500;
}

/* === BUTTONS & INTERACTIONS === */
.btn, button, [type="button"], [type="submit"] {
    font-family: var(--font-display);
    background: var(--color-secondary);
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 800;
    padding: 11px 22px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 14px rgba(35,86,52,0.06);
    transition: background 0.17s, color 0.16s, box-shadow 0.18s, outline 0.15s;
    margin: 0 8px 8px 0;
}
.btn:hover, button:hover, .btn:focus, button:focus {
    background: var(--color-primary);
    color: var(--color-accent);
    outline: 2px solid var(--color-secondary);
    box-shadow: 0 4px 21px rgba(35,86,52,0.13);
}

/* === LINKS === */
a {
    color: var(--color-primary);
    font-weight: 500;
    transition: color 0.16s, border-bottom 0.13s;
}
a:hover, a:focus {
    color: var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 -2px 32px 0 rgba(35,86,52,0.12);
    z-index: 4001;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 12px 20px 12px;
    gap: 42px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: transform 0.39s cubic-bezier(.79,-0.08,.4,1.04), opacity 0.3s;
    min-height: 82px;
}
.cookie-banner.hide { opacity: 0; pointer-events: none; transform: translateY(100%); }
.cookie-banner .cookie-buttons {
    display: flex;
    gap: 13px;
}
.cookie-btn,
.cookie-banner button, .cookie-banner .btn {
    background: var(--color-secondary);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.98rem;
    padding: 7px 18px;
    border-radius: 21px;
    box-shadow: 0 1.5px 8px 0 rgba(35,86,52,0.10);
    border: none;
    cursor: pointer;
    margin-right: 4px;
    transition: background 0.17s, color 0.15s;
}
.cookie-btn.accept { background: var(--color-primary); color: #fff; }
.cookie-btn.reject {
    background: var(--color-error);
    color: #fff;
}
.cookie-btn.settings { background: var(--color-grey); color: var(--color-primary); }
.cookie-btn:hover, .cookie-btn:focus {
    background: var(--color-primary);
    color: #fff;
}
.cookie-banner .cookie-text { flex: 1 1 290px; max-width: 520px; }

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal {
    position: fixed;
    z-index: 5000;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(69, 93, 90, 0.86);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.27s;
}
.cookie-modal.open {
    pointer-events: auto;
    opacity: 1;
}
.cookie-modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 38px 28px 32px 28px;
    max-width: 410px;
    width: 93vw;
    box-shadow: 0 12px 48px 0 rgba(35,86,52,0.19);
    position: relative;
    color: var(--color-primary);
    font-family: var(--font-body);
}
.cookie-modal-content h2 {
    font-size: 1.37rem;
    color: var(--color-primary);
    margin-bottom: 18px;
}
.cookie-modal-content .cookie-category {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.cookie-modal-content .cookie-category label {
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--color-dark);
    cursor: pointer;
    font-weight: 500;
}
.cookie-modal-content .category-always {
    font-size: 0.98rem;
    font-style: italic;
    color: var(--color-primary);
}
.cookie-modal-content .cookie-actions {
    display: flex;
    gap: 17px;
    margin-top: 15px;
}
.cookie-modal-close {
    background: none;
    color: var(--color-primary);
    font-size: 1.7rem;
    border: none;
    position: absolute;
    right: 18px;
    top: 18px;
    cursor: pointer;
}

/* === INPUT / FORM ELEMENTS === */
input[type="checkbox"] {
    accent-color: var(--color-primary);
    width: 18px;
    height: 18px;
    margin-right: 4px;
}

/* === ANIMATIONS & MICRO-INTERACTIONS === */
.cta-btn, .btn, button, .cookie-btn, .card, .service-card, .blog-preview {
    transition: box-shadow 0.21s, transform 0.18s, background 0.15s, color 0.13s;
}
.cta-btn:active, .btn:active, button:active, .cookie-btn:active {
    transform: scale(0.97);
}

/* === HELPERS & MISC === */
.text-center { text-align: center !important; }
.m-0 { margin: 0 !important; }
.mt-4 { margin-top: 32px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-4 { margin-bottom: 32px !important; }
.bold { font-weight: 900 !important; }
.fw-semibold { font-weight: 700; }

.next-steps {
    background: var(--color-accent);
    border-radius: 18px;
    padding: 22px;
    margin-top: 25px;
}
.next-steps h2 {
    margin-bottom: 12px;
    font-size: 1.17rem;
    color: var(--color-primary);
    font-family: var(--font-display);
}
.next-steps ul {
    padding-left: 18px;
    list-style: disc;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .container { max-width: 98vw; padding: 0 11px; }
    .section { padding: 25px 7px; }
}
@media (max-width: 900px) {
    .card-container, .content-grid, .footer .container {
        flex-direction: column;
        gap: 22px;
    }
    footer .container {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 768px) {
    .container { max-width: 97vw; }
    header .container { gap: 13px; }
    header nav { display: none; }
    .cta-btn { font-size: 0.97rem; padding: 10px 18px; }
    .mobile-menu-toggle { display: inline-block; }
    .hero { padding: 26px 0 20px 0; margin-bottom: 17px; }
    .hero .content-wrapper { padding: 0; }
    .hero h1 { font-size: 1.60rem; }
    h2 { font-size: 1.28rem; }
    h1 { font-size: 1.9rem; }
    .section { margin-bottom: 37px; padding: 21px 8px; border-radius: 14px; }
    .card, .service-card, .blog-preview { min-width: 170px; padding: 21px 10px 11px 10px; }
    .testimonial-card, .feature-item { padding: 13px; border-radius: 11px; }
    .testimonial-card { min-width: 140px; max-width: 97vw; }
    .contact-info { padding: 9px 5px; }
    .next-steps { padding: 11px; border-radius: 10px; margin-top: 15px; }
    footer .container, .content-grid, .card-container { flex-direction: column; gap: 14px !important; }
}
@media (max-width: 570px) {
    .container { padding: 0 2vw; }
    .hero h1, h1 { font-size: 1.24rem; }
    .contact-info, .next-steps, .benefits-summary, .theme-highlights, .card, .service-card, .blog-preview, .testimonial-card {
        padding-left: 5px; padding-right: 5px;
    }
    .testimonial-card { border-left-width: 4px; }
    .cookie-modal-content { padding: 24px 7px 19px 7px; font-size: 0.94rem; }
}
@media (max-width: 420px) {
    .cookie-modal-content { max-width: 97vw; border-radius: 10px; padding: 11px 4px 12px 4px; }
    .cookie-modal-content h2 { font-size: 1.07rem; }
}

/* === FLEXBOX UTILITIES (MANDATORY FOR ALL CONTAINERS) === */
.card-container, .content-grid, .footer .container, .features, .card-grid, .text-image-section, .testimonial-section, .blog-section, .benefit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.text-image-section { flex-direction: row; align-items: center; }
@media (max-width: 768px) {
    .text-image-section { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* == END CODE == */