/* =============================================================
 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, 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;
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  line-height: 1.4;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F5F7FA;
  color: #184A88;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #184A88;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #42B4E6;
  text-decoration: underline;
}
strong {
  font-weight: 700;
}
hr {
  border: none;
  border-top: 2px solid #42B4E6;
  margin: 32px 0;
}
button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
}

/* =============================================================
 FONT IMPORTS & BASE TYPOGRAPHY
============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  line-height: 1.2;
  color: #184A88;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
}
h4, h5, h6 {
  margin-bottom: 12px;
}
p {
  font-size: 1.15rem;
  margin-bottom: 16px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #273856;
}


/* =============================================================
 CREATIVE ARTISTIC BRAND COLOR PALETTE & UI TOKENS
============================================================= */
:root {
  --brand-primary: #184A88;
  --brand-secondary: #42B4E6;
  --brand-accent: #F5F7FA;
  --brand-deep: #091833;
  --brand-highlight: #E2E950;
  --artistic-pink: #FF5C98;
  --artistic-purple: #9D63F7;
  --card-bg: #FFFFFF;
  --shadow: 0 2px 12px rgba(66, 180, 230, 0.10), 0 6px 32px rgba(24,74,136,0.06);
  --radius: 18px;
  --radius-sm: 10px;
  --spacing-section: 60px;
  --spacing-card: 40px 20px;
  --transition: 0.30s cubic-bezier(.45, .15, .42, 1.24);
}

/* =============================================================
 LAYOUT: CONTAINER & STRUCTURE
============================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
main {
  margin-bottom: 60px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  margin-bottom: 24px;
}

/* =============================================================
 HEADER & NAVIGATION
============================================================= */
header {
  width: 100%;
  background: var(--card-bg);
  box-shadow: 0 1px 22px rgba(57,108,170,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 16px 0;
  position: relative;
  z-index: 100;
}
header > a img {
  height: 44px;
  margin-right: 16px;
  vertical-align: middle;
}
header nav {
  display: flex;
  gap: 26px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  color: #184A88;
  position: relative;
  transition: color 0.18s;
  padding: 7px 0;
}
header nav a:hover, header nav a.active {
  color: var(--artistic-pink);
}
.cta-primary {
  background: linear-gradient(125deg, var(--brand-secondary) 70%, var(--artistic-pink) 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0.039em;
  padding: 11px 32px;
  border-radius: var(--radius-sm);
  margin-left: 10px;
  box-shadow: 0 2px 16px rgba(255,92,152,0.10);
  border: none;
  transition: background 0.20s, transform var(--transition), box-shadow 0.18s;
  font-size: 1.08rem;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(100deg, var(--artistic-pink) 60%, var(--brand-secondary) 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255,92,152,0.16), 0 2px 8px #42B4E6;
}

.mobile-menu-toggle {
  display: none;
  background: var(--artistic-pink);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  margin-left: 20px;
  transition: background var(--transition), box-shadow 0.2s;
  z-index: 201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--artistic-purple);
  box-shadow: 0 0 0 4px #eed9f7b0;
}

/* MOBILE NAV OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 999;
  flex-direction: column;
  /* will be toggled via JS: .is-active */
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.41,.67,.18,1.18);
  box-shadow: -2px 0 16px rgba(66, 180, 230, 0.14);
}
.mobile-menu.is-active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 18px 18px 0 auto;
  color: #fff;
  background: var(--artistic-pink);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--artistic-purple);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 38px 16px 0 32px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.32rem;
  font-weight: 900;
  color: var(--brand-primary);
  letter-spacing: 0.041em;
  background: linear-gradient(92deg, var(--brand-secondary) 30%, var(--artistic-pink) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: color 0.18s;
  padding: 6px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--artistic-pink);
  background: none;
  -webkit-text-fill-color: var(--artistic-pink);
}

@media(max-width: 1120px) {
  .container { max-width: 96vw; }
}

@media (max-width: 950px) {
  header nav { gap: 14px; }
}

@media (max-width: 800px) {
  header nav { display: none; }
  .cta-primary { margin-left: 0; }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 480px) {
  header { padding: 12px 0; }
  .header > a img { height: 33px; }
  .cta-primary { font-size: 1rem; padding: 10px 16px; }
}


/* =============================================================
 SECTION, SPACING & LAYOUT MODULES
============================================================= */
section {
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  min-width: 230px;
  flex: 1 1 280px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(24,74,136,0.09);
  margin-bottom: 20px;
  border-left: 7px solid var(--artistic-pink);
  max-width: 540px;
  min-width: 240px;
}
.testimonial-card .stars {
  color: var(--artistic-pink);
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 4px;
}
.testimonial-card strong {
  color: var(--brand-primary);
  font-size: 1rem;
  margin-top: 7px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/* Feature grid for icons on index */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 18px;
}
.feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 24px 20px 22px 18px;
  gap: 8px;
  max-width: 270px;
  min-width: 180px;
  flex: 1 1 210px;
  border-bottom: 4px solid var(--artistic-purple);
  transition: box-shadow 0.2s, border-bottom 0.2s;
}
.feature-grid > div:hover {
  box-shadow: 0 10px 28px rgba(157,99,247,0.10), 0 2px 14px #42B4E6;
  border-bottom: 4px solid var(--artistic-pink);
}
.feature-grid img {
  height: 44px;
  margin-bottom: 12px;
}

/* Service cards (index hero) */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-cards > div {
  background: #fafcff;
  box-shadow: 0 2px 10px rgba(66,180,230,0.10);
  border-radius: var(--radius-sm);
  padding: 24px 18px 20px 18px;
  min-width: 180px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, border-left 0.18s;
  border-left: 6px solid var(--brand-secondary);
}
.service-cards > div:hover {
  box-shadow: 0 6px 24px #42B4E640, 0 2px 14px var(--artistic-pink);
  border-left: 6px solid var(--artistic-pink);
}

.quick-facts-list {
  font-size: 1.08rem;
  line-height: 1.5;
  color: #273856;
  margin-top: 16px;
  margin-bottom: 12px;
  padding-left: 18px;
}
.quick-facts-list li {
  margin-bottom: 7px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

/* Service list (services.html) */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  box-shadow: 0 2px 12px #42B4E620;
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  font-size: 1.1rem;
  color: #184A88;
}
.service-list img {
  height: 32px;
}

/* Pricing table */
.pricing_table {
  width: 100%;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  font-family: 'Open Sans', Arial, sans-serif;
  border-collapse: separate;
  border-spacing: 0;
}
.pricing_table thead tr {
  background: var(--brand-secondary);
  color: #fff;
  font-size: 1.14rem;
  font-weight: bold;
  letter-spacing: 0.025em;
}
.pricing_table th, .pricing_table td {
  text-align: left;
  padding: 17px 20px;
}
.pricing_table tr:nth-child(even) td {
  background: #F8FBFC;
}

.faq_list {
  margin-top: 14px;
  margin-bottom: 24px;
}
.faq_list strong {
  color: var(--brand-primary);
}
.faq_list p {
  margin-bottom: 10px;
  margin-top: 5px;
}

.comparison_chart {
  background: #f4f3fc;
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  margin-top: 16px;
  box-shadow: 0 0 6px #9D63F71c;
}
.comparison_chart h3 {
  margin-bottom: 12px;
  color: var(--artistic-purple);
  font-size: 1.18rem;
  font-weight: 800;
}

/* Gallery testimonial card (gallery.html) */

/* =============================================================
 HERO & ARTISTIC ELEMENTS
============================================================= */
.hero {
  min-height: 330px;
  background: linear-gradient(119deg, var(--brand-secondary) 74%, var(--artistic-pink) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.hero .content-wrapper {
  color: #fff;
  align-items: flex-start;
  max-width: 540px;
  padding: 32px 0;
}
.hero h1 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 14px #0623478d;
  margin-bottom: 22px;
}
.hero p {
  color: #F5F7FA;
  margin-bottom: 24px;
  font-size: 1.24rem;
}
.hero .cta-primary {
  background: linear-gradient(100deg, #fff 10%, var(--artistic-pink) 99%);
  color: var(--brand-primary);
}
.hero .cta-primary:hover {
  color: #FFF;
  background: linear-gradient(90deg, var(--artistic-pink) 40%, var(--artistic-purple) 100%);
}

/* Artistic accents */
section h2 {
  position: relative;
}
section h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 7px;
  background: linear-gradient(90deg, var(--brand-secondary) 40%, var(--artistic-pink) 100%);
  border-radius: 4px;
  margin-top: 7px;
}

/* =============================================================
 BUTTONS
============================================================= */
.cta-primary, .btn, .btn-primary, .btn-secondary {
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 32px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 1.08rem;
  display: inline-block;
  transition: background 0.2s, box-shadow 0.17s, color 0.2s, transform 0.14s;
  box-shadow: 0 4px 16px #42B4E640, 0 2px 8px #184A88;
  margin-top: 12px;
}
.cta-primary:active {
  transform: scale(0.97);
}
.btn-secondary {
  background: var(--brand-secondary);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--brand-primary);
}
.btn {
  background: var(--artistic-purple);
  color: #fff;
}
.btn:hover, .btn:focus {
  background: var(--artistic-pink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,92,152,0.10), 0 2px 7px #184A88;
}

/* Text links with artistic underline */
a {
  position: relative;
  z-index: 1;
}
a:not(.cta-primary)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -0.1em;
  width: 100%; height: 2.5px;
  background: linear-gradient(90deg, var(--artistic-pink) 30%, var(--brand-secondary) 75%);
  opacity: 0;
  border-radius: 4px;
  transition: opacity 0.18s;
  z-index: -1;
}
a:hover::after, a:focus::after {
  opacity: 1;
}

/* =============================================================
 FORMS
============================================================= */
form input, form textarea, form select {
  padding: 14px 18px;
  font-size: 1.12rem;
  border-radius: var(--radius-sm);
  border: 1.6px solid #c1d2e6;
  margin-bottom: 13px;
  width: 100%;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #f9fbfc;
  transition: border 0.18s;
}
form input:focus, form textarea:focus, form select:focus {
  border-color: var(--brand-secondary);
  outline: none;
}

/* =============================================================
 FOOTER
============================================================= */
footer {
  background: linear-gradient(90deg, var(--brand-primary) 80%, var(--artistic-purple) 100%);
  padding: 38px 0 18px 0;
  color: #fff;
  width: 100%;
  margin-top: 60px;
  border-radius: var(--radius) var(--radius) 0 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 44px;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.90;
}
footer nav a:hover {
  opacity: 1;
  color: var(--artistic-pink);
}
footer .text-section {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #fff;
  font-size: 0.98rem;
  opacity: 0.97;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  footer {
    padding: 24px 0 14px 0;
    border-radius: 0;
  }
}

/* =============================================================
 RESPONSIVE / MOBILE ADJUSTMENTS
============================================================= */
@media (max-width: 990px) {
  .feature-grid, .service-cards, .testimonial-slider, .card-container, .content-grid {
    gap: 18px;
  }
  .card, .service-cards > div, .feature-grid > div {
    min-width: 130px;
    max-width: 99vw;
    padding: 22px 10px;
  }
  .testimonial-card {
    padding: 16px; max-width: 100%;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 202px; padding-bottom: 8px;
  }
  .container {
    padding-left: 7px; padding-right: 7px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .feature-grid, .service-cards, .testimonial-slider, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .service-cards > div, .feature-grid > div {
    min-width: 80vw;
    max-width: 97vw;
  }
  .testimonial-card {
    min-width: 60vw; max-width: 99vw;
    gap: 10px;
    padding: 13px 7px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .section {
    padding: 25px 7px;
    margin-bottom: 34px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.42rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.21rem;
    margin-bottom: 12px;
  }
  .cta-primary, .btn, .btn-secondary {
    font-size: 0.97rem;
    padding: 13px 12px;
  }
  .section {
    padding: 18px 0px;
    margin-bottom: 14px;
  }
  .content-wrapper {
    gap: 8px;
  }
}

/* =============================================================
 COOKIE CONSENT BANNER & MODAL
============================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fffdf7;
  box-shadow: 0 -1px 20px #27385618;
  padding: 20px 19px 22px 19px;
  display: flex;
  flex-direction: column;
  z-index: 1051;
  align-items: flex-start;
  border-top: 4px solid var(--artistic-pink);
  animation: cookieAppear 0.7s cubic-bezier(.39,1.34,.71,1.0);
  gap: 20px;
}
.cookie-banner p {
  color: #273856;
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.44;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 5px;
}
.cookie-banner .btn, .cookie-banner .btn-secondary, .cookie-banner .btn-close {
  border-radius: 12px;
  padding: 9px 26px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.cookie-banner .btn {
  background: var(--artistic-pink);
  color: #fff;
}
.cookie-banner .btn:hover, .cookie-banner .btn:focus {
  background: var(--artistic-purple);
  color: #fff;
}
.cookie-banner .btn-secondary {
  background: #f4f3fc;
  color: var(--brand-primary);
  border: 1.5px solid var(--artistic-pink);
}
.cookie-banner .btn-secondary:hover {
  background: var(--artistic-pink);
  color: #fff;
}

/* Cookie modal overlay */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2055;
  background: rgba(24,74,136,0.23);
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 96vw;
  max-width: 420px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(24,74,136,0.20), 0 2px 19px #9D63F725;
  z-index: 2060;
  padding: 34px 23px 26px 23px;
  transform: translate(-50%, -50%) scale(1);
  animation: cookieModalAppear 0.4s cubic-bezier(.52,1.53,.72,1.01);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal h3 {
  font-size: 1.18rem;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.cookie-switch {
  width: 38px; height: 22px;
  background: #e2e2e2;
  border-radius: 11px;
  position: relative;
  flex-shrink: 0;
  margin-left: 5px;
  cursor: pointer;
  transition: background 0.22s;
}
.cookie-switch input {
  display: none;
}
.cookie-switch .slider {
  position: absolute;
  height: 18px; width: 18px;
  background: var(--artistic-pink);
  border-radius: 50%;
  top: 2px; left: 2px;
  transition: left 0.22s, background 0.2s;
}
.cookie-switch input:checked + .slider {
  left: 18px;
  background: var(--artistic-purple);
}
.cookie-modal .btn {
  margin: 7px 0 0 0;
}
.cookie-modal .btn-close {
  background: #fff;
  color: var(--brand-primary);
  border: 1.3px solid var(--brand-secondary);
  box-shadow: none;
  margin-left: 10px;
}
.cookie-modal .btn-close:hover {
  background: var(--artistic-pink);
  border-color: var(--artistic-pink);
  color: #fff;
}
@keyframes cookieAppear {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes cookieModalAppear {
  from { transform: translate(-50%, -62%) scale(0.91); opacity: 0; }
  to   { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
@media (max-width: 530px){
  .cookie-banner { padding: 12px 4.5vw; font-size: 0.93rem; }
  .cookie-modal { padding: 22px 3vw 18px 3vw; }
}

/* Hide on interaction */
.cookie-banner.closed, .cookie-modal.closed, .cookie-modal-backdrop.closed {
  display: none !important;
}

/* =============================================================
 MISCELLANEOUS STYLES
============================================================= */
::-webkit-scrollbar {
  width: 10px;
  background: #f6f6f6;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-secondary);
  border-radius: 5px;
}

/* Quotes, blockquotes, etc for artistic accent */
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  color: var(--brand-secondary);
  padding: 18px 23px;
  background: #f0fafb;
  border-left: 5px solid var(--artistic-pink);
  margin-bottom: 24px;
  border-radius: 0 14px 14px 0;
}

/* Table, lists, and text lists */
table {
  border-collapse: collapse;
}
th, td {
  border: none;
}

ol, ul {
  padding-left: 20px;
}
ol > li, ul > li {
  margin-bottom: 7px;
}

/* Artistic shapes and decorative flourishes - e.g. separator on index */
.artistic-divider {
  width: 50px;
  height: 8px;
  background: linear-gradient(93deg, var(--artistic-pink) 25%, var(--brand-secondary) 100%);
  border-radius: 5px;
  margin: 18px 0 26px 0;
}

/* Micro-interactions for .card, .feature-card, .service-card etc */
.card, .service-cards > div, .feature-grid > div, .testimonial-card {
  transition: transform 0.12s, box-shadow 0.19s;
}
.card:hover, .service-cards > div:hover, .feature-grid > div:hover, .testimonial-card:hover {
  transform: translateY(-3px) scale(1.017);
  box-shadow: 0 10px 28px #42B4E640, 0 2px 14px #FF5C9844;
}


/* Accessibility: Ensure testimonial text has dark text on light background
   (see .testimonial-card above for background and color)
*/
.testimonial-card, .testimonial-card p, .testimonial-card strong {
  color: #273856;
  background: #fff;
}

/* Tables: pricing table shadow and color fix */
.pricing_table td, .pricing_table th {
  color: #273856;
}
.pricing_table th {
  color: #fff;
}

/* Hide scroll on mobile overlay */
.mobile-menu.is-active {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Focus ring for accessibility */
a:focus, button:focus, .cta-primary:focus, .btn:focus, .btn-secondary:focus {
  outline: 3px solid var(--artistic-pink);
  outline-offset: 2px;
}

/* Loader, overlay, etc (if needed) */


/* END OF FILE */
