/* Cherry Chime Automation – GEOMETRIC_STRUCTURED CSS v1.0 */

/* Normalize & Reset */
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 {
  scroll-behavior: smooth;
  background: #fff;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
ul,ol {
  margin-left: 1.5em;
}
strong,b {
  font-weight: 700;
}
a {
  color: #283593;
  text-decoration: none;
  transition: color .2s;
}
a:hover,a:focus {
  color: #F44336;
}

/* Font Families */
h1,h2,h3,h4,h5,h6, .cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: .01em;
}

/* Typography & Headings */
h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #283593;
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #283593;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #283593;
  margin-bottom: 10px;
}
h4,h5,h6 {
  color: #283593;
  font-family: 'Montserrat', Arial, sans-serif;
}
.subheadline {
  font-size: 1.25rem;
  color: #4B4B5B;
  margin-bottom: 20px;
}
p {
  margin-bottom: 14px;
}

/* Section Spacing */
.section, section, .accent-bg {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.accent-bg {
  background: #F5F6FA !important;
}

/* CONTAINERS & FLEXBOX LAYOUTS */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.feature-item {
  background: #fff;
  border-radius: 20px 4px 20px 4px;
  border: 2px solid #E7E8F3;
  box-shadow: 0 4px 16px 0 rgba(40,53,147,0.07);
  padding: 30px 24px 24px 24px;
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .2s, border-color .2s, transform .15s;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.feature-item:hover {
  border-color: #283593;
  box-shadow: 0 8px 28px 0 rgba(40,53,147,0.17);
  transform: translateY(-3px) scale(1.02);
}

/* Cards & Card Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px 4px 16px 4px;
  border: 1.5px solid #E7E8F3;
  box-shadow: 0 4px 12px 0 rgba(40,53,147,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s, border-color .2s;
}
.card:hover {
  border-color: #283593;
  box-shadow: 0 7px 28px rgba(40,53,147,0.10);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* Custom Grids/Flex Containers */
.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;
  margin-bottom: 40px;
}

/* Team & Sectors Cards */
.team-bios, .sector-list, .blog-teaser-grid, .service-cards, .case-study-teasers, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.team-member, .sector-card, .blog-teaser, .service-card, .teaser {
  background: #fff;
  border-radius: 20px 4px 20px 4px;
  border: 2px solid #E7E8F3;
  box-shadow: 0 2px 14px rgba(40,53,147,0.07);
  flex: 1 1 220px;
  min-width: 210px;
  padding: 28px 20px;
  margin-bottom: 20px;
  transition: border-color .2s, box-shadow .2s, transform .13s;
}
.team-member:hover, .sector-card:hover, .blog-teaser:hover, .service-card:hover, .teaser:hover {
  border-color: #283593;
  box-shadow: 0 5px 22px rgba(40,53,147,0.13);
  transform: translateY(-2px) scale(1.015);
}

/* CTA Button Styles */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.7em 2.1em;
  margin-top: 8px;
  margin-bottom: 8px;
  border-radius: 32px 6px 32px 6px;
  outline: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background .2s, color .2s, box-shadow .17s, transform .11s;
  box-shadow: 0 2px 8px 0 rgba(40,53,147,0.12);
  text-decoration:none;
}
.cta-btn.primary {
  background: #283593;
  color: #fff;
  border: 2px solid #283593;
}
.cta-btn.primary:hover,
.cta-btn.primary:focus {
  background: #fff;
  color: #283593;
  box-shadow: 0 4px 16px rgba(40,53,147,0.20);
}
.cta-btn.secondary {
  background: #fff;
  color: #283593;
  border: 2px solid #283593;
}
.cta-btn.secondary:hover,
.cta-btn.secondary:focus {
  background: #283593;
  color: #fff;
  box-shadow: 0 4px 16px rgba(40,53,147,0.20);
}

/* Navigation Bar */
header {
  background: #fff;
  border-bottom: 2px solid #E7E8F3;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
}
.brand-logo img {
  height: 42px;
  width: auto;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: .04em;
  padding: 8px 4px;
  font-weight: 600;
  color: #283593;
  border-bottom: 2.5px solid transparent;
  transition: color .2s, border .17s;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  color: #F44336;
  border-bottom: 2.5px solid #F44336;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #283593;
  cursor: pointer;
  margin-left: 14px;
  padding: 8px 10px;
  border-radius: 7px;
  transition: background .15s, color .14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F5F6FA;
  color: #F44336;
}

/* MOBILE NAV */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2500;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.45,.25,.40,1.16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
  box-shadow: -2px 0 22px 0 rgba(40,53,147,0.05);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 25px;
  margin-left: 18px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #283593;
  cursor: pointer;
  border-radius: 7px;
  padding: 8px;
  transition: background .14s, color .13s;
}
.mobile-menu-close:hover {
  background: #F5F6FA;
  color: #F44336;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
  width: 100%;
  padding-left: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #283593;
  font-weight: 700;
  padding: 10px 0;
  border-left: 5px solid transparent;
  background: none;
  transition: background .21s, color .13s, border .20s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F44336;
  border-left: 5px solid #F44336;
  background: #F5F6FA;
}

/* Responsive NAV */
@media (max-width: 1050px) {
  .main-nav {
    gap: 12px;
  }
  .cta-btn {
    padding: 0.7em 1.25em;
  }
}
@media (max-width: 819px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  header .container {
    flex-wrap: wrap;
  }
}


/* HERO & HEADERS */
.hero {
  display: flex;
  align-items: center;
  min-height: 350px;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  margin-bottom: 10px;
}
.hero .cta-btn {
  margin-top: 18px;
}

/* Feature/Process – Icon Bullets/Infographics */
.infographic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
  list-style: disc inside;
  color: #222;
}
.process-timeline {
  list-style: decimal inside;
  margin-bottom: 10px;
}

/* TESTIMONIALS */
.testimonials, .testimonial-list, .testimonial-snippets, .testimonial-card {
  width: 100%;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.testimonial-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px 4px 18px 4px;
  box-shadow: 0 4px 16px 0 rgba(40,53,147,0.09);
  border: 2px solid #E7E8F3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 250px;
  margin-bottom: 20px;
  max-width: 420px;
  transition: border-color .2s, box-shadow .2s, transform .16s;
}
.testimonial-card:hover {
  border-color: #283593;
  box-shadow: 0 8px 32px rgba(40,53,147,0.16);
  transform: translateY(-3px) scale(1.01);
}
.testimonial-card blockquote {
  color: #222;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.5;
  font-family: 'Roboto', Arial;
}
.testimonial-card p {
  color: #283593;
  font-size: 0.98rem;
  margin: 0;
}
.testimonial-card .company {
  color: #4B4B5B;
  font-size: 0.93rem;
  margin-left: 7px;
}

/* Blog & List Items */
.blog-teaser-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.blog-teaser:not(:last-child) {
  margin-right: 0;
}
.blog-teaser {
  flex: 1 1 260px;
  min-width: 240px;
  background: #fff;
  border-radius: 20px 4px 20px 4px;
  border: 2px solid #E7E8F3;
  box-shadow: 0 2px 10px rgba(40,53,147,0.07);
  padding: 28px 20px;
  margin-bottom: 20px;
  transition: box-shadow .17s, border-color .18s, transform .12s;
}
.blog-teaser:hover {
  border-color: #283593;
  box-shadow: 0 6px 30px rgba(40,53,147,0.16);
  transform: translateY(-2px) scale(1.014);
}
.blog-link {
  margin-top: 10px;
  display: inline-block;
  color: #F44336;
  font-weight: 600;
  text-decoration: underline;
  transition: color .15s;
}
.blog-link:hover {
  color: #283593;
}

/* Table (for comparison table) */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px 4px 16px 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px 0 rgba(40,53,147,0.08);
}
.comparison-table th, .comparison-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid #E7E8F3;
}
.comparison-table thead tr {
  background: #283593;
}
.comparison-table th {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 3px solid #F5F6FA;
  background: #283593;
}
.comparison-table td {
  color: #222;
  background: #fff;
}
.comparison-table tbody tr:nth-child(even) td {
  background: #F5F6FA;
}

/* CTA Section */
.cta {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta .content-wrapper {
  align-items: center;
}

/* About/Contact/Legal */
.address-block, .contact-info {
  margin-bottom: 20px;
}
.next-step-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

/* Statistics & Key-Metrics */
.key-metrics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 14px;
  margin-left: 0;
}
.key-metrics li {
  background: #fff;
  flex: 1 1 220px;
  border-radius: 20px 4px 20px 4px;
  border: 2px solid #E7E8F3;
  padding: 26px;
  font-size: 1.12rem;
  font-family: 'Roboto', Arial;
  color: #283593;
  box-shadow: 0 2px 10px rgba(40,53,147,0.06);
}

/* Legal / Cookie Policy / GDPR Texts */
.legal, .confirmation {
  background: #F5F6FA;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 16px 4px 16px 4px;
}
.legal h1, .legal h2 {
  margin-bottom: 10px;
}
.legal p, .legal ul {
  margin-bottom: 16px;
}
.legal ul {
  margin-left: 1.1em;
}
.confirmation ul {
  margin-bottom: 20px;
  margin-left: 1.1em;
}

/* Footer */
footer {
  background: #283593;
  color: #fff;
  padding: 0 0 16px 0;
  margin-top: 32px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 16px 0 16px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 42px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #C6CBF8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 4px 0;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F44336;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 290px;
  align-items: flex-start;
}
.footer-brand img {
  width: 120px;
  height: auto;
  margin-bottom: 8px;
}
.footer-brand address,
.footer-brand p {
  color: #C6CBF8;
  font-style: normal;
  font-size: 0.98rem;
  line-height: 1.38;
}
.footer-brand a {
  color: #fff;
  text-decoration: underline;
  transition: color .16s;
}
.footer-brand a:hover {
  color: #F44336;
}
.legal {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  color: #C6CBF8;
  font-size: .96rem;
  background: none;
  padding: 0;
}

/* Small text */
.small {
  font-size: 0.93rem;
  color: #4B4B5B;
}

/* Cookie Consent Banner & Modal */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: #222;
  color: #fff;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 1rem;
  box-shadow: 0 -2px 12px rgba(40,53,147,0.10);
  animation: fadeInBanner .55s;
}
@keyframes fadeInBanner {
  from { opacity:0; transform: translateY(100%); }
  to { opacity:1; transform: translateY(0); }
}
.cookie-consent-banner p {
  margin: 0;
  flex: 2 1 240px;
}
.cookie-btns {
  display: flex;
  gap: 14px;
  flex: 1 1 150px;
}
.cookie-btns button {
  padding: 0.64em 1.7em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 26px 5px 26px 5px;
  cursor: pointer;
  transition: background .17s, color .15s, box-shadow .13s;
}
.accept-cookies {
  background: #283593;
  color: #fff;
}
.accept-cookies:hover, .accept-cookies:focus {
  background: #fff;
  color: #283593;
}
.reject-cookies {
  background: #fff;
  color: #283593;
  border: 1.5px solid #283593;
}
.reject-cookies:hover, .reject-cookies:focus {
  background: #F44336;
  color: #fff;
  border-color: #F44336;
}
.cookie-settings {
  background: #F44336;
  color: #fff;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #fff;
  color: #F44336;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3500;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,53,147,0.33);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal .36s;
}
@keyframes fadeInCookieModal {
  from { opacity:0; } to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: 24px 8px 20px 8px;
  max-width: 430px;
  width: 95vw;
  box-shadow: 0 8px 46px 0 rgba(40,53,147,0.23);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideInCookieModal .36s;
}
@keyframes slideInCookieModal {
  from { transform: translateY(32px);
          opacity:0; }
  to {   transform: translateY(0);
          opacity:1; }
}
.cookie-modal h3 {
  color: #283593;
  font-size: 1.22rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 8px;
  gap: 7px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  color: #283593;
}
.cookie-switch {
  margin-right: 10px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #F44336;
  cursor: pointer;
  padding: 4px;
}

/* Forms (future-proof basic) */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px 2px 8px 2px;
  border: 1.7px solid #E7E8F3;
  padding: 12px 10px;
  margin-bottom: 16px;
  box-sizing: border-box;
  background: #F5F6FA;
  transition: border-color .18s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus {
  border-color: #283593;
  outline: none;
  background: #fff;
}
label {
  font-size: 1rem;
  color: #283593;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
}

/* USPs, Lists, Bullets, etc */
.usp-bullets, .reference-list, .sector-use-cases ul, .about-summary ul, .contact-info ul, .confirmation ul {
  margin-left: 1.3em;
  margin-bottom: 18px;
}
.usp-bullets li, .reference-list li, .sector-use-cases ul li, .about-summary ul li, .contact-info ul li, .confirmation ul li {
  margin-bottom: 7px;
  color: #222;
}

/* SVG & Icon Style tweaks */
.sector-icons, .infographics {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.sector-icons img, .infographics img {
  width: 36px;
  height: 36px;
  filter: grayscale(45%);
  opacity: .78;
}

/* Responsive Rules */
@media (max-width: 1020px) {
  .feature-grid, .team-bios, .sector-list, .blog-teaser-grid, .service-cards, .key-metrics ul {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper, .container, .footer-brand {
    max-width: 100% !important;
  }
}
@media (max-width: 768px) {
  .section, section, .accent-bg {
    margin-bottom: 34px;
    padding: 22px 6px;
  }
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .feature-item, .team-member, .sector-card, .blog-teaser, .service-card, .teaser, .testimonial-card, .card {
    padding: 18px 12px !important;
    min-width: 0 !important;
  }
  .feature-grid, .service-cards, .sector-list, .team-bios, .blog-teaser-grid, .testimonial-list, .testimonial-snippets, .key-metrics ul {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
  .footer-brand {
    max-width: 100% !important;
    width: 100%;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 8px 0 8px;
  }
  .legal {
    justify-content: center;
    padding-bottom: 16px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 520px) {
  .hero {
    min-height: 170px;
    padding-top:20px;
  }
  .card, .testimonial-card, .cta-btn, .feature-item, .team-member, .sector-card, .blog-teaser, .service-card, .teaser {
    min-width: 0 !important;
    padding: 13px 5px !important;
    font-size: 0.98rem;
  }
  .cta-btn {
    font-size: .95rem;
    padding: .57em 1.19em;
  }
  .comparison-table th, .comparison-table td {
    padding: 8px 6px;
    font-size: 0.98rem;
  }
  .footer-brand img {
    width: 90px;
  }
}

/* Visual Hierarchy & Geometric Accents */
.brand-promise, .founder-highlight {
  background: #F5F6FA;
  border-left: 8px solid #283593;
  border-radius: 10px 2px 10px 2px;
  padding: 18px 18px 18px 25px;
  font-size: 1.04rem;
  font-weight: 500;
  color: #283593;
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Miscellaneous */
::-webkit-scrollbar {
  width: 9px;
  background: #F5F6FA;
}
::-webkit-scrollbar-thumb {
  background: #28359322;
  border-radius: 8px;
}
::-webkit-input-placeholder { color: #888; opacity: 1; }
::-moz-placeholder { color: #888; opacity: 1; }
:-ms-input-placeholder { color: #888; opacity: 1; }
::placeholder { color: #888; opacity: 1; }

/* OVERLAY EFFECT – Cookie/Modal/Backdrop (for demo, can add an .overlay if needed) */
.overlay {
  position: fixed;
  z-index: 2000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40,53,147,0.1);
}
