/* =============================
   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: inherit;
    vertical-align: baseline;
    background: transparent;
}
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    line-height: 1.6;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    color: #163050;
    background-color: #E8ECF4;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: #1EA67C;
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}
a:hover, a:focus {
    color: #126652;
    text-decoration: underline;
}
ul, ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}
li {
    margin-bottom: 0.5em;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* =============================
   BRAND FONTS
   ============================= */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900|Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    color: #163050;
    margin-bottom: 0.5em;
}
h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.15;
}
h2 {
    font-size: 2rem;
    font-weight: 700;
}
h3 {
    font-size: 1.3rem;
    font-weight: 700;
}
h4 {
    font-size: 1.1rem;
}
p, ul, ol {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    color: #1d2535;
}
blockquote {
    font-style: italic;
    color: #163050;
    border-left: 4px solid #1EA67C;
    margin: 0 0 1em 0;
    padding: 0.5em 1em;
    background: #f2f8f6;
}
cite {
    font-style: normal;
    font-weight: bold;
    color: #163050;
}

/* =============================
   SPACING & FLEX LAYOUTS
   ============================= */
.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(30,166,124,0.07), 0 1.5px 8px #16305022;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(30,166,124,0.07);
    margin-bottom: 20px;
    position: relative;
    padding: 24px;
}
.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;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8ffff;
    border-radius: 18px;
    box-shadow: 0 4px 20px #12665215;
    margin-bottom: 24px;
    min-width: 0;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    min-width: 220px;
    flex: 1 1 250px;
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 3px 14px #1EA67C10;
}

/* Feature/capabilities grid (/) */
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 20px 0;
}
.feature-grid > div {
    background: #f4fcf7;
    border-radius: 18px;
    padding: 24px 18px;
    flex: 1 1 260px;
    min-width: 220px;
    box-shadow: 0 4px 12px #12665218;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-grid > div:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 10px 24px #1EA67C26;
    background: #e8fff2;
}
.feature-grid img {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
}

/* Team page profiles */
.team-profiles {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 32px;
}
.team-profiles .text-section {
    background: #E8ECF4;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 2px 8px #16305012;
    flex: 1 1 300px;
}

/* Service list */
.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}
.service-list li {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 1.5px 8px #1266521c;
    padding: 24px 18px;
    flex: 1 1 260px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
    transition: transform 0.17s, box-shadow 0.17s;
}
.service-list li:hover {
    transform: scale(1.025) rotate(1deg);
    box-shadow: 0 8px 24px #1EA67C18;
    background: #f8fffb;
}
.service-list img {
    width: 36px;
    height: 36px;
}

/* Accordions and text section */
.accordion-list, .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}
.accordion-list > div, .faq-accordion > div {
    background: #F4FAF9;
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 2px 8px #1EA67C0d;
    transition: background 0.18s;
}
.accordion-list > div:hover, .faq-accordion > div:hover {
    background: #d8ede6;
}

.text-section {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 20px;
    box-shadow: 0 1.5px 8px #16305011;
}

/* =============================
   HERO AREA
   ============================= */
.hero {
    background: linear-gradient(95deg, #1EA67C 0%, #163050 75%);
    color: #ffffff;
    padding: 64px 0 48px 0;
    border-radius: 0 0 48px 48px;
    box-shadow: 0 18px 54px #16305021;
    margin-bottom: 60px;
}
.hero .container {
    width: 100%;
}
.hero .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 580px;
    margin-left: 0;
}
.hero h1, .hero h2, .hero p {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(22,48,80,0.08);
}
.hero .cta {
    background: #ffffff;
    color: #1EA67C;
    border: none;
    border-radius: 6px 16px 16px 6px/16px 6px 6px 16px;
    font-family: 'Merriweather', serif;
    font-weight: bold;
    font-size: 1.17rem;
    padding: 14px 34px;
    margin-top: 8px;
    box-shadow: 0 6px 16px #1EA67C24;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, transform 0.13s;
    text-decoration: none;
}
.hero .cta:hover, .hero .cta:focus {
    background: #1EA67C;
    color: #ffffff;
    transform: scale(1.045) skew(-2deg);
    box-shadow: 0 10px 32px #1EA67C35;
}

/* Other CTAs / buttons */
.cta {
    background: #1EA67C;
    color: #ffffff;
    border: none;
    border-radius: 6px 16px 16px 6px/16px 6px 6px 16px;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 28px;
    display: inline-block;
    box-shadow: 0 3px 14px #1EA67C15;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, transform 0.13s;
    margin-top: 12px;
    text-decoration: none;
}
.cta:hover, .cta:focus {
    background: #163050;
    color: #1EA67C;
    transform: scale(1.055) skew(2deg);
    box-shadow: 0 7px 22px #16305033;
   }

/* =============================
   NAVIGATION
   ============================= */
header {
    background: #163050;
    box-shadow: 0 2px 14px #16305016;
    padding: 0 0 0 0;
    position: relative;
    min-height: 58px;
    z-index: 12;
}
.main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    padding: 16px 20px;
    position: relative;
}
.main-nav a {
    color: #fff;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.06rem;
    padding: 6px 16px;
    border-radius: 3ex 11px 10px 2ex/14px 10px 12px 3ex;
    transition: background 0.16s, color 0.16s;
    letter-spacing: 0.02em;
}
.main-nav a.cta {
    border-radius: 11px 2ex 2ex 11px/2ex 14px 14px 2ex;
    background: #1EA67C;
    color: #fff;
    font-family: 'Merriweather', serif;
    font-weight: bold;
    transition: background 0.16s, color 0.16s, box-shadow 0.13s;
    box-shadow: 0 2px 12px #1EA67C22;
}
.main-nav a.cta:hover {
    background: #fff;
    color: #1EA67C;
}
.main-nav a:not(.cta):hover, .main-nav a:not(.cta):focus {
    background: #1EA67C;
    color: #fff;
}
.main-nav img {
    width: 44px;
    height: 44px;
    margin-right: 18px;
    margin-left: 0px;
    vertical-align: middle;
}

/* Hamburger Button */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.05rem;
    color: #1EA67C;
    background: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    box-shadow: 0 2px 12px #16305024;
    border: none;
    z-index: 21;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.16s, color 0.17s, box-shadow 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #E8ECF4;
    color: #126652;
    box-shadow: 0 5px 19px #1EA67C28;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #163050cc;
    transform: translateX(-110vw);
    transition: transform 400ms cubic-bezier(.63,.35,.42,1.11);
    z-index: 240;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
    overflow-y: auto;
}
.mobile-menu.active {
    transform: translateX(0);
}
.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    background: #1EA67C;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    border: none;
    position: absolute;
    top: 18px;
    right: 24px;
    z-index: 245;
    cursor: pointer;
    transition: background 0.15s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    background: #fff;
    color: #1EA67C;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: none;
    margin-top: 85px;
    padding-left: 0;
    width: 100vw;
    align-items: center;
}
.mobile-nav a {
    color: #fff;
    font-size: 1.4rem;
    font-family: 'Merriweather', serif;
    font-weight: bold;
    padding: 13px 0;
    border-radius: 3ex;
    width: 80vw;
    max-width: 340px;
    text-align: center;
    transition: background 0.13s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #fff;
    color: #1EA67C;
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 20px;
  }
}
@media (max-width: 860px) {
  .main-nav {
    gap: 12px;
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

/* =============================
   FOOTER
   ============================= */
footer {
    background: #163050;
    color: #fff;
    border-radius: 30px 30px 0 0 / 8px 38px 0 0;
    box-shadow: 0 -2px 14px #16305023;
    padding: 36px 0 18px 0;
}
.footer-menu, .footer-info {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 4px 0;
}
.footer-menu a {
    color: #1EA67C;
    font-weight: 700;
    font-size: 1rem;
    padding: 3px 12px;
    border-radius: 11px;
    background: #ffffff09;
}
.footer-menu a:hover {
    color: #fff;
    background: #1EA67C;
    transition: background 0.15s, color 0.15s;
}
.footer-info {
    font-size: 1em;
    margin-top: 8px;
    color: #E8ECF4cc;
}

/* =============================
   RESPONSIVE DESIGN
   ============================= */
@media (max-width: 1020px) {
    .feature-grid, .service-list, .team-profiles, .content-grid {
        flex-wrap: wrap;
        gap: 16px;
    }
}
@media (max-width: 900px) {
    .container {
        padding: 0 6vw;
    }
    .feature-grid, .service-list, .team-profiles {
        gap: 14px;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 4vw;
    }
    .hero, .section {
        padding: 32px 8px;
        border-radius: 0 0 36px 36px;
    }
    .team-profiles, .feature-grid, .service-list, .content-grid {
        flex-direction: column;
        gap: 22px;
    }
    .content-wrapper {
        gap: 18px;
    }
    .text-image-section {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }
    .testimonial-card {
        flex-direction: column;
        gap: 8px;
        padding: 16px;
        font-size: 1.06em;
    }
    .footer-menu, .footer-info {
        flex-direction: column;
        gap: 14px;
    }
    .main-nav {
        font-size: 0.91rem;
    }
}
@media (max-width: 440px) {
    h1 {font-size: 1.3rem;}
    h2 {font-size: 1.09rem;}
    .section, .hero {padding: 16px 1vw;}
    .container {padding: 0 1vw;}
}

/* =============================
   ANIMATIONS / TRANSITIONS
   ============================= */
.section, .card, .feature-grid > div, .testimonial-card, .service-list li, .accordion-list > div, .faq-accordion > div {
    transition: box-shadow 0.18s, background 0.18s, transform 0.18s;
}
.cta, .main-nav a, .mobile-menu-toggle, .mobile-menu-close {
    transition: background 0.18s, color 0.17s, box-shadow 0.19s, transform 0.17s;
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
   ============================= */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: #163050;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 26px 24px 26px 24px;
    gap: 24px;
    z-index: 2200;
    box-shadow: 0 -7px 22px #1EA67C22;
    font-size: 1.03rem;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    transition: transform 0.34s cubic-bezier(.81,.13,.58,1.36);
    transform: translateY(0);
    opacity: 1;
}
.cookie-consent-banner.hide {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
}
.cookie-banner-text {
    flex: 1 1 200px;
    font-size: 1.06em;
    line-height: 1.5;
    color: #fff;
    margin-right: 24px;
}
.cookie-banner-actions {
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: center;
}
.cookie-btn, .cookie-settings-btn {
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    font-weight: bold;
    background: #1EA67C;
    color: #fff;
    padding: 10px 22px;
    border-radius: 11px 22px 13px 17px/13px 17px 11px 22px;
    margin-left: 2px;
    cursor: pointer;
    box-shadow: 0 2px 10px #1EA67C22;
    transition: background 0.15s, color 0.17s, transform 0.12s;
}
.cookie-btn:hover, .cookie-settings-btn:hover, .cookie-btn:focus, .cookie-settings-btn:focus {
    background: #fff;
    color: #1EA67C;
    transform: scale(1.045);
}
.cookie-btn.reject {
    background: #EF5555;
}
.cookie-btn.reject:hover {
    background: #fff;
    color: #EF5555;
}
@media (max-width: 500px) {
    .cookie-consent-banner {
        flex-direction: column;
        align-items: flex-start;
        border-top-left-radius: 14px;
        border-top-right-radius: 14px;
        padding: 18px 4vw 14px 4vw;
        font-size: 0.96em;
    }
    .cookie-banner-text {margin-right: 0;}
    .cookie-banner-actions {
        margin-top: 10px;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
}

/* Cookie Modal */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #253e6374;
    z-index: 3002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.14s;
}
.cookie-modal-panel {
    min-width: 285px;
    max-width: 400px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 38px #16305033;
    padding: 32px 22px 18px 22px;
    color: #163050;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: popInPanel 0.35s cubic-bezier(.42,1.68,.74,1.07);
}
@keyframes popInPanel {
  0% {transform: scale(.7) translateY(44px); opacity:0;}
  85%{transform: scale(1.08) translateY(-12px);}
  100%{transform: scale(1) translateY(0); opacity:1;}
}
.cookie-modal-title {
    font-family: 'Merriweather',serif;
    font-size: 1.28em;
    font-weight: bold;
    margin-bottom: 16px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    font-size: 1em;
}
.cookie-category label {
    font-weight: 500;
}
.cookie-toggle {
    width: 36px;
    height: 20px;
    background: #e8ecf4;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background 0.18s;
    display: inline-block;
}
.cookie-toggle input {
    display: none;
}
.cookie-toggle-slider {
    position: absolute;
    top: 2px; left: 3px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #163050;
    transition: left 0.18s, background 0.14s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
    left: 17px;
    background: #1EA67C;
}
.cookie-essential {
    opacity: .44;
    pointer-events: none;
    font-style: italic;
}
.cookie-modal-actions {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    width: 100%;
    justify-content: flex-end;
}
.cookie-modal-close {
    position: absolute;
    top: 18px;
    right: 26px;
    font-size: 1.37em;
    color: #1EA67C;
    background: #fff;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.13s, color 0.11s;
    z-index: 3210;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    background: #1EA67C;
    color: #fff;
}

/* =============================
   CREATIVE ARTISTIC: COLORS & FONTS
   ============================= */
:root {
    --primary: #163050;
    --secondary: #E8ECF4;
    --accent: #1EA67C;
    --brand-white: #fff;
    --danger: #EF5555;
    --shadow-green: 0 3px 16px #1EA67C0F;
    --shadow-primary: 0 3px 16px #16305022;
    --radius-main: 18px;
    --radius-sm: 12px;
    --radius-lg: 32px;
}

/* Artistic, vibrant elements */
.section {
    border: 2.5px dashed #1EA67Cbb;
    background: linear-gradient(87deg, #fff 88%, #E8ECF4 100%);
    box-shadow: 0 5px 32px #1630500d, 0 2px 10px #1EA67C0d;
    position: relative;
}
.section:before {
    content: "";
    display: block;
    position: absolute;
    top: -15px; left: -15px;
    width: 34px; height: 34px;
    border-radius: 21px 2px 19px 19px / 17px 12px 8px 24px;
    background: #1EA67C22;
    z-index: 0;
}
.section:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -19px; right: -16px;
    width: 27px; height: 24px;
    border-radius: 13px 19px 19px 8px / 19px 19px 12px 8px;
    background: #16305013;
    z-index: 0;
}
.section > * { position: relative; z-index: 1; }

h1, h2, h3 {
    letter-spacing: 1.5px;
    position: relative;
}
h2::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    width: 32px;
    height: 6px;
    border-radius: 5px;
    background: #1EA67C;
    opacity: 0.39;
}
h3::after {
    content: '';
    display: inline-block;
    margin-left: 6px;
    width: 15px;
    height: 5px;
    border-radius: 2px;
    background: #E8ECF4;
    opacity: 0.65;
}
.hero h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.6rem;
    font-weight: 900;
    background: linear-gradient(96deg, #ffffff 60%, #fff 120%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px #1EA67C44);
}
.hero p {
    font-size: 1.17rem;
    font-family: 'Roboto', sans-serif;
    color: #e9f8f2;
}

/* Artistic hover lines */
.feature-grid > div:hover h3, .service-list li:hover h3 {
    text-decoration: underline wavy #1EA67C55 2px;
    color: #1EA67C;
}
.team-profiles .text-section:hover h3 {
    color: #1EA67C;
    text-shadow: 0 2px 10px #1EA67C22;
}

/* Artistic list-bullets */
ul li {
    position: relative;
    padding-left: 32px;
    font-size: 1.02em;
}
ul li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 9px;
    width: 12px;
    height: 12px;
    background: #1EA67C;
    border-radius: 3px 8px 8px 3px / 3px 8px 8px 3px;
    opacity: 0.7;
    box-shadow: 0 1px 7px #1EA67C18;
}
.section ul li::before, .section ul li:before {
    background: #163050;
    opacity: 0.6;
}

/* Accent text, highlights */
strong, b {
    color: #1EA67C;
    font-weight: 700;
}

/* =============================
   FORMS (Kontaktformular)
   ============================= */
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #1EA67C88;
    border-radius: 8px;
    background: #ffffff;
    margin-bottom: 14px;
    color: #163050;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 2px 8px #1EA67C08;
    transition: border 0.13s, box-shadow 0.14s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    border: 1.5px solid #1EA67C;
    outline: none;
    box-shadow: 0 6px 24px #1EA67C19;
}
label {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05em;
    color: #163050;
    font-weight: 500;
}

/* =============================
   GENERAL UTILITIES
   ============================= */
.text-center {text-align: center;}
.mt-4 {margin-top: 32px;}
.mb-2 {margin-bottom: 16px;}
.mb-3 {margin-bottom: 24px;}
.mb-5 {margin-bottom: 40px;}
.py-3 {padding: 24px 0;}

/* =============================
   PRINT (optional, not part of artist styling)
   ============================= */
@media print {
    *, *:before, *:after {background: none !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important;}
    a, a:visited {text-decoration: underline;}
    a::after {content: " (" attr(href) ")";}
    nav, .main-nav, .mobile-menu, .mobile-menu-toggle, .cookie-consent-banner {display: none !important;}
    .section, .container, .card, .feature-grid > div, .service-list li, .team-profiles .text-section {
      box-shadow: none !important;
      border: 0 !important;
    }
}
section {
  padding: 10px 0;
}