/* ---------------------- 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F7FAFC;
  color: #23272F;
}
img {
  max-width: 100%;
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  margin: 0;
  outline: none;
  border: none;
}
button:focus, a:focus {
  outline: 2px solid #13d8ff;
  outline-offset: 2px;
}

/* ---------------------- GENERAL BRAND VARIABLES ---------------------- */
:root {
  --primary: #2B4C6F;
  --primary-dark: #213A54;
  --secondary: #67A38F;
  --secondary-dark: #448974;
  --accent: #F7FAFC;
  --brand-orange: #FFCC29;
  --brand-magenta: #E24AAF;
  --electric-green: #1DD58B;
  --electric-blue: #13D8FF;
  --electric-cyan: #18e6e6;
  --white: #fff;
  --black: #16181D;
  --gray-light: #E5E9EF;
  --gray: #7E8CA0;
  --box-shadow: 0 4px 28px 0 rgba(35, 55, 103, 0.10), 0 1.5px 4px 0 rgba(39, 196, 184,0.10);
  --radius: 20px;
  --radius-sm: 9px;
}

/* ---------------------- TYPOGRAPHY ---------------------- */
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
h1 {
  font-size: 2.75rem;
  font-weight: bold;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: -2px;
  text-shadow: 0 2px 0 #13d8ff33;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-dark);
  letter-spacing: -0.5px;
  text-shadow: 0 2px 0 #13d8ff22;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--electric-blue);
}
h4, h5, h6 {
  font-weight: 600;
  color: var(--primary);
}
p, li, td, dd {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #23272F;
}
strong {
  font-weight: 700;
  color: var(--primary);
}
.text-section h1, .text-section h2, .text-section h3, .text-section h4 {
  margin-bottom: 14px;
}
.text-section p, .text-section ul, .text-section ol {
  margin-bottom: 12px;
}

/* Visual cues for vibrancy and energy */
mark {
  background: var(--electric-blue);
  color: var(--black);
  border-radius: var(--radius-sm);
  padding: 0 6px;
}

/* ---------------------- LAYOUT/CONTAINER & FLEXBOX ---------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--box-shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 1.5px 8px 0 rgba(19, 216, 255, 0.12), 0 1px 3px 0 rgba(107, 84, 238, 0.09);
  margin-bottom: 24px;
  min-width: 260px;
  max-width: 500px;
  border: 2px solid var(--electric-blue);
  transition: transform 0.19s cubic-bezier(0.5,1.2,0.2,1), box-shadow 0.19s;
}
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 8px 36px 0 rgba(32, 211, 238, 0.20), 0 3px 12px 0 rgba(193, 90, 255, 0.12);
  border-color: var(--brand-magenta);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.project-highlights {
  display: flex;
  gap: 32px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.project-highlights span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--brand-magenta);
  font-size: 1.15rem;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1 1 0px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list dl {
  width: 100%;
}
.faq-list dt {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 12px;
}
.faq-list dd {
  font-size: 1rem;
  color: var(--secondary-dark);
  margin-left: 24px;
  margin-top: 2px;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.trust-badges img {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--brand-orange);
  padding: 3px;
}
.trust-badges span {
  font-weight: 700;
  color: var(--brand-orange);
}

.contact-short-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
  color: var(--gray);
}
.contact-short-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 12px 0;
}
.social-links img {
  width: 30px;
  height: 30px;
  filter: brightness(0) saturate(1) hue-rotate(60deg) drop-shadow(0 2px 4px #13d8ff33);
  transition: filter 0.2s;
  cursor: pointer;
}
.social-links img:hover {
  filter: brightness(1.2) saturate(1.4) hue-rotate(160deg) drop-shadow(0 3px 9px #E24AAF77);
}

/* ---------------------- NAVIGATION & HEADER ---------------------- */
header {
  background: var(--primary);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 28;
  box-shadow: 0 2px 16px 0 rgba(43, 76, 111, 0.18);
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 18px 12px 18px;
}
header nav > a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--accent);
  font-size: 1.05rem;
  padding: 7px 15px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
}
header nav > a:hover,
header nav > a.active {
  color: var(--primary);
  background: var(--electric-blue);
  box-shadow: 0 1.5px 12px 0 #13d8ff33;
}
header nav > a.cta {
  background: var(--brand-magenta);
  color: var(--white);
  font-weight: bold;
  font-size: 1.07rem;
  box-shadow: 0 1.5px 9px 0 #e24aaf33;
  padding: 10px 20px;
  letter-spacing: 0.02em;
  margin-left: auto;
  transition: background 0.18s, box-shadow 0.2s;
}
header nav > a.cta:hover {
  background: var(--brand-orange);
  color: var(--black);
  box-shadow: 0 6px 20px 0 #FFCC2940;
}
header nav img {
  height: 38px;
  margin-right: 6px;
}

/* ---------------------- BUTTONS ---------------------- */
.cta, .cta-btn, button, input[type="button"], input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--electric-blue);
  color: var(--primary);
  box-shadow: 0 2.5px 20px 0 #13d8ff26;
  cursor: pointer;
  letter-spacing: 0.017em;
  transition: background 0.15s, color 0.15s, box-shadow 0.23s, transform 0.18s;
  gap: 8px;
  min-width: 170px;
}
.cta:hover, .cta-btn:hover, button:hover, input[type="button"]:hover, input[type="submit"]:hover {
  background: var(--brand-magenta);
  color: var(--white);
  box-shadow: 0 4px 40px 0 #E24AAF50;
  transform: translateY(-2px) scale(1.03);
}
.cta:active {
  background: var(--electric-green);
  color: var(--primary);
}

/* Text link hover for vibrant accent */
a:not(.cta):hover, .mobile-nav a:hover {
  color: var(--brand-magenta);
  text-decoration: underline wavy var(--electric-blue) 1.7px;
}

/* ---------------------- TABLE STYLES (price table) ---------------------- */
table {
  border-radius: var(--radius-sm);
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: var(--white);
  margin-bottom: 18px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  font-size: 1rem;
}
th, td {
  padding: 14px 10px;
  border-bottom: 2px solid var(--gray-light);
}
tr:last-child td {
  border-bottom: none;
}
th {
  background: var(--electric-blue);
  color: var(--primary-dark);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: left;
}
td {
  color: var(--primary);
}

/* ---------------------- LISTS ---------------------- */
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
ul li, ol li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 22px;
  font-size: 1rem;
}
ul li::before {
  content: '';
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-magenta) 0%, var(--electric-blue) 100%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

/* Feature list items (icons) */
.content-wrapper > ul > li, .content-wrapper > ul > li > img {
  align-items: flex-start;
}
.content-wrapper > ul > li > img {
  margin-bottom: 3px;
  width: 32px;
  height: 32px;
  margin-right: 7px;
}
.content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.content-wrapper > ul > li {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--box-shadow);
  border-left: 6px solid var(--electric-blue);
  padding: 18px 14px 14px 20px;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.17s, border-color 0.22s;
  position: relative;
}
.content-wrapper > ul > li:hover {
  box-shadow: 0 7px 35px 0 #13d8ff1A;
  border-color: var(--brand-magenta);
  transform: translateY(-3px) scale(1.03);
}

/* ---------------------- MAIN ---------------------- */
main {
  min-height: 80vh;
  display: block;
  padding-bottom: 50px;
}

/* ---------------------- FOOTER ---------------------- */
footer {
  background: var(--primary-dark);
  color: var(--accent);
  padding: 38px 0 32px 0;
}
footer .container {
  padding: 0 18px;
}
footer .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 4px;
}
footer nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 7px;
}
footer nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.89;
  transition: color 0.14s, opacity 0.17s;
}
footer nav a:hover {
  color: var(--brand-magenta);
  opacity: 1;
  text-decoration: underline;
}
footer img {
  height: 38px;
  margin-bottom: 8px;
}

/* ---------------------- MOBILE NAVIGATION ---------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 14px;
  z-index: 200;
  font-size: 2.2rem;
  background: var(--brand-magenta);
  color: var(--accent);
  border-radius: 10px;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2.5px 14px 0 #e24aaf36;
  border: none;
  transition: background 0.17s, color 0.19s, box-shadow 0.2s;
  cursor: pointer;
}
.mobile-menu-toggle:active {
  background: var(--brand-orange);
  color: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary);
  z-index: 2400;
  transform: translateX(-105%);
  transition: transform 0.34s cubic-bezier(0.7,0,0.2,1);
  box-shadow: 0 0 52px 0 rgba(43,76,111,0.29);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.mobile-menu.active {
  transform: translateX(0);
  transition: transform 0.33s cubic-bezier(.85,.01,.29,.99);
}
.mobile-menu-close {
  position: absolute;
  right: 24px;
  top: 30px;
  background: var(--brand-orange);
  color: var(--primary);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2.0rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2460;
  border: none;
  display: flex;
  box-shadow: 0 3px 16px 0 #ffcc2933;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s;
}
.mobile-menu-close:active {
  background: var(--brand-magenta);
  color: var(--white);
}
.mobile-nav {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  text-shadow: 0 1.5px 3px var(--electric-blue);
  padding: 8px 0;
  letter-spacing: 0.02em;
  border-left: 6px solid transparent;
  transition: border 0.17s, color 0.12s, background 0.18s;
}
.mobile-nav a.active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--brand-orange);
  background: rgba(255,204,41,0.06);
  border-left: 6px solid var(--brand-magenta);
}

@media (max-width: 1080px) {
  .container {
    max-width: 100vw;
    padding-left: 9px;
    padding-right: 9px;
  }
}
@media (max-width: 991px) {
  header nav {
    gap: 7px;
    padding: 8px 10px;
  }
  header nav > a {
    font-size: 0.98rem;
    padding: 7px 10px;
  }
  header nav > a.cta {
    font-size: 1rem;
    padding: 8px 13px;
  }
  .section {
    padding: 29px 10px;
  }
  .content-wrapper > ul > li {
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 820px) {
  header nav {
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    padding: 7px 0px 7px 7px;
  }
  .social-links img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 768px) {
  :root {
    --radius: 16px;
    --radius-sm: 6px;
  }
  .section {
    margin-bottom: 38px;
    padding: 21px 5px;
    border-radius: var(--radius);
  }
  .content-wrapper {
    gap: 16px;
  }
  .testimonials, .project-highlights {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    margin-bottom: 16px;
    max-width: 98vw;
    font-size: 1em;
  }
  .content-wrapper > ul {
    gap: 13px;
    flex-direction: column;
  }
  .content-wrapper > ul > li {
    min-width: 120px;
    padding: 11px 7px 9px 13px;
  }
  .main, main {
    min-height: 72vh;
  }
  .header nav {
    flex-direction: row;
  }
  .content-grid {
    flex-direction: column;
    gap: 11px;
  }
  .project-highlights {
    gap: 11px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 630px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding-left: 3px;
    padding-right: 3px;
  }
}
@media (max-width: 430px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.12rem; } 
  h3 { font-size: 1rem; }
  .section {
    padding: 11px 0px;
  }
  .social-links {
    gap: 5px;
  }
  .testimonial-card {
    font-size: 0.93em;
    padding: 10px;
  }
}

/* ---------------------- COOKIE CONSENT BANNER ---------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2900;
  background: var(--primary-dark);
  color: var(--accent);
  box-shadow: 0 -4px 24px 0 rgba(43,76,111,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 11px 23px 11px;
  transition: transform 0.32s cubic-bezier(.84,0,.16,1);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-message {
  max-width: 650px;
  font-size: 1.02rem;
  margin-right: 12px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner .cookie-accept,
.cookie-banner .cookie-reject,
.cookie-banner .cookie-settings {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 1.07rem;
  box-shadow: 0 2px 12px #13d8ff22;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.19s, box-shadow 0.15s, transform 0.11s;
}
.cookie-banner .cookie-accept {
  background: var(--electric-green);
  color: var(--primary);
}
.cookie-banner .cookie-accept:hover {
  background: var(--brand-orange);
  color: var(--primary-dark);
}
.cookie-banner .cookie-reject {
  background: transparent;
  color: var(--electric-cyan);
  border: 2px solid var(--electric-cyan);
}
.cookie-banner .cookie-reject:hover {
  background: var(--brand-magenta);
  color: var(--white);
  border-color: var(--brand-magenta);
}
.cookie-banner .cookie-settings {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--brand-orange);
}
.cookie-banner .cookie-settings:hover {
  background: var(--brand-orange);
  color: var(--primary-dark);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 17px 6px 17px 6px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-message {
    margin-right: 0px;
    margin-bottom: 7px;
    width: 100%;
  }
}

/* ---------------------- COOKIE PREFERENCES MODAL ---------------------- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3200;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(43,76,111,0.44);
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 7px 40px 0 #2b4c6f29;
  max-width: 450px;
  width: 95vw;
  padding: 36px 28px;
  z-index: 3250;
  animation: fadeInCookieModal 0.29s cubic-bezier(.78,-0.01,.35,1.08);
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 11px;
}
.cookie-modal .cookie-categories {
  margin: 17px 0;
  font-size: 1.02rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0 8px 0;
  font-size: 1.01rem;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: var(--brand-magenta);
  margin-right: 7px;
}
.cookie-modal .cookie-category .category-name {
  font-weight: 600;
  color: var(--primary-dark);
  margin-right: 6px;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  background: var(--electric-green);
  color: var(--primary);
  border-radius: var(--radius-sm);
  border: none;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 7px 20px;
  transition: background 0.13s, color 0.15s;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover {
  background: var(--brand-magenta);
  color: var(--white);
}

/* ---------------------- MISC ACCESSIBILITY & EFFECTS ---------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-magenta);
  border-radius: 10px;
}
::-webkit-input-placeholder { color:#b7b7c7; }
::-moz-placeholder { color:#b7b7c7; }
:-ms-input-placeholder { color:#b7b7c7; }
::placeholder { color:#b7b7c7; }

/* ---------------------- VIBRANT MICRO-INTERACTIONS ---------------------- */
.cta:focus, .cta-btn:focus, button:focus, input[type="button"]:focus, input[type="submit"]:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  box-shadow: 0 0 0 4px var(--electric-blue), 0 2.5px 18px #13d8ff33;
  outline: none;
}
a:focus {
  text-decoration: underline double var(--brand-magenta);
  color: var(--electric-blue);
}

/* Card and testimonial shadow pop */
.card:hover,
.content-wrapper > ul > li:hover,
.project-highlights span:hover {
  box-shadow: 0 8px 28px 0 #e24aaf22, 0 3px 9px 0 #13d8ff19;
}

.card {
  transition: box-shadow 0.19s, transform 0.18s, border-color 0.17s;
}
.card:active {
  transform: scale(0.99);
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 15px 4px 19px 4px;
  }
}
