/* ================= 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, main, 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;
}
body {
    line-height: 1.5;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #F4F7F5;
    color: #26311B;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
    display: block;
}
a {
    background: transparent;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
ul, ol {
    list-style: none;
}
img {
    border: 0;
    max-width: 100%;
    display: block;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
button {
    cursor: pointer;
}

/* ================= BRAND VARIABLES ===================== */
:root {
    --brand-primary: #29335C; /* dark blue, for headings/CTAs */
    --brand-secondary: #F3A712; /* warm accent yellow/orange */
    --brand-accent: #F9F9F9;
    --nature-green: #518C55;
    --nature-dark-green: #26311B;
    --nature-brown: #85744d;
    --nature-beige: #F4F1EA;
    --nature-grey: #EBE9E4;
    --nature-shadow: rgba(67,85,51,0.06);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --transition: 0.2s cubic-bezier(.4,.41,.4,1.02);
    --font-display: 'Montserrat', Arial, sans-serif;
    --font-body: 'Roboto', Arial, sans-serif;
}

/* ============= BASE TYPOGRAPHY ============== */
body {
    font-family: var(--font-body);
    background: var(--nature-beige);
    color: var(--nature-dark-green);
    font-size: 16px;
    letter-spacing: 0.02em;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--brand-primary);
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.18; }
h2 { font-size: 2rem; line-height: 1.24; }
h3 { font-size: 1.25rem; line-height: 1.4; }
h4 { font-size: 1.125rem; }
p, li, blockquote, cite { font-size: 1rem; color: var(--nature-dark-green); }
p { margin-bottom: 16px; }
strong { font-weight: 600; color: var(--brand-primary); }
blockquote {
    background: var(--nature-grey);
    border-left: 4px solid var(--nature-green);
    margin: 0 0 20px 0;
    padding: 16px 28px;
    font-style: italic;
    border-radius: var(--border-radius-md);
}
cite {
    display: block;
    margin-top: 8px;
    color: var(--nature-brown);
    font-size: 0.98em;
    font-style: normal;
}

/* ================ LAYOUT FLEX CONTAINERS ================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: var(--nature-beige);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 12px var(--nature-shadow);
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #FFF;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 10px var(--nature-shadow);
    margin-bottom: 20px;
    position: relative;
    padding: 24px;
    flex: 1 1 320px;
    min-width: 260px;
    transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
    box-shadow: 0 6px 28px var(--nature-shadow);
    transform: translateY(-4px) scale(1.02);
}
.content-grid { /* for 2-3 column layouts */
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: var(--border-radius-md);
    box-shadow: 0 2px 12px var(--nature-shadow);
    margin-bottom: 24px;
    min-width: 270px;
    flex: 1 1 320px;
    transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
    box-shadow: 0 6px 32px var(--nature-shadow);
    transform: translateY(-2px) scale(1.01);
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* ================ HEADER, NAV & HERO AREA ================ */
header {
    background: var(--brand-accent);
    box-shadow: 0 2px 10px rgba(41, 51, 92, 0.05);
    position: sticky;
    top: 0;
    z-index: 1040;
    width: 100%;
}
nav {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    padding: 18px 0;
}
nav > a > img {
    height: 44px;
    width: auto;
}
nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
}
nav ul li {
    margin: 0;
}
nav ul li a {
    font-family: var(--font-display);
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: var(--border-radius-sm);
    padding: 6px 12px;
    transition: background var(--transition), color var(--transition);
}
nav ul li a:hover, nav ul li a:focus {
    background: var(--nature-green);
    color: #fff;
}
.cta {
    display: inline-block;
    background: var(--nature-green);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 10px 28px;
    border-radius: var(--border-radius-lg);
    transition: background var(--transition), box-shadow var(--transition); 
    font-size: 1.09rem;
    letter-spacing: 0.04em;
    box-shadow: 0 1px 10px 0 var(--nature-shadow);
    border: none;
    margin-left: 12px;
}
.cta:hover, .cta:focus {
    background: var(--brand-secondary);
    color: var(--brand-primary);
    box-shadow: 0 4px 24px 0 var(--nature-shadow);
}

/* =============== HERO SECTION ================== */
.hero {
    background: linear-gradient(116deg, #F4F7F5 92%, #cce0d0 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 6px 32px var(--nature-shadow);
    margin-bottom: 60px;
    padding: 40px 0 36px 0;
}
.hero .content-wrapper {
    align-items: flex-start;
    gap: 18px;
}
.hero h1 {
    color: var(--nature-green);
    text-shadow: 0 2px 12px var(--nature-shadow);
}
.hero p {
    font-size: 1.16rem;
    max-width: 620px;
    margin-bottom: 14px;
}
.hero .cta {
    margin-top: 18px;
}

/* ============= FEATURES, SERVICES & LISTS ============== */
.features ul li, .services ul li, .product-list ul li {
    display: flex;
    align-items: flex-start;
    padding: 18px 20px;
    background: #FFF;
    border-radius: var(--border-radius-md);
    box-shadow: 0 1px 12px var(--nature-shadow);
    gap: 14px;
    min-width: 265px;
    flex: 1 1 260px;
    font-size: 1rem;
    position: relative;
    margin-bottom: 20px;
    transition: box-shadow var(--transition), background var(--transition);
}
.features ul li img, .services ul li img, .product-list ul li img {
    width: 32px;
    margin-right: 12px;
}
.features ul li:hover, .services ul li:hover, .product-list ul li:hover {
    background: var(--nature-grey);
    box-shadow: 0 5px 16px var(--nature-shadow);
}
.services ul li h3, .product-list ul li h3 {
    color: var(--nature-green);
    margin-bottom: 4px;
}
.feature-comparison, .innovation-highlight, .tips-highlight {
    background: #fafdff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 1px 8px var(--nature-shadow);
    padding: 24px 24px 20px 24px;
    margin-top: 12px;
    margin-bottom: 12px;
}
.innovation-highlight h3, .tips-highlight ul li {
    color: var(--nature-green);
}
.tips-highlight ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 16px;
}
.feature-comparison ul {
    gap: 10px;
    flex-direction: column;
    margin: 10px 2px 0 24px;
}

/* =========== TESTIMONIALS & ARTICLE CARDS ============= */
.testimonials, .testimonials-section {
    background: var(--nature-beige);
    border-radius: var(--border-radius-lg);
    margin-bottom: 60px;
}
.testimonials .testimonial-card, .testimonials-section .testimonial-card {
    background: #fff;
    color: var(--nature-dark-green);
    margin-bottom: 20px;
}
.testimonials .testimonial-card blockquote,
.testimonials-section .testimonial-card blockquote {
    background: transparent;
    border: none;
    font-style: italic;
    color: var(--brand-primary);
    font-size: 1.05rem;
}
.testimonials .testimonial-card cite,
.testimonials-section .testimonial-card cite {
    color: var(--nature-green);
    font-weight: 600;
    font-size: 1rem;
}
.article-teaser {
    background: #fff;
    border-left: 7px solid var(--nature-green);
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    box-shadow: 0 2px 14px var(--nature-shadow);
    padding: 20px 18px 18px 26px;
    margin-bottom: 20px;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.article-teaser h3 {
    margin-bottom: 5px;
    color: var(--brand-primary);
}
.article-teaser:hover {
    border-left-color: var(--brand-secondary);
    box-shadow: 0 8px 20px var(--nature-shadow);
}

/* ============ CTA SECTION ============= */
.cta-section {
    background: linear-gradient(62deg, #F3A712 7%, #f9f9f9 85%);
    border-radius: var(--border-radius-lg);
    padding: 32px 0 36px 0;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 60px;
    box-shadow: 0 2px 32px var(--nature-shadow);
}
.cta-section .content-wrapper {
    align-items: center;
    gap: 18px;
}
.cta-section h2 {
    color: var(--brand-primary);
    font-size: 2rem;
    margin-bottom: 8px;
}
.cta-section .cta {
    font-size: 1.08rem;
    padding: 10px 38px;
    margin-top: 12px;
}

/* ========== BLOG & FAQ STYLES ============= */
.blog-section .article-teaser {
    margin-bottom: 24px;
}
.faq-section dl {
    width: 100%;
    padding: 0;
}
.faq-section dt {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--nature-green);
    margin-top: 24px;
    margin-bottom: 6px;
}
.faq-section dd {
    font-family: var(--font-body);
    margin-left: 18px;
    margin-bottom: 12px;
}

/* =========== LEGAL SECTIONS ================ */
.legal-section {
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 16px var(--nature-shadow);
    margin-bottom: 60px;
    padding: 40px 20px;
}
.legal-section h2 {
    margin-top: 32px;
    color: var(--nature-green);
}
.legal-section ul {
    list-style: disc inside;
    margin-bottom: 20px;
    margin-left: 16px;
}
.legal-section ul li {
    margin-bottom: 8px;
}

/* =========== FOOTER ================ */
footer {
    background: var(--nature-dark-green);
    color: #fff;
    padding: 48px 0 16px 0;
    margin-top: 60px;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    box-shadow: 0 -2px 32px var(--nature-shadow);
}
footer .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-brand img {
    width: 60px;
    margin-bottom: 16px;
}
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: var(--brand-secondary);
    margin-bottom: 8px;
    font-size: 1.06rem;
}
.footer-links ul {
    margin-bottom: 10px;
    gap: 2px;
}
.footer-links ul li a {
    color: #fff;
    font-weight: 500;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    padding: 4px 8px;
    transition: background 0.18s;
}
.footer-links ul li a:hover, .footer-links ul li a:focus {
    background: var(--nature-green);
    color: var(--brand-secondary);
}
.footer-contact p {
    color: #faf8ef;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    margin-bottom: 8px;
}
.footer-contact img {
    width: 18px;
    height: 18px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    background: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: background var(--transition), box-shadow var(--transition);
}
.footer-social a:hover, .footer-social a:focus {
    background: var(--brand-secondary);
    box-shadow: 0 2px 8px var(--nature-shadow);
}
.footer-social img {
    width: 22px;
}

/* ========== MOBILE BURGER MENU ================ */
.mobile-menu-toggle {
    display: none;
    background: var(--brand-secondary);
    color: var(--brand-primary);
    border: none;
    font-size: 2rem;
    border-radius: var(--border-radius-md);
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    position: relative;
    z-index: 2001;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: var(--nature-green);
    color: #fff;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2020;
    background: #f7faefdd;
    backdrop-filter: blur(3px);
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(.74,.42,.2,1.03);
    box-shadow: 0 8px 32px var(--nature-shadow);
}
.mobile-menu.open {
    display: flex;
    transform: translateX(0);
}
.mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: var(--brand-secondary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--brand-primary);
    font-size: 1.7rem;
    border: none;
    z-index: 2002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    background: var(--nature-green);
    color: #fff;
}
.mobile-menu .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 88px 36px 32px 36px;
    width: 100vw;
    height: 100%;
}
.mobile-nav a {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.28rem;
    color: var(--brand-primary);
    background: #fff;
    padding: 12px 8px 12px 18px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 1px 6px var(--nature-shadow);
    min-width: 180px;
    margin-bottom: 6px;
    transition: background var(--transition), color var(--transition);
}
.mobile-nav a:focus, .mobile-nav a:hover {
    background: var(--brand-secondary);
    color: var(--brand-primary);
}

@media (max-width: 1024px) {
    .footer-brand, .footer-social {
        flex: 1 1 100%;
    }
    .footer-links, .footer-contact {
        flex: 1 1 220px;
    }
}
@media (max-width: 900px) {
    nav ul {
        gap: 14px;
    }
    .content-wrapper, .footer .content-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    .footer-links, .footer-contact, .footer-brand, .footer-social {
        width: 100%;
    }
}
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    .cta {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .container {
        padding: 0 5vw;
    }
    .content-grid {
        flex-direction: column;
        gap: 20px;
    }
    .card-container {
        flex-direction: column;
        gap: 20px;
    }
    .section {
        padding: 24px 7vw;
    }
    .hero {
        padding: 28px 0 20px 0;
    }
}
@media (max-width: 620px) {
    .footer .content-wrapper {
        gap: 18px;
    }
    .footer-links, .footer-contact {
        gap: 6px;
    }
    .hero h1, .cta-section h2, h1 {
        font-size: 1.3rem !important;
        line-height: 1.2;
    }
    h2 { font-size: 1.07rem !important; }
    h3 { font-size: 1.04rem !important; }
    .footer-brand img {
        width: 45px;
    }
}

/* ============= FLEX DIRECTION FOR TEXT-IMAGE SECTIONS ==============*/
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column;
        gap: 18px;
    }
}

/* ================= SPACING AND GAP RULES ================= */
.section, .cta-section, .hero, .legal-section {
    margin-bottom: 60px;
}
.card, .testimonial-card, .features ul li, .product-list ul li, .article-teaser {
    margin-bottom: 20px;
}
.card-container, .content-grid, .features ul, .services ul, .product-list ul {
    gap: 24px;
}
.content-wrapper, .feature-item, .testimonial-card, .footer .content-wrapper {
    gap: 20px;
}

/* Prevent accidental overlap */
.card, .testimonial-card, .features ul li, .footer-contact, .footer-links, .footer-social {
    z-index: 1;
}

/* ================= MICRO-INTERACTIONS =============== */
a, .cta, .mobile-nav a, .footer-links ul li a, .footer-social a, button {
    transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.card:active, .testimonial-card:active {
    transform: scale(0.98);
}

/* =========== COOKIE CONSENT BANNER & MODAL ============== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: #f6fcf5;
    color: var(--nature-dark-green);
    box-shadow: 0 -2px 40px var(--nature-shadow);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    z-index: 3050;
    padding: 20px 14vw 20px 7vw;
    gap: 18px;
    font-size: 1rem;
    animation: slideUp 0.7s cubic-bezier(.32,1.34,.28,1) forwards;
}
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
    flex: 1 1 320px;
    color: var(--nature-dark-green);
    margin: 0 12px 0 0;
}
.cookie-banner .cookie-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.cookie-banner button {
    border-radius: var(--border-radius-sm);
    border: none;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 8px 22px;
    margin: 0 2px;
    font-size: 1rem;
}
.cookie-banner .cookie-accept {
    background: var(--nature-green);
    color: #fff;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
    background: var(--brand-secondary);
    color: var(--brand-primary);
}
.cookie-banner .cookie-reject {
    background: #e0e6de;
    color: var(--nature-dark-green);
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
    background: #f99c85;
    color: #fff;
}
.cookie-banner .cookie-settings {
    background: var(--brand-secondary);
    color: var(--brand-primary);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
    background: var(--nature-green);
    color: #fff;
}

@media (max-width: 800px) {
    .cookie-banner {
        flex-direction: column;
        padding: 17px 4vw;
        align-items: flex-start;
        gap: 12px;
    }
}

.cookie-modal-overlay {
    position: fixed;
    z-index: 3052;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(39,77,51,0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInBg 0.36s;
}
@keyframes fadeInBg {
    from { opacity: 0; }
    to { opacity: 1; }
}
.cookie-modal {
    background: #fff;
    color: var(--nature-dark-green);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 40px var(--nature-shadow);
    padding: 36px 28px 28px;
    max-width: 420px;
    min-width: 280px;
    width: 89vw;
    position: relative;
    animation: popupShow 0.36s cubic-bezier(.11,.66,.47,1.36);
}
@keyframes popupShow {
    from { transform: scale(0.88); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
    font-size: 1.37rem;
    color: var(--brand-primary);
    margin-bottom: 14px;
}
.cookie-modal .cookie-category {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.cookie-modal .cookie-category label {
    font-size: 1rem;
    font-weight: 500;
}
.cookie-modal .toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
}
.cookie-modal .toggle-switch input[type="checkbox"] {
    display: none;
}
.cookie-modal .toggle-slider {
    position: absolute;
    cursor: pointer;
    left: 0; top: 0;
    width: 44px;
    height: 24px;
    background: #e0e6de;
    border-radius: 24px;
    transition: background var(--transition);
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
    background: var(--nature-green);
}
.cookie-modal .toggle-slider:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform var(--transition);
    box-shadow: 0 1px 4px var(--nature-shadow);
}
.cookie-modal .toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(20px);
}
.cookie-modal .cookie-category .always-on {
    color: #8ca687;
    font-size: 0.93em;
    margin-left: 8px;
}
.cookie-modal .cookie-modal-actions {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
    border-radius: var(--border-radius-sm);
    padding: 7px 19px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    background: var(--nature-green);
    color: #fff;
}
.cookie-modal .cookie-modal-actions .cookie-cancel {
    background: #e0e6de;
    color: var(--nature-dark-green);
}
.cookie-modal .cookie-modal-actions .cookie-cancel:hover, .cookie-modal .cookie-modal-actions .cookie-cancel:focus {
    background: var(--brand-secondary);
    color: var(--brand-primary);
}
.cookie-modal .cookie-modal-actions .cookie-save {
    background: var(--brand-secondary);
    color: var(--brand-primary);
}
.cookie-modal .cookie-modal-actions .cookie-save:hover, .cookie-modal .cookie-modal-actions .cookie-save:focus {
    background: var(--nature-green);
    color: #fff;
}

@media (max-width:450px) {
    .cookie-modal {
        padding: 18px 7vw 12px 7vw;
    }
}

/* ========== MISC FIXES FOR ACCESSIBILITY & CONSISTENCY ========== */
:focus-visible {
    outline: 2px solid var(--brand-secondary);
    outline-offset: 2px;
}

::-webkit-input-placeholder { color: #7b8d6e; opacity: 1; }
::-moz-placeholder { color: #7b8d6e; opacity: 1; }
:-ms-input-placeholder { color: #7b8d6e; opacity: 1; }
::placeholder { color: #7b8d6e; opacity: 1; }

/* Allow for safe margin on cta sticky elements */
@media (max-width:600px) {
    .cta-section, .section, .hero, .legal-section {
        padding-left: 0;
        padding-right: 0;
    }
}

/* =============== END ================ */
