/* ========================================
   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.6;
  background: #FFF;
  color: #264653;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}
:focus {
  outline: 2px solid #E9C46A;
  outline-offset: 2px;
}

/* ========================================
   BRAND FONTS & CREATIVE ARTISTIC ROOTS
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;600;400&family=Roboto:wght@400;500;700&display=swap');

:root {
  --color-primary: #264653;
  --color-secondary: #E9C46A;
  --color-accent: #FFFFFF;
  --color-art1: #FF7B7B; /* creative accent red */
  --color-art2: #43B7A1; /* creative teal */
  --color-art3: #8D55AA; /* creative purple */
  --color-art-bg: #FFF8F0;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--color-art-bg);
  color: var(--color-primary);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.13;
}
h1 { font-size: 2.4rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; font-weight: 700; }
h4 { font-size: 1.1rem; }

@media (max-width:600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.03rem; }
}

p, li, .text-section {
  font-size: 1rem;
  font-family: var(--font-body);
  line-height: 1.7;
  color: #31344b;
}
strong{
  font-weight: 700;
  color: var(--color-primary);
}

/* ========================================
   SECTION & CONTAINER LAYOUTS (FLEXBOX ONLY!)
======================================== */
.container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
}

.text-image-section{
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.content-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card{
  margin-bottom: 20px;
  position: relative;
  background: var(--color-accent);
  border-radius: 22px;
  box-shadow: 0 4px 16px rgba(38,70,83,0.09);
  transition: box-shadow 0.23s cubic-bezier(.5,1.5,.3,1.1);
}
.card:hover, .service-card:hover, .value-item:hover{
  box-shadow: 0 8px 28px 3px rgba(38,70,83,0.19);
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 18px;
}

/* ========================================
   CREATIVE/ARTISTIC COLOR SPLASHES + SHAPES
======================================== */
.hero, .cta {
  background: linear-gradient(97deg, var(--color-secondary) 0%, var(--color-art1) 100%);
  border-radius: 30px;
  box-shadow: 0 4px 32px 0 rgba(38,70,83,0.13);
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.hero:before, .cta:before {
  content: '';
  position: absolute;
  z-index: 0;
  width: 120px; height: 120px;
  border-radius: 47% 63% 70% 50%/62% 46% 71% 54%;
  background: var(--color-art2);
  top: 14px;
  left: 12px;
  opacity: .11;
}
.hero:after, .cta:after {
  content: '';
  position: absolute;
  z-index: 0;
  width:100px; height:100px;
  border-radius: 47% 38% 65% 58%/62% 58% 51% 54%;
  background: var(--color-art3);
  right: 40px; bottom: 6px;
  opacity: .13;
}
.hero > .container, .cta > .container{position:relative; z-index:1;}

/* ========================================
   HEADER & NAVIGATION
======================================== */
header {
  width: 100%;
  background: var(--color-accent);
  border-bottom: 4px solid var(--color-secondary);
  box-shadow: 0 4px 22px -12px #c5d0be;
  padding-top: 8px;
  padding-bottom: 8px;
  position: sticky;
  top: 0; z-index: 98;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
header img { height: 48px; width: auto; }
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
nav a {
  font-family: var(--font-display);
  font-size: 1.07rem;
  color: var(--color-primary);
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 12px;
  transition: background .2s, color .18s;
}
nav a:hover, .mobile-nav a:hover {
  background: var(--color-secondary);
  color: var(--color-art1);
}
.primary-cta {
  background: var(--color-art3);
  color: #fff;
  border-radius: 16px 32px 16px 32px/26px 20px 28px 16px;
  font-size: 1.08rem;
  font-family: var(--font-display);
  font-weight: bold;
  padding: 0.83em 2em;
  margin-left: 10px;
  box-shadow: 0 2px 15px 0 rgba(141,85,170,0.12);
  transition: background .22s, box-shadow .15s;
  letter-spacing: .7px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.primary-cta:after {
  content: '';
  position: absolute;
  z-index: -1;
  right: 0; bottom: 0;
  width: 60%; height: 30%;
  border-radius: 96% 37% 90% 29%/55% 84% 50% 61%;
  background: var(--color-secondary);
  opacity: .22;
  pointer-events: none;
  transition: opacity .23s;
}
.primary-cta:hover {
  background: var(--color-art2);
  color: #fff;
  box-shadow: 0 7px 20px 0 rgba(67,183,161,.19);
}
.primary-cta:active {
  box-shadow: 0 2px 8px 0 rgba(38,70,83,0.13);
}

@media (max-width:950px) {
  nav { gap: 9px; }
  .primary-cta { padding: 0.83em 1.05em; font-size: 0.98rem;}
  header img {height:37px;}
}

/* ========================================
   MOBILE MENU
======================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top:22px; right:20px;
  z-index: 108;
  height: 44px; width: 44px;
  background: var(--color-art1);
  border-radius: 24px;
  color: #fff;
  font-size: 2.1rem;
  transition: background .17s;
  border: 3px solid var(--color-primary);
  box-shadow: 0 2px 12px 0 rgba(255,123,123,.16);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-art3);
}

.mobile-menu {
  display: none;
  position: fixed;
  z-index: 120;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--color-art3);
  color: #fff;
  box-shadow: 0 0 0 200vw rgba(0,0,0,.24);
  overscroll-behavior: contain;
  transition: transform .33s cubic-bezier(.4,1.5,.3,1.1);
  transform: translateX(-100%);
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.25rem;
  margin-left: auto;
  margin-top: 19px;
  margin-right: 16px;
  background: var(--color-art1);
  color: #fff;
  border-radius: 13px;
  width:42px; height:42px;
  border: 2px solid #fff;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 48px 34px 0 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
  border-radius: 12px;
  padding: 11px 0 11px 8px;
  width: 100%;
  transition: background .17s, color .18s;
}
.mobile-nav a:active {
  background: var(--color-art2);
  color: #fff;
}
@media (max-width:1000px) {
  nav, .primary-cta {
    display: none;
  }
  .mobile-menu-toggle{
    display: block;
  }
}
@media (min-width:1001px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===================================
   HERO, FEATURE & VALUE AREAS
=================================== */
.hero h1, .cta h2 {
  color: var(--color-art3);
  text-shadow: 0 2px 6px #fff2;
  font-family: var(--font-display);
  margin-bottom: 0.5em;
}
.hero p, .cta p {
  color: var(--color-primary);
  font-size: 1.09rem;
}
.features {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 17px 0 rgba(233,196,106,0.09);
  margin-bottom: 60px;
  padding: 37px 0;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  flex-direction: row;
}
.features li {
  color: var(--color-art3);
  background: #F7DDB1;
  font-family: var(--font-body);
  font-size: 1.08rem;
  padding: 16px 17px;
  margin-bottom: 7px;
  border-radius: 13px;
  font-weight: 500;
  min-width: 185px;
  flex: 1 0 180px;
  box-shadow: 0 2px 10px 0 rgba(60,90,113,0.09);
  position: relative;
}
.features li:before {
  content: '★';
  color: var(--color-art2);
  font-size: 1.16em;
  margin-right: .45em;
  vertical-align: -2px;
}

@media (max-width: 700px) {
  .features ul {
    flex-direction: column;
    gap: 10px;
  }
  .features li {
    min-width: 0;
    width: 100%;
  }
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: space-between;
}
.value-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FAFAFA;
  border-radius: 19px;
  box-shadow: 0 4px 17px 0 rgba(38,70,83,0.07);
  padding: 28px 24px 24px 24px;
  min-width: 210px;
  flex: 1 0 180px;
  max-width: 250px;
  transition: box-shadow .2s;
}
.value-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 9px;
}

@media (max-width: 950px) {
  .values-list { gap:16px; }
  .value-item { max-width: 100%; min-width: 0; }
}
@media (max-width:650px){
  .values-list { flex-direction: column; }
}

/* ====================================
   SERVICE CARDS & FEATURE LISTS
==================================== */
.service-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 16px 0 0 0;
  justify-content: space-between;
}
.service-card {
  background: linear-gradient(120deg, #FFF 80%, #E2E9EC 110%);
  border-radius: 26px;
  box-shadow: 0 4px 19px 0 rgba(38,70,83,0.09);
  padding: 27px 24px 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  flex: 1 0 240px;
  max-width: 280px;
  position: relative;
  transition: box-shadow .19s;
  min-height: 270px;
}
.service-card img {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #f4eeff;
  margin-bottom: 10px;
  box-shadow: 0 2px 11px 0 rgba(233,196,106,0.17);
}
.service-price {
  color: var(--color-art1);
  font-size: 1.18rem;
  font-weight: bold;
  margin-top: 6px;
  font-family: var(--font-display);
  letter-spacing: .9px;
}

@media (max-width: 800px) {
  .service-cards-grid { gap: 15px; }
  .service-card { max-width: 100%; min-width: 0; }
}
@media (max-width: 540px) {
  .service-cards-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
}

.service-list ul, .education ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-list li, .education li {
  background: #f9f3ea;
  border-radius: 17px;
  padding: 24px 19px 21px 25px;
  box-shadow: 0 2px 6px 0 rgba(38,70,83,0.05);
  margin-bottom: 12px;
  font-size: 1.04rem;
}
@media (max-width: 600px) {
  .service-list li, .education li {font-size: .97rem; gap:9px;}
  .service-list ul, .education ul {gap:13px;}
}

/* =======================================
   BLOG LISTING & ARTICLE GRID
======================================= */
.blog-list .article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.blog-list article {
  background: #fcfaf3;
  border-radius: 22px;
  box-shadow: 0 4px 15px 4px rgba(66,90,120,0.06);
  padding: 25px 22px 24px 22px;
  flex: 1 0 280px;
  margin-bottom: 20px;
  transition: box-shadow .15s, border-color .19s;
  border: 2px solid transparent;
}
.blog-list article:hover {
  border-color: var(--color-art2);
  box-shadow: 0 7px 19px 6px rgba(67,183,161,0.13);
}
.blog-list h3 {color: var(--color-art1);}
.blog-list a {
  color: var(--color-art3);
  font-family: var(--font-display);
  font-weight: bold;
  margin-top: 11px;
  display: inline-block;
  transition: color .16s;
}
.blog-list a:hover { color: var(--color-primary); }

@media (max-width: 900px){
  .blog-list .article-grid {
    flex-direction: column;
    gap: 17px;
  }
  .blog-list article {max-width: 100%;}
}

/* ============================================
   TESTIMONIALS AREA – STRONG CONTRAST FOR TEXT!
============================================= */
.testimonials, .testimonial-list, .testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  flex-direction: row;
  justify-content: flex-start;
}
.testimonials .content-wrapper, .testimonial-list {
  flex-direction: column;
  gap: 19px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 21px 19px 28px;
  background: #fff;
  border-left: 7px solid var(--color-art2);
  border-radius: 16px 22px 22px 16px;
  box-shadow: 0 2px 11px 0 rgba(38,70,83,0.07);
  margin-bottom: 23px;
  font-size: 1.07rem;
  position: relative;
  flex: 1 1 270px;
  min-width: 220px;
  transition: border-color .2s, box-shadow .19s;
}
.testimonial-card p {
  color: #14282C;
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.48;
  font-weight: 500;
  margin-right: 8px;
}
.testimonial-client {
  color: var(--color-art3);
  font-size: .98rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-left: auto;
}
@media (max-width: 800px) {
  .testimonials, .testimonial-list, .testimonial-carousel {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===========================================
   CONTACT/FOOTER STYLES – ARTISTIC FLARE
=========================================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 32px 0 0 0;
  margin-top:60px;
  border-radius: 30px 30px 0 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 19px;
  flex-wrap: wrap;
  padding-bottom: 24px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 19px;
}
footer nav a {
  color: var(--color-secondary);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
  text-decoration: underline dashed var(--color-art3) 2px;
  border-radius: 13px;
  padding: 3px 0;
  transition: background .14s;
}
footer nav a:hover {
  background: var(--color-art3);
  color: #fff;
}
.footer-info, .footer-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.96rem;
}
.footer-logo img {
  width: 62px; height:62px;
  margin-top: 12px;
}
@media (max-width:900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-info {margin-top: 7px;}
  .footer-logo{margin-top: 15px; }
}

/* ====================================
   CTA / PROMPT SECTION
==================================== */
.cta {
  margin: 40px 0;
  padding: 42px 0 38px 0;
  text-align: center;
}
.cta .content-wrapper {
  align-items: center;
}
.cta h2 {
  color: var(--color-primary);
  margin-bottom: 23px;
  font-weight: 900;
}

/* =========================================
   TEXT SECTION/GENERAL/MISC ARTISTIC EFFECTS
========================================= */
.text-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(38,70,83,0.07);
  padding: 22px 21px 20px 21px;
  margin-bottom: 19px;
}
/* General links style */
a {
  transition: color .14s, background .14s;
}
a:hover {
  color: var(--color-art1);
}


/* =========================================
   BUTTON STYLES - FORMS, COOKIES, ETC.   
 ======================================= */
button, .button, .cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px;
  padding: 0.6em 1.65em;
  border: none;
  background: var(--color-art2);
  color: #fff;
  box-shadow: 0 2px 11px 0 rgba(67,183,161,0.10);
  cursor: pointer;
  transition: background .18s, box-shadow .18s, color .18s;
}
button:hover, .cookie-banner button:hover {
  background: var(--color-art1);
  color: #fff;
  box-shadow: 0 7px 23px 0 rgba(255,123,123,0.22);
}
button:focus, .cookie-banner button:focus {
  outline: 2.5px solid var(--color-secondary);
}
.cookie-banner .btn-settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .btn-settings:hover {
  background: var(--color-art2);
  color: #fff;
}

/* ====================================
   COOKIE CONSENT BANNER & MODAL
==================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right:0;
  z-index: 9999;
  background: #fff;
  border: 2.5px solid var(--color-art2);
  border-radius: 22px 22px 0 0/42px 42px 0 0;
  box-shadow: 0 -6px 24px rgba(38,70,83,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 23px;
  padding: 17px 32px 17px 23px;
  max-width: 700px;
  width: 98%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  animation: slideup-cookie .7s cubic-bezier(.19,1.02,.31,1.02);
}
@keyframes slideup-cookie {
  from { transform: translateX(-50%) translateY(150px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex:1 1 55%;
  font-size: 1.04rem;
  color: var(--color-primary);
}
.cookie-banner .cookie-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

@media(max-width:700px){
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    max-width: 99vw;
    padding: 13px 12px 12px 13px;
  }
  .cookie-banner .cookie-actions{
    gap:10px;
    justify-content: flex-end;
  }
  .cookie-banner p{
    font-size:0.95rem;
  }
}

.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(.9);
  background: #fff;
  border-radius: 27px;
  border: 3.5px solid var(--color-art3);
  box-shadow: 0 2px 36px rgba(141,85,170,0.15);
  padding: 42px 28px 26px 28px;
  min-width: min(92vw, 450px);
  animation: pop-cookie .34s cubic-bezier(.18,.94,.38,1.02);
}
@keyframes pop-cookie {
  from { opacity: 0; transform: translate(-50%,-40%) scale(.67); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal.active{
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.cookie-modal h2{color:var(--color-art3); text-align:center; margin-bottom: 7px;}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-option{
  display: flex;
  align-items:center;
  gap:13px;
  font-size: 1.02rem;
  font-family: var(--font-body);
}
.cookie-toggle {
  accent-color: var(--color-art2);
}
.cookie-modal .cookie-actions{
  display: flex;
  gap: 15px;
  justify-content: center;
}
@media(max-width:520px){
  .cookie-modal{padding:20px 8px; min-width:95vw;}
}

/* ====================================
   MICRO-INTERACTIONS & SMOOTH TRANSITIONS
==================================== */
*, *:before, *:after { box-sizing: inherit; }
html { scroll-behavior: smooth; }
button, .primary-cta, .card, .service-card, nav a, .mobile-menu-toggle, .value-item, .testimonial-card, .cookie-banner, .cookie-modal{
  transition: box-shadow .23s, background .21s, color .14s, border-color .17s;
}

/* ====================================
   RESPONSIVE LAYOUT
==================================== */
@media (max-width: 1100px) {
  .container{max-width:98vw;}
}
@media (max-width: 700px) {
  .container {padding: 0 7px;}
  .section {padding: 16px 4px; margin-bottom:28px;}
}

/* ARTISTIC EXTRAS: Decorative doodle-style effects on cards */
.service-card:before {
  content: '';
  position: absolute;
  top: 10px; right: 14px;
  width: 23px; height: 23px;
  border-radius: 50% / 38% 67% 53% 31%;
  background: var(--color-art1);
  opacity: .12;
}
.value-item:after {
  content: '';
  position: absolute;
  left: 14px; bottom: 11px;
  width: 17px; height: 17px;
  border-radius: 55% 24% 80% 37%/28% 63% 40% 61%;
  background: var(--color-art2);
  opacity: .11;
}

/* ------------------------------------
   MISC UTILITY
------------------------------------ */
.hide { display: none !important; }
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }

/* ------------------------------------
  ENSURE NO GRID/COLUMNS/ABS POSITIONING!
------------------------------------ */
/* No display:grid, grid-*, column-*, break-inside, etc. in this file! */
