/* --- CSS RESET & BASE --- */
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, menu, 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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {font-size: 16px;}
body { 
  min-height: 100vh; 
  font-family: 'Roboto', Arial, sans-serif;
  color: #2F4858;
  background: #F3F7F0;
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,svg {max-width:100%; display:block;}
ul,ol { list-style: none; }
a { 
  text-decoration: none; 
  color: inherit; 
  transition: color 0.2s cubic-bezier(.86,0,.07,1);
}
a:focus { outline: 2px solid #7FB069; outline-offset: 2px; }
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
strong, b { font-weight: 700; }

/* --- BRAND COLORS --- */
:root {
  --clr-primary: #2F4858;
  --clr-secondary: #7FB069;
  --clr-accent: #F3F7F0;
  --clr-contrast: #FFFFFF;
  --clr-focus: #E2C044;
  --clr-highlight1: #FF6987;
  --clr-highlight2: #51A3A3;
  --shadow-main: 0 2px 12px 0 rgba(47,72,88,0.07), 0 1.5px 6px 0 rgba(127,176,105,0.11);
}

/* --- TYPOGRAPHY & ARTISTIC FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;1,900&family=Roboto:ital,wght@0,400;0,500;1,700&display=swap');
h1, h2, h3, .cta, header .main-nav .cta {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--clr-primary);
  /* Decorative underline accent */
  position: relative;
}
h1::after {
  content: '';
  display: block;
  width: 60px; height: 5px;
  margin-top: 14px;
  background: linear-gradient(90deg, #7FB069, #FF6987 45%, #51A3A3 100%);
  border-radius: 4px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--clr-secondary);
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--clr-highlight1);
}
section p, .text-section p {
  font-size: 1.1rem;
  color: #2F4858;
  margin-bottom: 16px;
}
.text-section ul, .text-section ol {
  margin-bottom: 20px;
  margin-left: 0;
}
.text-section li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

/* -- Container and Section Spacing -- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- NAVIGATION --- */
header {
  width: 100%;
  box-shadow: 0 2px 12px 0 rgba(47,72,88,0.05);
  background: var(--clr-contrast);
  position: relative;
  z-index: 20;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--clr-primary);
  padding: 8px 18px;
  border-radius: 24px;
  position: relative;
  transition: background 0.25s cubic-bezier(.86,0,.07,1), color 0.2s, box-shadow 0.22s;
  text-align: center;
}
.main-nav .logo {
  margin-right: 24px;
  padding: 6px 0 6px 0;
  border: none;
}
.main-nav .cta {
  background: var(--clr-highlight1);
  color: var(--clr-contrast);
  font-weight: bold;
  box-shadow: 0 2px 8px 0 rgba(255,105,135,0.07);
  margin-left: 18px;
}
.main-nav a:not(.cta):hover, .main-nav a:not(.cta):focus {
  background: var(--clr-accent);
  color: var(--clr-secondary);
}
.main-nav .cta:hover, .main-nav .cta:focus {
  background: var(--clr-highlight2);
  color: var(--clr-contrast);
  box-shadow: 0 2px 12px rgba(127,176,105,0.15);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 26px;
  top: 22px;
  font-size: 2rem;
  color: var(--clr-highlight1);
  background: var(--clr-accent);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 31;
  box-shadow: 0 2px 6px rgba(127,176,105,0.12);
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--clr-highlight1);
  color: var(--clr-contrast);
  outline: none;
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(47,72,88,0.94);
  z-index: 50;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.86,0,.07,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 2.2rem;
  color: var(--clr-accent);
  z-index: 51;
  background: none;
  border: none;
  width: 48px;
  height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--clr-highlight1);
  background: var(--clr-accent);
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 80px;
  margin-left: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  color: var(--clr-accent);
  background: none;
  margin-bottom: 10px;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.22s, color 0.18s;
  padding: 14px 28px 14px 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--clr-highlight1);
  color: #fff;
}

/* -- Responsive Nav -- */
@media (max-width: 1110px) {
  .main-nav {
    gap: 15px;
    flex-wrap: wrap;
  }
  .main-nav .logo { margin-right: 14px; }
}
@media (max-width: 900px) {
  .main-nav a { padding: 8px 10px; font-size: 0.98rem; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* --- HERO, CARD, LISTING, SECTION ARTISTIC LAYOUTS --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 30px;
  background: var(--clr-contrast);
  box-shadow: var(--shadow-main);
}
@media (max-width: 700px) {
  section {
    padding: 24px 7px;
    border-radius: 14px;
  }
  .container { padding: 0 3vw; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FAFAFA;
  border: 2.5px solid var(--clr-highlight2);
  border-radius: 18px 36px 24px 36px;
  box-shadow: 0 3px 15px rgba(127,176,105,0.08);
  padding: 16px 22px;
  transition: transform 0.21s, box-shadow 0.23s;
}
.card:hover, .card:focus-within {
  transform: translateY(-5px) scale(1.018);
  box-shadow: 0 7px 36px 0 rgba(127,176,105,0.16), 0 2px 8px 0 rgba(255,105,135,0.12);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F7FDF6;
  border-radius: 22px 18px 26px 30px;
  border: 2px solid var(--clr-secondary);
  color: #23292A;
  min-width: 270px;
  max-width: 420px;
  box-shadow: 0 5px 30px 0 rgba(47,72,88,0.08), 0 2px 8px 0 rgba(127,176,105,0.13);
  margin-bottom: 20px;
  transition: box-shadow 0.27s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 44px 0 rgba(127,176,105,0.19), 0 2px 12px 0 rgba(255,105,135,0.16);
}
.testimonial-card p {
  font-size: 1.09rem;
  font-style: italic;
  color: #222942;
  margin-bottom: 9px;
}
.testimonial-card strong {
  color: var(--clr-secondary);
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.rating-summary span {
  display: inline-block;
  background: var(--clr-highlight1);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 18px 18px 26px 26px;
  padding: 8px 22px;
  margin-top: 10px;
  letter-spacing: .01em;
  box-shadow: 0 3px 14px 0 rgba(255,105,135,0.10);
}
@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card { max-width: 100%; }
}

/* Feature/Service Item Style */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F2FBF5;
  border-radius: 14px;
  border-left: 5px solid var(--clr-highlight2);
  padding: 16px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(127,176,105,0.10);
}

/* --- CTA BUTTONS --- */
.cta, .main-nav .cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.10rem;
  padding: 14px 34px;
  border-radius: 34px 24px 44px 20px;
  background: var(--clr-highlight1);
  color: #fff;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 3px 14px 0 rgba(255,105,135,0.10);
  transition: background .22s, color .15s, box-shadow .24s, transform .17s;
  position: relative;
  margin-bottom: 24px;
}
.cta:hover, .cta:active, .cta:focus {
  background: var(--clr-secondary);
  color: #fff;
  box-shadow: 0 5px 26px 0 rgba(127,176,105,0.19);
  transform: scale(1.04) translateY(-1px) rotate(-2deg);
  outline: none;
}

/* --- FOOTER --- */
footer {
  background: var(--clr-primary);
  color: var(--clr-accent);
  padding: 32px 0 18px 0;
  font-size: 1rem;
  box-shadow: 0 -2px 8px 0 rgba(47,72,88,0.05);
}
footer .container { margin-bottom: 0;}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 44px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--clr-accent);
  text-decoration: underline dotted;
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--clr-highlight2);
  color: #fff;
  outline: none;
}
.brand-statement {
  font-size: 0.98rem;
  color: #DEEDDA;
  margin-top: 12px;
}
.contact-info address {
  font-style: normal;
  color: #C7F9CC;
  font-size: 1rem;
  margin-bottom: 8px;
  margin-top: 4px;
  line-height: 1.75;
}
.contact-info a {
  color: #F3F7F0;
  text-decoration: underline;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 110;
  width: 100vw;
  background: var(--clr-accent);
  color: var(--clr-primary);
  border-top: 4px solid var(--clr-highlight1);
  box-shadow: 0 -3px 20px rgba(47,72,88,.17);
  padding: 20px 30px;
  animation: slideUpBanner 0.46s cubic-bezier(.86,0,.07,1);
  font-size: 1rem;
  gap: 22px;
}
@keyframes slideUpBanner {
  from { transform: translateY(110%); }
  to { transform: translateY(0%); }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-size: 1rem;
  border-radius: 20px;
  padding: 10px 22px;
  margin-right: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border: none;
  cursor: pointer;
  background: var(--clr-secondary);
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(127,176,105,0.13);
  transition: background 0.16s, color 0.14s, transform 0.15s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--clr-highlight1);
  color: #fff;
  outline: none;
  transform: scale(1.06);
}
.cookie-banner .cookie-settings {
  background: var(--clr-highlight2);
  color: #2F4858;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--clr-highlight1);
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 200;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(47,72,88,0.59);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.37s cubic-bezier(.8,0,.13,0.97);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: var(--clr-contrast);
  border-radius: 24px 32px 20px 36px;
  box-shadow: 0 9px 45px 0 rgba(127,176,105,0.22);
  padding: 36px 34px 30px 34px;
  min-width: 340px;
  max-width: 95vw;
  font-size: 1.1rem;
  position: relative;
  animation: popUpModal 0.38s cubic-bezier(.8,0,.09,1.09);
}
@keyframes popUpModal {
  from { transform: translateY(32px) scale(0.86); opacity: 0.7; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 13px;
  background: var(--clr-highlight1);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: var(--clr-secondary); }
.cookie-modal h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--clr-primary);
}
.cookie-options {
  margin: 18px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-option {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dotted var(--clr-highlight2);
  font-size: 1rem;
}
.cookie-option input[type="checkbox"] { accent-color: var(--clr-highlight2); width: 20px; height: 20px; cursor: pointer; }
.cookie-option label { font-weight: 500; color: var(--clr-primary); }
.cookie-option .cookie-essential {
  color: var(--clr-secondary);
  font-style: italic;
  font-size: 0.96rem;
}
@media (max-width: 600px) {
  .cookie-modal { padding: 20px 7px 20px 12px; min-width: unset; }
  .cookie-opt-list { gap: 8px; }
}

/* --- UTILITY & MISC --- */
strong {
  font-weight: 700;
  color: var(--clr-highlight2);
}
::-webkit-input-placeholder { color: #B0B0B0; }
::-moz-placeholder { color: #B0B0B0; }
:-ms-input-placeholder { color: #B0B0B0; }
::placeholder { color: #B0B0B0; }

/* ARTISTIC DECORATIVE ELEMENTS */
section, .card, .testimonial-card {
  position: relative;
}
section::before, .card::before, .testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
}
section::before {
  left: -28px;
  top: -24px;
  width: 44px; height: 44px;
  border-radius: 60% 20% 60% 40%;
  background: var(--clr-highlight2);
  opacity: .20;
  pointer-events: none;
}
.card::before {
  right: -22px;
  top: -14px;
  width: 28px; height: 28px;
  border-radius: 60%;
  background: var(--clr-highlight1);
  opacity: .12;
  pointer-events: none;
}
.testimonial-card::before {
  left: -12px;
  bottom: -10px;
  width: 22px;height: 22px;
  border-radius: 70% 35% 60% 45%;
  background: var(--clr-secondary);
  opacity: .12;
  pointer-events: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .container{max-width:100%;}
  .content-wrapper {
    gap: 13px;
  }
  h1 { font-size: 2em; }
  h2 { font-size: 1.36em; }
  .footer-nav {
    gap: 9px 0;
  }
  .section {
    margin-bottom: 30px;
    padding: 18px 3vw;
  }
  .card-container { gap: 13px; }
  .card { padding: 10px 10px; }
  .testimonial-card {
    padding: 12px;
    min-width: unset;
    margin-bottom: 12px;
  }
}

/* -- Print Styles & Accessibility -- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff; color: #000; }
}

/* --- ARTISTIC HIGHLIGHT DECOR --- */
h2 {
  position: relative;
}
h2:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-left: 16px;
  width: 24px;
  height: 8px;
  border-radius: 12px;
  background: linear-gradient(90deg, #FF6987 0%, #51A3A3 100%);
  opacity: .37;
}

/* --- INPUTS & FORMS (future forms) --- */
input[type=text], input[type=email], textarea {
  background: #fff;
  border: 2px solid var(--clr-secondary);
  border-radius: 14px;
  font-size: 1.08rem;
  font-family: inherit;
  padding: 11px 14px;
  box-shadow: 0 1px 4px 0 rgba(47,72,88,0.04);
  margin-bottom: 18px;
  width: 100%;
  transition: border 0.19s;
}
input:focus, textarea:focus {
  border-color: var(--clr-highlight1);
  outline: none;
}

/* --- LISTS --- */
ul {
  padding-left: 20px;
}
ul li {
  padding-left: 0;
  margin-bottom: 12px;
  position: relative;
}
ul li:before {
  content: '\2022';
  color: var(--clr-highlight2);
  font-weight: bold;
  display: inline-block;
  width: 1em; margin-left: -1em;
  font-size: 1.5em;
  vertical-align: top;
}

ol {
  padding-left: 22px;
}
ol li {
  margin-bottom: 10px;
}
ol li:before { display: none; }

/* --- SCROLLBAR (Modern Artistic) --- */
::-webkit-scrollbar {
  width: 8px;
  background: var(--clr-accent);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(105deg,var(--clr-secondary),var(--clr-highlight1));
  border-radius: 8px;
}

/* --- MICRO-INTERACTIONS --- */
.card, .testimonial-card, .cta, .main-nav .cta, .cookie-banner button {
  transition: transform 0.18s cubic-bezier(.86,0,.07,1), box-shadow 0.17s, background .18s, color .13s;
}
.card:active, .testimonial-card:active { transform: scale(0.98); }

/* --- ARTISTIC FLAIR FOR "creative_artistic" --- */
h1, h2, h3 {
  text-shadow: 1.5px 1.5px 0.7px rgba(255,105,135,0.08), 1px 2.5px 1px rgba(81,163,163,0.05);
}

/* --- Selectors for required flex spacing patterns --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Make sure flex is only used, no grid, columns, etc! */

/* ----- END OF ARTISTIC CSS ----- */