/* ==== CSS RESET & NORMALIZE ==== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F6F6F6;
  color: #19364C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  scroll-behavior: smooth;
}
img { max-width: 100%; display: block; height: auto; border: 0; }
a { color: #19364C; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
strong { font-weight: 700; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  color: #19364C;
  font-weight: 700;
  letter-spacing: 0.025em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

/* ==== BRAND, VIBRANT ENERGETIC STYLES ==== */
:root {
  --primary: #19364C;
  --secondary: #F6F6F6;
  --accent: #F9B233;
  --electric-blue: #1fc0ff;
  --electric-pink: #FF2079;
  --electric-green: #45ec82;
  --vibrant-shadow: 0 8px 32px rgba(249,178,51,0.12), 0 2px 8px rgba(25,54,76,0.07);
}

/* ==== LAYOUT CONTAINERS, STRUCTURE ==== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
}
.section,
.features, 
.services,
.services-detail, 
.about, 
.pricing,
.privacy-policy,
.gdpr,
.terms-of-use,
.cookie-policy,
.contact,
.cta,
.thank-you,
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--vibrant-shadow);
}

@media (max-width: 768px) {
  .section,
  .features,
  .services,
  .testimonials, 
  .services-detail,
  .about,
  .pricing,
  .privacy-policy,
  .gdpr,
  .terms-of-use,
  .cookie-policy, 
  .contact,
  .cta,
  .thank-you {
    padding: 24px 8px;
    border-radius: 12px;
    margin-bottom: 32px;
  }
}

/* ==== MAIN NAV ==== */
header {
  background: #fff;
  box-shadow: 0 4px 24px rgba(25,54,76,0.07);
  position: sticky;
  top: 0;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 20px;
}
.main-nav img { height: 48px; width: auto; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav li { display: flex; }
.main-nav a {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  padding: 8px 0;
  color: var(--primary);
  transition: color 0.22s cubic-bezier(.38,1.07,.59,.81);
  position: relative;
}
.main-nav ul li a::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(.38,1.07,.59,.81);
  margin-top: 2px;
}
.main-nav ul li a:hover::after,
.main-nav ul li a:focus::after {
  width: 80%;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: var(--accent);
}
.cta-button {
  background: linear-gradient(90deg, var(--accent), var(--electric-pink) 85%, var(--electric-blue));
  color: #fff;
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: bold;
  padding: 12px 32px;
  margin-left: 18px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 3px 16px rgba(249, 178, 51, 0.18);
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.2s, transform 0.18s;
  display: inline-block;
  text-shadow: 0 1px 2px rgba(25,54,76, 0.08);
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--electric-blue), var(--electric-pink) 80%, var(--accent));
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 28px rgba(249,178,51,.22), 0 2px 8px rgba(25,54,76,0.11);
}

/* --- Hide main nav, show menu toggle on mobile --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  cursor: pointer;
  margin-left: 10px;
  z-index: 51;
  padding: 4px 12px;
  border-radius: 10px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--secondary);
}
@media (max-width: 980px) {
  .main-nav ul {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
}

/* ==== MOBILE MENU OVERLAY ==== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  z-index: 89;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,54,76,0.96);
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.44s cubic-bezier(.87,-0.18,.19,1.21), opacity 0.32s;
  box-shadow: 0 4px 32px rgba(25,54,76,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  z-index: 99;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--accent);
  color: #19364C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 48px 0 0 38px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.45rem;
  color: #fff;
  padding: 10px 0;
  border-radius: 12px;
  transition: color 0.16s, background 0.2s;
  font-weight: 600;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--accent);
  background: rgba(249,178,51,0.14);
}
@media (min-width: 981px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ==== HERO + GENERAL SECTIONS ==== */
.hero {
  background: linear-gradient(90deg, #19364C 75%, #F9B233 100%);
  color: #fff;
  text-shadow: 0 2px 16px rgba(25,54,76,0.21);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 12px 40px rgba(25,54,76,0.10);
  margin-bottom: 60px;
  padding: 64px 0 76px 0;
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 36px 0;
    border-radius: 0 0 18px 18px;
    margin-bottom: 32px;
  }
}
.hero .container { width: 100%; }
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 620px;
}
.hero h1 {
  font-size: 2.8rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 14px;
}
.hero p {
  color: #D3E7F7;
  font-size: 1.14rem;
  font-weight: 400;
  margin-bottom: 24px;
}
.hero .cta-button {
  background: linear-gradient(90deg, #fff 60%, var(--accent));
  color: var(--primary);
  box-shadow: 0 4px 18px rgba(249,178,51,0.18), 0 1px 8px rgba(25,54,76, 0.13);
  margin-left: 0;
  margin-top: 16px;
}
.hero .cta-button:hover, .hero .cta-button:focus {
  background: linear-gradient(90deg, var(--accent), #fff 80%);
  color: var(--primary);
}

/* ==== FLEXBOXY SECTION LAYOUTS ====*/
.feature-grid, .service-list, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item, .service-card, .testimonial-card  {
  background: #F6F6F6;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(25,54,76,0.06), 0 1.5px 8px rgba(249,178,51,0.10);
  padding: 24px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 230px;
  flex: 1 1 270px;
  transition: transform 0.19s, box-shadow 0.2s;
  margin-bottom: 20px;
}
.feature-item:hover, .service-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 8px 32px rgba(249,178,51,0.16), 0 2px 8px rgba(25,54,76,0.13);
  background: #fffbe6;
}
.feature-item img {
  height: 46px; width: 46px;
  margin-bottom: 10px;
}
.feature-item h3, .service-card h3, .service-card h2 {
  font-size: 1.15rem;
  font-family: 'Oswald', Arial, sans-serif;
  color: #19364C;
  margin-bottom: 8px;
}
.feature-item p, .service-card p {
  color: #244464;
  font-size: 1rem;
}
.service-price {
  font-size: 1.21rem;
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--accent);
  font-weight: 700;
  margin-top: 4px;
}
.service-card .cta-button {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .feature-grid, .service-list, .testimonial-list {
    gap: 16px;
  }
  .feature-item, .service-card, .testimonial-card {
    min-width: 160px;
    flex: 1 1 100%;
    padding: 18px 12px;
  }
}
@media (max-width: 600px) {
  .feature-grid, .service-list, .testimonial-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-item, .service-card, .testimonial-card {
    width: 100%;
    min-width: 0;
  }
}

/* ==== TESTIMONIALS ==== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 26px 22px 26px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 8px rgba(25,54,76,0.064), 0 4px 18px rgba(249,178,51,0.09);
  min-width: 270px;
  flex: 1 1 260px;
  border-left: 6px solid var(--accent);
  transition: box-shadow 0.16s, transform 0.1s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(249,178,51,0.13), 0 2px 8px rgba(25,54,76,0.08);
  transform: scale(1.017);
}
.testimonial-card p {
  color: #162c3b;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.55;
}
.testimonial-name {
  color: #999;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  font-style: italic;
  padding-left: 10px;
}
@media (max-width: 650px) {
  .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 0; flex: 1 1 100%;
    padding: 16px 12px 16px 14px;
  }
}

/* ==== PRICING TABLE ==== */
.pricing-table {
  width: 100%;
  border-radius: 12px;
  border-collapse: separate;
  border-spacing: 0;
  margin: 15px 0 38px 0;
  font-size: 1rem;
  background: #fff;
  box-shadow: 0 2.5px 8px rgba(25,54,76,0.08), 0 1.5px 8px rgba(249,178,51,0.05);
}
.pricing-table th, .pricing-table td {
  padding: 18px 16px;
}
.pricing-table th {
  background: var(--primary);
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.09rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.pricing-table tbody tr:nth-child(even) { background: #F6F6F6; }
.pricing-table tbody tr {
  transition: background 0.18s;
}
.pricing-table tbody tr:hover {
  background: #fffbe6;
}
.price-notes {
  font-size: 0.97rem;
  color: #3771a6;
  margin-top: 16px;
}

/* ==== FEATURES - UL LIST ==== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 16px;
}
.feature-list li {
  position: relative;
  font-size: 1rem;
  padding-left: 18px;
}
.feature-list li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff, 0 0 8px 1px var(--electric-blue);
}

/* ==== CTA SECTION ==== */
.cta {
  background: linear-gradient(90deg, var(--electric-blue) 0%, var(--accent) 100%);
  color: #19364C;
  text-align: left;
  border-radius: 22px;
  margin-bottom: 32px;
  box-shadow: 0 10px 28px rgba(25,54,76,0.06);
}
.cta h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 18px;
}
.cta .cta-button {
  margin-top: 8px;
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--accent);
  font-weight: bold;
  box-shadow: 0 4px 18px rgba(249,178,51,0.11);
}
.cta .cta-button:hover, .cta .cta-button:focus {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(25,54,76,0.15);
}
@media (max-width: 600px) {
  .cta {
    border-radius: 13px;
    text-align: left;
    padding: 16px 8px;
  }
}

/* ==== CARDS & CONTENT-GRID ==== */
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(25,54,76,0.10), 0 1.5px 8px rgba(249,178,51,0.06);
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
}

/* ==== TEXT-IMAGE SECTION === */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* ==== ABOUT/PRIVACY/TEXT-SECTION ==== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section h2, .text-section h3 {
  margin-bottom: 10px;
}
.text-section ul {
  padding-left: 24px;
  margin-bottom: 10px;
}
.text-section li {
  padding-bottom: 7px;
  list-style: disc;
  color: #244464;
}
.text-section a {
  color: var(--electric-blue);
  text-decoration: underline;
}

/* ==== FOOTER ==== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 34px 0 18px 0;
  margin-top: 38px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.footer-wrapper > a img {
  height: 56px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  color: #F9B233;
  font-size: 1.04rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  transition: color 0.19s;
  letter-spacing: 0.02em;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
}
.footer-contact {
  color: #d9e3ef;
  font-size: 0.98rem;
  max-width: 280px;
  line-height: 1.48;
}
@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .footer-contact { max-width: 100%; }
}

/* ==== CONTACT PAGE ==== */
.contact-info-block {
  margin: 10px 0 0 0;
  padding: 14px 18px;
  background: #F6F6F6;
  border-radius: 10px;
  color: #244464;
  font-size: 1.02rem;
  box-shadow: 0 1.5px 8px rgba(25,54,76,0.03);
}
.contact-info-block strong {
  color: var(--primary);
}
.map-embed {
  background: #e7f3fa;
  border-radius: 8px;
  padding: 9px 15px;
  font-size: 0.98rem;
  margin-top: 18px;
  color: #12324d;
}

/* ==== THANK-YOU PAGE ==== */
.thank-you .cta-button {
  margin-top: 26px;
}

/* ==== BUTTONS & INTERACTIONS ==== */
button, .cta-button {
  outline: none;
  border: none;
  cursor: pointer;
}
button:focus, .cta-button:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

input[type="text"], input[type="email"], textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid #d1deea;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 18px;
  width: 100%;
  transition: border 0.2s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid var(--accent);
}

/* ==== SPACING UTILITIES & CARD SPACING ==== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe6;
  box-shadow: 0 -4px 20px rgba(25,54,76,0.10);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px 24px 16px;
  gap: 18px;
  font-size: 1.07rem;
  color: #19364C;
  border-top: 4px solid var(--accent);
  transition: transform 0.35s cubic-bezier(.8,.45,.4,1), opacity 0.38s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(80px);
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  padding: 10px 26px;
  border-radius: 24px;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  border: none;
  transition: background 0.18s, color 0.15s, box-shadow 0.2s;
  font-size: 1rem;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(25,54,76,0.16);
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
  margin-right: 0;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: var(--accent);
  color: #fff;
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,54,76,0.36);
  z-index: 1101;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.27s;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 430px;
  width: calc(100vw - 40px);
  padding: 32px 24px 24px 24px;
  box-shadow: 0 8px 40px rgba(25,54,76,0.26);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1102;
  animation: modalFadeIn .32s cubic-bezier(.7,.3,.25,1);
}
@keyframes modalFadeIn {
  from { transform: scale(0.93) translateY(80px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 9px;
}
.cookie-category label {
  font-size: 1rem;
  color: #244464;
  font-weight: 500;
}
.cookie-toggle {
  width: 45px; height: 24px;
  border-radius: 18px;
  background: #eee;
  position: relative;
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
  margin-right: 10px;
  transition: background 0.18s;
}
.cookie-toggle input { display: none; }
.cookie-toggle .slider {
  position: absolute;
  top: 2px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ccc;
  border-radius: 50%;
  transition: left 0.18s, background 0.18s;
}
.cookie-toggle.active { background: var(--electric-green); }
.cookie-toggle.active .slider { background: var(--accent); left: 22px; }
.cookie-modal .cookie-modal-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .cookie-btn {
  padding: 9px 22px;
  font-size: 1rem;
  border-radius: 18px;
  border: none;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 23px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--primary);
  cursor: pointer;
  padding: 2px 9px;
  border-radius: 18px;
  transition: background 0.14s, color 0.13s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: #fffbe6;
  color: var(--accent);
}

@media (max-width: 550px) {
  .cookie-modal {
    max-width: 97vw;
    padding: 18px 7px 16px 12px;
    border-radius: 10px;
  }
}

/* ==== ANIMATION EXTRAS & EFFECTS ==== */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.9s 0.1s forwards cubic-bezier(.7,.3,.25,1);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ==== SCROLLBAR FOR BRAND ==== */
::-webkit-scrollbar {
  width: 10px;
  background: #F6F6F6;
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 6px;
}

/* ==== COLOR ACCESSIBILITY FIXES ==== */
.testimonial-card, .testimonial-card p {
  background: #fff;
  color: #19364C;
}

/**** END CSS: Vibrant Energetic, Flexbox Only, Fully Responsive ****/
