/* =============================================================
   CSS RESET / NORMALIZE (MOBILE-FIRST)
   ============================================================= */
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%;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F9F9F7;
  color: #092139;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #B6812A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fbcb47;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.2em;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 32px;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}
th {
  background: #B6812A;
  color: #fff;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 18px;
}
td {
  background: #fff;
  color: #092139;
  font-size: 16px;
}
tr:nth-child(even) td {
  background: #f6f3e9;
}
hr {
  border: none;
  border-top: 1px solid #e4e4df;
  margin: 32px 0;
}

/* =============================================================
   COLORS & TYPOGRAPHY (Brand + Vibrant Energetic accents)
   ============================================================= */
:root {
  --brand-primary: #092139;
  --brand-secondary: #B6812A;
  --brand-accent: #F9F9F7;
  --electric-blue: #22D6FF;
  --electric-yellow: #FBF11F;
  --electric-pink: #FF2D8E;
  --electric-red: #FF4936;
  --vibrant-green: #59F67F;
  --gray-dark: #14171c;
  --gray-light: #f6f3e9;
  --shadow-main: 0 4px 16px 0 rgba(9,33,57,0.14);
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: var(--brand-accent);
  color: var(--brand-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.18;
  color: var(--brand-primary);
}
h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(255,45,142,0.10), 0 1.5px 0 #B6812A;
}
h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--brand-secondary);
  text-shadow: 0 2px 10px rgba(34,214,255,0.10);
}
h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.subheadline {
  color: var(--electric-blue);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--brand-primary);
  font-weight: 400;
}

/* =============================================================
   CONTAINERS, SECTIONS, LAYOUTS (Flexbox only)
   ============================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section:last-child, section:last-child {
  margin-bottom: 0;
}

/* FLEX LAYOUT PATTERNS */
.features-grid, .service-list, .testimonial-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 12px;
}
.features-grid, .service-list {
  justify-content: flex-start;
}
.card-container {
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section, .contact-info {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow-main);
  border-radius: 18px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Spacing and section padding for mobile */
@media (max-width: 600px) {
  .section, section {
    padding: 28px 6px;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 6px;
  }
}

/* =====================================================================
   HEADER, NAVIGATION, BRANDING
   ===================================================================== */
header {
  background: linear-gradient(90deg, #22D6FF 0%, #B6812A 60%, #FF2D8E 100%);
  padding: 0;
  box-shadow: 0 1.5px 8px 0 rgba(9,33,57,0.075);
  z-index: 10;
  position: relative;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  gap: 12px;
  padding: 12px 0;
}
header img {
  max-height: 52px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  border-radius: 24px;
  padding: 8px 18px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--electric-pink);
  color: #fff;
  text-decoration: none;
}
.cta-button.primary {
  background: var(--electric-yellow);
  color: #092139;
  font-weight: 800;
  font-family: 'Merriweather', Georgia, serif;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: var(--electric-blue);
  color: #fff;
}

/* Hamburger menu */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid var(--electric-blue);
  color: var(--brand-primary);
  font-size: 2rem;
  border-radius: 7px;
  width: 44px;
  height: 44px;
  margin-left: 12px;
  transition: box-shadow 0.17s;
  box-shadow: 0 2px 9px 0 rgba(34,214,255,0.13);
  z-index: 22;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  box-shadow: 0 3px 12px 0 rgba(255,45,142,0.18);
  background: var(--electric-blue);
  color: #fff;
}

/* Hide hamburger on large screens, hide nav on small */
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MOBILE MENU SLIDE-OVER */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 3px 22px 0 rgba(34,214,255,0.16);
  z-index: 1002;
  transform: translateX(-110vw);
  transition: transform 0.44s cubic-bezier(.6,.02,.2,1.04);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #FF2D8E;
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  border: none;
  z-index: 1010;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #22D6FF;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 90px;
  padding: 0 38px;
  gap: 22px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: 'Merriweather', Georgia, serif;
  color: var(--brand-primary);
  background: none;
  padding: 14px 0;
  border-radius: 4px;
  width: 100%;
  display: block;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FF2D8E;
  background: #F9F9F9;
}

@media (max-width: 560px) {
  .mobile-nav {
    padding: 0 16px;
  }
}


/* =============================================================
   HERO SECTIONS
   ============================================================= */
.hero-section {
  background: linear-gradient(88deg, #22D6FF 0%, #B6812A 55%, #FF2D8E 100%);
  color: #fff;
  padding: 58px 0 36px 0;
  position: relative;
  overflow: hidden;
}
.hero-section .container {
  z-index: 3;
  position: relative;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 1px;
  text-shadow: 0 3px 18px rgba(9,33,57,0.13);
}
.hero-section .subheadline {
  color: var(--electric-yellow);
  font-size: 1.16rem;
  margin: 14px 0 32px 0;
  text-shadow: 0 2px 14px rgba(9,33,57,0.12);
}
.hero-section .cta-button {
  box-shadow: 0 2px 12px 0 rgba(34,214,255,0.24);
}

/* Decorative circles/elements (for vibrancy, only for hero) */
.hero-section:before, .hero-section:after {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  opacity: 0.11;
  z-index: 0;
}
.hero-section:before {
  width: 340px; height: 340px;
  background: #22d6ff;
  top: -80px; right: -130px;
}
.hero-section:after {
  width: 220px; height: 220px;
  background: #ff2d8e;
  top: 60px; left: -90px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 32px 0 22px 0;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}

/* =============================================================
   Features / Services / Cards
   ============================================================= */
.feature-box, .service-box {
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 340px;
  background: #fff;
  border-radius: 19px;
  box-shadow: var(--shadow-main);
  padding: 26px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  border: 2.5px solid var(--electric-blue);
  transition: transform 0.22s, box-shadow 0.16s, border 0.14s;
}
.feature-box img, .service-box img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  filter: drop-shadow(0px 2px 8px #22D6FF44);
}
.feature-box:hover, .service-box:hover {
  transform: translateY(-7px) scale(1.04) rotate(-1deg);
  border: 2.5px solid #ff2d8e;
  box-shadow: 0 8px 32px 0 #B6812A33;
  z-index: 2;
}
.feature-box h3, .service-box h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--brand-secondary);
  font-family: 'Merriweather', Georgia, serif;
}
.feature-box p, .service-box p {
  font-size: 1rem;
  color: var(--brand-primary);
  margin-bottom: 0;
  font-weight: 500;
}

/* For service-list being flex */
.service-list {
  gap: 24px;
  margin-bottom: 30px;
}
.service-box {
  border: 2.5px solid var(--electric-yellow);
}
.service-box:hover {
  border: 2.5px solid #22D6FF;
  box-shadow: 0 8px 32px 0 #22D6FF22;
}

/* Cards: Card container for future use */
.card-container {
  gap: 24px;
}
.card {
  min-width: 260px;
  max-width: 380px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-main);
  margin-bottom: 20px;
  padding: 24px 21px;
  transition: box-shadow 0.15s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 7px 32px 0 #B6812A22;
  transform: scale(1.03) translateY(-4px);
}

/* =============================================================
   CTA SECTIONS
   ============================================================= */
.cta-section {
  background: var(--electric-yellow);
  background: linear-gradient(87deg, #FBF11F 20%, #22D6FF 100%);
  color: #092139;
  border-radius: 18px;
  box-shadow: 0 5px 17px 0 #FF2D8E13;
  margin-bottom: 46px;
  text-align: center;
}
.cta-section h2 {
  color: #FF2D8E;
}
.cta-section p {
  color: #092139;
  font-size: 1.1rem;
}
.cta-section .cta-button {
  background: var(--brand-primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 #ff2d8e29;
}
.cta-section .cta-button:hover, .cta-section .cta-button:focus {
  background: #FF2D8E;
  color: #fff;
}

/* CTA BUTTONS */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Merriweather', Georgia, serif;
  background: var(--electric-blue);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-top: 8px;
  text-decoration: none;
  box-shadow: 0 2px 18px 0 #22D6FF21;
  border: 0;
  transition: background 0.19s, color 0.19s, transform 0.18s;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: #FF2D8E;
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  text-decoration: none;
}
.return-home-link {
  color: var(--brand-primary);
  font-weight: 800;
  background: none;
  border-bottom: 2px solid #FBF11F;
  transition: color 0.19s;
}
.return-home-link:hover, .return-home-link:focus {
  color: #FF2D8E;
  border-bottom-color: #FF2D8E;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonial-section {
  background: var(--gray-light);
  border-radius: 22px;
  padding: 40px 20px;
  box-shadow: 0 3px 16px #22D6FF12;
  margin-bottom: 60px;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  background: #fff;
  border-left: 5px solid var(--electric-blue);
  margin-right: 12px;
  min-width: 240px;
  max-width: 340px;
  color: #092139;
  font-size: 1.08rem;
  line-height: 1.6;
  box-shadow: 0 3px 16px #14171c18;
  border-radius: 15px;
  position: relative;
}
.testimonial-card p {
  color: #292929;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.09rem;
}
.testimonial-author {
  font-style: italic;
  font-weight: 700;
  color: #FF2D8E;
  margin-top: 9px;
  font-size: 1rem;
  align-self: flex-end;
  display: block;
}

/* GOOD CONTRAST on white/lt gray background */
@media (max-width: 600px) {
  .testimonial-card {
    min-width: 180px;
    max-width: 100%;
  }
}

/* =============================================================
   TABLES - PRICING, SERVICE OVERVIEW
   ============================================================= */
.service-pricing-table {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-main);
  margin: 18px 0 32px 0;
}
.service-pricing-table th {
  background: var(--electric-blue);
  color: #092139;
  font-weight: 900;
}
.service-pricing-table td {
  background: #fff;
  color: #092139;
}
.service-pricing-table tr:nth-child(even) td {
  background: #f9f9f7;
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 36px 0 0 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  margin-bottom: 17px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.95;
  font-size: 1rem;
  font-weight: 500;
  padding: 2px 0;
  border-bottom: 1.5px dashed #22D6FF;
  transition: color 0.17s, border-bottom 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FF2D8E;
  border-bottom: 1.5px solid #ff2d8e;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  border-top: 2px dotted #fbf11f;
  padding-top: 16px;
  margin-top: 22px;
}
.logo-contact {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.logo-contact img {
  width: 68px;
  height: auto;
}
.address-block p, .address-block a {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}
.address-block a {
  text-decoration: underline;
  transition: color 0.15s;
}
.address-block a:hover {
  color: #ff2d8e;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 9px;
}
.social-links a {
  display: flex;
  width: 38px;
  height: 38px;
  justify-content: center;
  align-items: center;
  background: #FF2D8E;
  border-radius: 50%;
  box-shadow: 0 2px 8px #22D6FF33;
  transition: background 0.16s, box-shadow .16s;
}
.social-links a:hover, .social-links a:focus {
  background: #22D6FF;
  box-shadow: 0 8px 26px #FF2D8E44;
}
.social-links img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px #fff3);
}

/* Responsive footer/contacts layout */
@media (max-width: 900px) {
  .footer-info {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .logo-contact {
    flex-direction: row;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .container.content-wrapper {
    padding: 0 2px;
  }
}

/* =============================================================
   TEXT/BODY SECTIONS
   ============================================================= */
.text-section {
  margin-top: 12px;
  font-size: 1rem;
  color: #092139;
  line-height: 1.7;
}
.text-section ul {
  margin: 14px 0 18px 30px;
}
.text-section li {
  margin-bottom: 6px;
  font-size: 1rem;
}
.text-section h2, .text-section h3 {
  margin-top: 20px;
  margin-bottom: 12px;
}

.contact-info {
  margin: 0 0 30px 0;
  gap: 36px;
}
.address-block, .map-block {
  min-width: 220px;
  flex: 1 1 227px;
}
.map-block img {
  margin-bottom: 11px;
}
.contact-hint {
  margin: 40px 0 0 0;
  padding: 15px 18px;
  border-left: 5px solid var(--electric-blue);
  background: #f6f3e9;
  border-radius: 6px;
}

.event-calendar {
  margin: 36px 0 22px 0;
  padding: 14px 24px;
  background: #FFFBDE;
  border-left: 4.5px solid #FF2D8E;
  border-radius: 12px;
  font-size: 1rem;
  box-shadow: 0 2px 9px #22D6FF18;
}
.event-calendar h3 {
  color: #FF2D8E;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: bold;
}

/* =============================================================
   RESPONSIVE FLEX LAYOUTS
   ============================================================= */
@media (max-width: 875px) {
  .features-grid, .service-list, .testimonial-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .contact-info {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .text-image-section, .contact-info {
    flex-direction: column;
    gap: 18px;
  }
}


/* =============================================================
   COOKIE CONSENT BANNER & MODAL
   ============================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 2004;
  background: linear-gradient(97deg, #FFFBDE 0%, #22D6FF17 80%, #FF2D8E13 100%);
  color: #092139;
  box-shadow: 0 -2px 22px #14171c29;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 18px 18px 18px;
  gap: 16px;
  animation: slideUpCookie 0.7s cubic-bezier(.78,0,.33,1.17);
}
@keyframes slideUpCookie {
  from { transform: translateY(120px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.02rem;
  line-height: 1.44;
  color: #092139;
  margin-bottom: 6px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 7px;
}
.cookie-actions button {
  padding: 9px 22px;
  border-radius: 38px;
  font-size: 1rem;
  font-weight: 900;
  font-family: 'Merriweather', Georgia, serif;
  transition: background 0.17s, color 0.13s;
  border: none;
  margin: 0;
}
.cookie-accept {
  background: var(--electric-yellow);
  color: #092139;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #22D6FF;
  color: #fff;
}
.cookie-reject {
  background: #FF2D8E;
  color: #fff;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #092139;
  color: #fff;
}
.cookie-settings {
  background: #fff;
  color: #B6812A;
  border: 2px solid #B6812A;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #B6812A;
  color: #fff;
}

/* Cookie Modal/popup */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(9,33,57,0.62);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.26s cubic-bezier(.31,.71,.84,1.16) both;
}
@keyframes fadeInCookieModal {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 44px #09213944;
  padding: 36px 20px 24px 20px;
  min-width: 310px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: scaleInCookieModal 0.31s cubic-bezier(.19,1.44,.48,1.01);
}
@keyframes scaleInCookieModal {
  from { transform: scale(.7); opacity:0; }
  to { transform: scale(1); opacity:1; }
}
.cookie-modal h3 {
  font-size: 1.2rem;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0 7px 0;
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  accent-color: #22D6FF;
  width: 22px; height: 22px;
}
.cookie-category label {
  font-size: 1rem;
  color: #092139;
}
.cookie-category input[disabled] + label {
  color: #B6812A;
  font-weight: 700;
  opacity: 0.81;
}
.cookie-modal-actions {
  display: flex; gap: 18px; justify-content: flex-end;
  padding-top: 17px;
}
.cookie-modal-actions button {
  padding: 8px 17px;
  border-radius: 38px;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  background: #22D6FF;
  color: #092139;
  transition: background 0.17s, color 0.13s;
}
.cookie-modal-actions .cookie-modal-cancel {
  background: #fff; color: #FF2D8E; border: 2px solid #FF2D8E;
}
.cookie-modal-actions .cookie-modal-cancel:hover {
  background: #ff2d8e; color: #fff;
}
.cookie-modal-actions .cookie-modal-save {
  background: #B6812A; color: #fff;
}
.cookie-modal-actions .cookie-modal-save:hover {
  background: #22D6FF; color: #fff;
}
.cookie-modal-close {
  position: absolute; right: 18px; top: 18px;
  font-size: 1.7rem; background: none; border: none;
  color: #FF2D8E; cursor: pointer;
  transition: color .15s;
  z-index: 15;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #22D6FF;
}

@media (max-width: 530px) {
  .cookie-modal {
    min-width: 0;
    width: 97vw;
    padding: 22px 6px 16px 6px;
  }
}

/*
=============================================================
  MICRO-ANIMATIONS & INTERACTIONS
=============================================================*/
.cta-button, .main-nav a, .footer-nav a, .mobile-nav a, .card, .feature-box, .service-box, .cookie-actions button, .cookie-modal-actions button {
  transition: background 0.2s, color 0.18s, box-shadow 0.19s, transform 0.18s, border 0.17s;
}
.cta-button:active, .card:active, .feature-box:active, .service-box:active {
  transform: scale(.98);
}

/*
=============================================================
  UTILITIES / MISC
=============================================================*/
.bold { font-weight: 700; }
.center { text-align: center; }
.hide { display: none !important; }

/*
=============================================================
  HIGH-ENERGY VISUAL EFFECTS (accent borders, glows)
=============================================================*/
.feature-box, .service-box, .card, .testimonial-card {
  box-shadow: 0 2px 18px #22D6FF15;
}

.card, .feature-box, .service-box {
  border-image-slice: 1;
  border-width: 2.5px;
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid #FF2D8E;
  outline-offset: 1px;
  z-index: 10;
}

/*
=============================================================
  FONT IMPORTS (Google Fonts)
=============================================================*/
@import url('https://fonts.googleapis.com/css?family=Merriweather:900,800,700,400|Open+Sans:400,600,700&display=swap');
