/* === CSS RESET & NORMALIZATION === */
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;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #245784;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
  transition: background 0.3s;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #108763;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #245784;
}
ul,ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
strong,b {
  font-weight: bold;
}

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

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #245784;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.6rem; line-height: 1.12; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }
h4 { font-size: 1.15rem; margin-bottom: 9px; }
@media (min-width: 740px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.6rem; }
}

p {
  margin-bottom: 16px;
}


/* === CONTAINER & FLEX BASICS === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  margin-bottom: 32px;
  padding: 0;
}

/* === SECTION LAYOUT & SPACING === */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 900px) {
  section, .section {
    padding: 32px 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  section, .section {
    padding: 24px 0;
    margin-bottom: 32px;
  }
}

.text-section {
  max-width: 670px;
  margin: 0 auto 32px auto;
  text-align: center;
  padding: 0 0;
}

/* FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(36,87,132,0.07);
  transition: box-shadow 0.28s;
  padding: 30px 24px;
  min-width: 250px;
}

.card:hover, .card:focus {
  box-shadow: 0 6px 20px 0 rgba(16,135,99,0.11);
}

.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: 22px;
    align-items: stretch;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F2F4F7;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(36,87,132,0.07);
  margin-bottom: 20px;
  flex: 1 1 320px;
  color: #202328;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(16,135,99,0.10);
  padding: 18px 16px;
}

/* === ARTISTIC COLOR SCHEME === */
:root {
  --brand-primary: #245784;
  --brand-secondary: #108763;
  --brand-accent: #F2F4F7;
  --art-blue: #3b70d1;
  --art-green: #13b07a;
  --art-orange: #F7AA1C;
  --art-lila: #A997E9;
  --art-red: #FF6584;
  --art-yellow: #FBE8A6;
  --art-bg-card: #fff;
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: #fff;
  border-bottom: 2px solid var(--brand-accent);
  box-shadow: 0 1px 12px rgba(36,87,132,0.06);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--brand-primary);
  border-radius: 8px;
  padding: 6px 15px;
  transition: background 0.17s, color 0.17s;
}
.desktop-nav .cta-btn {
  background: linear-gradient(90deg, var(--art-blue), var(--art-green), var(--art-orange));
  color: #fff !important;
  padding: 7px 26px;
  margin-left: 10px;
  border-radius: 32px;
  font-size: 1.14rem;
  font-weight: bold;
  box-shadow: 0 4px 18px 0 rgba(16,135,99,0.09);
  border: 2px solid var(--art-green);
}
.desktop-nav .cta-btn:hover, .desktop-nav .cta-btn:focus {
  background: linear-gradient(90deg, var(--art-orange), var(--art-blue), var(--art-lila));
}
.desktop-nav a:hover, .desktop-nav a.active {
  background: var(--brand-accent);
  color: var(--brand-secondary);
}
.mobile-menu-toggle {
  background: #fff;
  border: none;
  font-size: 2rem;
  color: var(--brand-secondary);
  padding: 6px 14px;
  border-radius: 8px;
  margin-left: 10px;
  cursor: pointer;
  display: none;
  box-shadow: 0 1px 6px rgba(36,87,132,0.07);
  transition: background 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--brand-accent);
  color: var(--art-orange);
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  header .container {
    gap: 8px;
    padding-left: 6px;
    padding-right: 6px;
  }
  .desktop-nav .cta-btn {
    padding: 8px 13px;
    font-size: 1rem;
  }
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #fff 78%, var(--art-yellow) 100%);
  z-index: 2911;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.56,1.32,.59,.98);
  padding: 18px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  box-shadow: -8px 0 32px 0 rgba(36,87,132,0.10);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--art-red);
  position: absolute;
  top: 22px; right: 25px;
  cursor: pointer;
  z-index: 11;
  padding: 0 10px;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--art-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 30px;
  margin-top: 90px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--brand-primary);
  padding: 13px 20px 13px 2px;
  border-radius: 8px;
  width: 100%;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--art-yellow);
  color: var(--art-green);
}

@media (max-width: 600px) {
  .mobile-nav {
    padding-left: 17px;
    margin-top: 75px;
    gap: 18px;
  }
  .mobile-menu-close {
    right: 12px;
    top: 11px;
    font-size: 2rem;
  }
}

/* === ARTISTIC BUTTONS === */
.cta-btn {
  background: linear-gradient(90deg, var(--art-blue), var(--art-green) 80%, var(--art-orange));
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  border-radius: 40px;
  padding: 12px 36px;
  min-width: 180px;
  box-shadow: 0 6px 22px 0 rgba(36,87,132,0.09);
  border: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg, var(--art-orange), var(--art-blue) 80%, var(--art-lila));
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
  box-shadow: 0 11px 29px 0 rgba(16,135,99,0.17);
  outline: none;
}

/* === FEATURE GRID/LIST === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 32px;
  margin-bottom: 22px;
  margin-top: 16px;
}
.feature-grid > div {
  flex: 1 1 210px;
  min-width: 190px;
  background: linear-gradient(120deg, #fff 85%, #A997E933 100%);
  border-radius: 19px;
  box-shadow: 0 2px 12px 0 rgba(36,87,132,0.06);
  padding: 22px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.19s, transform 0.17s;
}
.feature-grid > div:hover {
  box-shadow: 0 7px 22px 0 rgba(16,135,99,0.10);
  transform: scale(1.025) rotate(-1.5deg);
}
.feature-grid img, .feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.3rem;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px 12px;
  }
  .feature-grid>div {
    min-width: 129px;
    padding: 16px 10px 16px 13px;
  }
}
@media (max-width: 700px) {
  .feature-grid {
    gap: 15px 4px;
    flex-direction: column;
    align-items: stretch;
  }
  .feature-grid>div {
    padding: 19px 10px 16px 12px;
  }
}

/* === SERVICE CARDS === */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: center;
}
.service-cards > div {
  flex: 1 1 200px;
  min-width: 210px;
  background: linear-gradient(125deg, #FF658409 0%, #A997E909 90%, #fff 100%);
  border-radius: 19px 31px 14px 23px / 17px 23px 33px 19px;
  padding: 26px 20px 17px 25px;
  box-shadow: 0 4px 17px 0 rgba(244,164,96,0.09);
  transition: box-shadow 0.18s, transform 0.14s;
  display: flex;
  flex-direction: column;
  gap: 11px;
  position: relative;
}
.service-cards > div:hover {
  box-shadow: 0 7px 34px 0 rgba(16,135,99,0.13);
  transform: scale(1.024) rotate(-2deg);
}
.service-cards h3 {
  color: var(--art-orange);
}
@media (max-width: 800px) {
  .service-cards {
    flex-direction: column;
    gap: 16px;
  }
}

/* === TESTIMONIALS === */
.testimonial-slider,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.testimonial-card {
  flex: 1 1 320px;
  background: var(--brand-accent);
  color: #232629;
  border-radius: 18px;
  padding: 20px 30px;
  box-shadow: 0 3px 19px 0 rgba(16,135,99,0.08);
  transition: box-shadow 0.17s, transform 0.11s;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
}
.testimonial-card p {
  margin-bottom: 9px;
}
.testimonial-card strong {
  display: block;
  margin-top: 5px;
  font-size: 0.98em;
  color: var(--brand-secondary);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.testimonial-card:hover {
  box-shadow: 0 5px 30px 0 rgba(36,87,132,0.12);
  transform: translateY(-2px) scale(1.02);
}
/* Ensuring contrast */
.testimonial-card, .testimonial-card p, .testimonial-card strong {
  color: #232629;
  background: #F2F4F7;
}

.summary-rating,
.aggregate-rating {
  margin-top: 12px;
  font-weight: bold;
  color: var(--art-green);
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1.11rem;
}

/* === TEAM PROFILES & CARDS === */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 15px;
  justify-content: flex-start;
}
.team-profiles > div {
  flex: 1 1 225px;
  min-width: 190px;
  background: linear-gradient(120deg, #fff 85%, #A997E933 100%);
  box-shadow: 0 4px 20px 0 rgba(36,87,132,0.07);
  border-radius: 15px;
  padding: 23px 14px 17px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  position: relative;
  transition: box-shadow 0.14s, transform 0.12s;
  border-left: 5px solid var(--art-green);
}
.team-profiles > div:hover {
  box-shadow: 0 10px 28px 0 rgba(244,164,96,0.15);
  transform: scale(1.023) rotate(1.5deg);
}

@media (max-width: 900px) {
  .team-profiles {
    gap: 14px;
  }
  .team-profiles > div {
    min-width: 149px;
    padding: 15px 8px 10px 12px;
  }
}
@media (max-width: 800px) {
  .team-profiles {
    flex-direction: column;
  }
}
/* === FAQ ACCORDION === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
  max-width: 740px;
}
.faq-accordion > div {
  background: #fff;
  border-left: 6px solid var(--art-blue);
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(36,87,132,0.08);
  padding: 18px 18px 7px 18px;
  transition: box-shadow 0.14s, border-color 0.14s;
}
.faq-accordion > div:hover {
  box-shadow: 0 6px 19px 0 rgba(36,87,132,0.14);
  border-left: 6px solid var(--art-orange);
}

/* === STEP LIST === */
.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 17px;
  margin-top: 12px;
}
.step-list > div {
  flex: 1 1 170px;
  min-width: 160px;
  background: #f2f4f7;
  border-radius: 13px;
  box-shadow: 0 2.5px 11px 0 rgba(16,135,99,0.07);
  padding: 22px 13px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

@media (max-width: 800px) {
  .step-list {
    flex-direction: column;
    gap: 13px;
  }
}

/* === CONTACT DETAILS === */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 1.11rem;
}
.contact-details img {
  width: 27px;
  height: 27px;
  margin-right: 12px;
  vertical-align: middle;
  display: inline-block;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

/* === FOOTER === */
footer {
  background: linear-gradient(90deg, #F2F4F7 60%, #A997E933 100%);
  border-top: 2px solid var(--art-blue);
  padding: 38px 0 22px 0;
  width: 100%;
  position: relative;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 13px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: var(--brand-primary);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  border-bottom: 2px solid var(--brand-secondary);
  color: var(--art-green);
}
.footer-contact {
  max-width: 290px;
  font-size: 0.99rem;
  color: #245784;
}
.footer-contact a {
  color: var(--art-blue);
  text-decoration: underline;
  font-weight: 700;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .footer-nav {
    margin-top: 8px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 20px 0 15px 0;
  }
  .footer-contact {
    font-size: 0.92rem;
  }
}

/* === ADDITIONAL LAYOUT STYLES === */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

/* === ULTRA ARTISTIC DECOR TRICKS === */
h1, h2, h3 {
  background: linear-gradient(80deg, var(--art-blue) 55%, var(--art-green) 78%, var(--art-orange));
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 600px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.15rem; }
}

/* Artistic underline for section titles */
h2::after {
  content: '';
  display: block;
  width: 45px;
  height: 5px;
  margin: 12px auto 0 auto;
  background: linear-gradient(90deg, var(--art-blue), var(--art-green), var(--art-orange));
  border-radius: 6px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 59000;
  background: linear-gradient(90deg, #fff 80%, #FBE8A6 100%);
  box-shadow: 0 -3px 16px 0 rgba(36,87,132,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #234;
  border-top: 2px solid var(--art-orange);
  animation: cb-slideup 0.77s cubic-bezier(.14,1.03,.44,.99);
  min-height: 70px;
}
.cookie-banner__text {
  flex: 1 1 330px;
}
.cookie-banner__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 28px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.16s, color 0.13s;
  margin: 0 0 0 3px;
  cursor: pointer;
  box-shadow: 0 2px 11px 0 rgba(244,164,96,0.04);
}
.cookie-btn--accept {
  background: var(--art-green);
  color: #fff;
}
.cookie-btn--accept:hover {
  background: var(--art-blue);
}
.cookie-btn--reject {
  background: #fff;
  color: var(--art-red);
  border: 1.5px solid var(--art-red);
}
.cookie-btn--reject:hover {
  background: var(--art-yellow);
  color: var(--art-blue);
  border-color: var(--art-blue);
}
.cookie-btn--settings {
  background: #f2f4f7;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.cookie-btn--settings:hover {
  background: var(--brand-accent);
  color: var(--art-orange);
  border-color: var(--art-orange);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 17px 9px;
    font-size: 0.98rem;
  }
  .cookie-banner__actions {
    gap: 12px;
  }
}

@keyframes cb-slideup {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  z-index: 66000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(36,87,132,0.12);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: background 0.3s;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 0px 38px 0 rgba(36,87,132,0.20);
  padding: 39px 34px 28px 34px;
  width: 100%;
  max-width: 390px;
  min-width: 240px;
  position: relative;
  margin-bottom: 0;
  animation: cb-fadein 0.45s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 21px;
}
@keyframes cb-fadein {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
}
.cookie-modal--header {
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1.43rem;
  font-weight: bold;
  color: var(--brand-primary);
  margin-bottom: 6px;
}
.cookie-modal--category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 7px;
}
.cookie-modal--category input[type="checkbox"] {
  accent-color: var(--art-green);
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
.cookie-modal--category label {
  font-size: 1rem;
  font-family: 'Roboto',Arial,sans-serif;
}
.cookie-modal--category .cookie-lock {
  color: var(--art-green);
  font-size: 1.25em;
  padding-left: 5px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 23px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--art-red);
  cursor: pointer;
  z-index: 10;
  transition: color 0.13s;
}
.cookie-modal-close:hover { color: var(--art-blue); }
.cookie-modal--actions {
  margin-top: 19px;
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}
.cookie-modal--actions .cookie-btn {
  flex: 1 1 110px;
  min-width: 120px;
}

@media (max-width: 450px) {
  .cookie-modal {
    padding: 20px 4vw 20px 4vw;
  }
  .cookie-modal--header { font-size: 1.1rem; }
}

/* === RESPONSIVE === */
@media (max-width: 830px) {
  .container {
    max-width: 100vw;
    padding: 0 11px;
  }
  .footer-contact {
    max-width: 99vw;
  }
}
@media (max-width: 1100px) {
  .content-grid,
  .card-container {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
  }
}
@media (max-width: 700px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
}

/* === ANIMATIONS & MICROINTERACTIONS === */
.cta-btn, .desktop-nav a, .mobile-nav a, .cookie-btn {
  transition: background 0.16s, color 0.13s, box-shadow 0.15s, transform 0.14s;
}
.card, .feature-grid > div, .service-cards > div, .team-profiles > div,
.testimonial-card, .faq-accordion > div, .step-list > div {
  transition: box-shadow 0.16s, transform 0.13s, border 0.12s, border-color 0.11s;
}

.card:focus-visible,
.desktop-nav a:focus-visible,
.cta-btn:focus-visible,
.mobile-nav a:focus-visible,
.cookie-btn:focus-visible {
  outline: 2.5px solid var(--art-orange);
  outline-offset: 2px;
}

/* Remove unwanted focus styles */
*:focus:not(:focus-visible) {
  outline: none;
}

/* === SCROLLBAR ARTISTY === */
::-webkit-scrollbar {
  height: 13px;
  width: 10px;
  background: #F2F4F7;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, var(--art-green) 0%, var(--art-blue) 100%);
  border-radius: 9px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--art-orange);
}

/* === MISCELLANEOUS === */
blockquote {
  border-left: 6px solid var(--art-blue);
  padding-left: 23px;
  color: var(--art-blue);
  margin: 18px 0 18px 0;
}

.table,
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 23px;
}
table th, table td {
  border: 1.5px solid var(--art-green);
  padding: 12px 9px;
  font-size: 1rem;
  text-align: left;
}
table th {
  background: var(--art-lila);
}
table tr:nth-child(even) td {
  background: #F2F4F7;
}

hr {
  border: none;
  border-bottom: 2.6px dashed var(--art-lila);
  width: 80px;
  margin: 37px auto;
}

/* === FORMS (should your HTML add them) === */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 2px solid var(--art-blue);
  border-radius: 10px;
  padding: 11px 11px;
  margin-bottom: 13px;
  width: 100%;
  transition: border-color 0.19s, box-shadow 0.14s;
  background: #f7fdfc;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--art-orange);
  box-shadow: 0 2px 8px 0 var(--art-lila);
  outline: none;
}

label {
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--art-green);
  margin-bottom: 7px;
}

/* === PRINT FRIENDLY === */
@media print {
  nav, header, footer, .cta-btn, .mobile-menu, .cookie-banner {
    display: none !important;
  }
  body, html {
    background: #fff !important;
    color: #000 !important;
  }
}

/* === Z-INDEX LAYERING === */
header,
.mobile-menu,
.cookie-banner,
.cookie-modal-overlay,
footer {
  z-index: 910;
}

/* === PREVENT OVERLAPPING === */
.card,
.feature-grid > div,
.service-cards > div,
.testimonial-card,
.footer-contact,
.team-profiles > div {
  margin-bottom: 20px;
}

/* === END OF STYLE.CSS === */
