/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F9F7F2;
  color: #295374;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #295374;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7AB3CB;
}
ul, ol {
  list-style-position: inside;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #295374;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; }
h2 { font-size: 1.8rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; }
p, li, address {
  color: #37485C;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 14px;
}
strong, b { color: #295374; }
/* Main Containers */
.container {
  max-width: 1080px;
  width: 94%;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 800px) {
  .section {
    margin-bottom: 40px;
    padding: 24px 8px;
  }
}
/* Soft Pastel Colors & Atmosphere */
body {
  background-color: #F9F7F2;
}
.hero, .cta, .thankyou {
  background-color: #EAF3F5;
  border-radius: 32px;
  box-shadow: 0 4px 32px rgba(122,179,203,0.04);
}
/* Accent backgrounds for cards */
.card, .service-card, .service-item, .testimonial-card, .blog-article, .policy, .text-section {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(41,83,116,0.10);
  padding: 24px;
}
/* Header & Navigation */
header {
  background: #ffffffee;
  box-shadow: 0 2px 8px rgba(41,83,116,0.04);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 0;
  position: relative;
}
.main-nav > a img {
  height: 42px;
  width: auto;
}
.main-nav ul {
  display: flex;
  gap: 28px;
  margin: 0 28px;
  padding: 0 12px;
  align-items: center;
}
.main-nav ul li {
  display: flex;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #295374;
  background: none;
  padding: 4px 0;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus,
.main-nav ul li a[aria-current="page"] {
  color: #7AB3CB;
  border-bottom: 2px solid #A3D7C7;
}
.cta-btn {
  background: linear-gradient(90deg, #7AB3CB 12%, #A7D5D8 100%);
  color: #295374;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: 99px;
  padding: 11px 36px;
  box-shadow: 0 4px 18px rgba(122,179,203,0.12);
  cursor: pointer;
  transition: background 0.25s, color 0.07s, transform 0.07s;
  margin-left: 18px;
  outline: none;
  text-align: center;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #94DBE6 0%, #7AB3CB 88%);
  color: #173347;
  box-shadow: 0 2px 20px rgba(122,179,203,0.22);
  transform: translateY(-2px) scale(1.04);
}
/* Hamburger (Mobile menu toggle) */
.mobile-menu-toggle {
  display: none;
  background: #7AB3CB;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 1.6rem;
  cursor: pointer;
  margin-left: 12px;
  z-index: 999;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #295374;
  color: #fff;
}
@media (max-width: 900px) {
  .main-nav ul {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: rgba(250,252,253,0.97);
  box-shadow: 0 2px 40px rgba(41,83,116,0.09);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(110%);
  transition: transform 0.36s cubic-bezier(.42,.19,.59,.72);
  padding-top: 24px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #7AB3CB;
  padding: 14px 24px 14px 16px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 16px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: #295374;
  padding: 10px 0;
  border-radius: 14px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EAF3F5;
  color: #7AB3CB;
  padding-left: 8px;
}
@media (max-width: 480px) {
  .mobile-menu {
    padding-left: 0;
    min-width: 100vw;
  }
  .mobile-nav {
    margin-left: 12px;
  }
}
/* FOOTER */
footer {
  background: #F9F7F2;
  padding: 32px 0 18px;
  border-top: 1px solid #E4ECEF;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
  justify-content: center;
}
.footer-nav a {
  color: #295374;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  padding: 3px 8px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #EAF3F5;
  color: #7AB3CB;
}
.footer-info {
  text-align: center;
  color: #7AB3CB;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
/* HERO SECTION */
.hero {
  margin-bottom: 38px;
  padding: 56px 0 56px 0;
  text-align: center;
  background: #F6FBFD;
  border-radius: 24px;
  box-shadow: 0 6px 26px rgba(122,179,203,0.09);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: 2.5rem;
  color: #295374;
  margin-bottom: 18px;
  line-height: 1.2;
}
.hero p {
  color: #295374;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.13rem;
  margin-bottom: 28px;
  margin-top: 0;
}
@media (max-width: 800px) {
  .hero {
    padding: 36px 0 36px 0;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}
/* FEATURES SECTION + FLEX PATTERNS */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}
.features ul li {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(122,179,203,0.09);
  padding: 16px 28px 16px 16px;
  min-width: 225px;
  max-width: 320px;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #295374;
  gap: 16px;
  position: relative;
  transition: transform 0.12s, box-shadow 0.14s;
}
.features ul li img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.features ul li:hover, .features ul li:focus {
  box-shadow: 0 6px 16px rgba(41,83,116,0.10);
  transform: translateY(-3px) scale(1.035);
}
@media (max-width: 768px) {
  .features ul {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
}
/* SERVICES CARD LIST (Flexbox) */
.service-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 32px 0 32px 0;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(122,179,203,0.08);
  padding: 22px 18px;
  flex: 1 1 220px;
  min-width: 205px;
  max-width: 280px;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.13s, transform 0.13s;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.service-card .service-price {
  margin-top: auto;
  font-weight: bold;
  background: #7AB3CB13;
  color: #295374;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  display: inline-block;
  padding: 7px 20px;
  margin-bottom: 0;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 8px 26px rgba(122,179,203,0.17);
  transform: translateY(-2px) scale(1.02);
}
@media (max-width: 900px) {
  .service-card-list {
    flex-direction: column;
    gap: 20px;
  }
  .service-card {
    max-width: unset;
    min-width: 70%;
    width: 100%;
  }
}
/* SERVICES OVERVIEW FLEX */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0 20px 0;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(122,179,203,0.09);
  padding: 20px 16px;
  min-width: 210px;
  margin-bottom: 22px;
  transition: transform 0.13s, box-shadow 0.13s;
}
.service-item h3 {
  color: #295374;
  font-size: 1.08rem;
}
.service-item:hover, .service-item:focus {
  transform: translateY(-2.5px) scale(1.0175);
  box-shadow: 0 6px 22px rgba(41,83,116,0.11);
}
@media (max-width: 800px) {
  .service-list {
    flex-direction: column;
    gap: 13px;
  }
}
/* Service Pricing Table (Pastel Table) */
.service-pricing-table {
  width: 100%;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(122,179,203,0.08);
  margin: 26px 0 24px 0;
  border-collapse: collapse;
  font-size: 1.04rem;
}
.service-pricing-table caption {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #295374;
  font-size: 1.11rem;
  margin: 18px 0 7px 0;
}
.service-pricing-table th,
.service-pricing-table td {
  padding: 12px 18px;
  border-bottom: 1px solid #EAF3F5;
  color: #295374;
  text-align: left;
}
.service-pricing-table th {
  background: #EAF3F5;
  font-family: 'Montserrat', Arial, sans-serif;
}
.service-pricing-table tr:last-child td {
  border-bottom: none;
}
/* ORGANIZER TYPES & BENEFITS FLEX */
.organizer-type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 22px 0 20px 0;
}
.organizer-type-list .text-section {
  flex: 1 1 270px;
}
@media (max-width: 900px) {
  .organizer-type-list {
    flex-direction: column;
    gap: 13px;
  }
}
.organizer-benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.organizer-benefits ul li {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 1px 7px rgba(122,179,203,0.09);
  padding: 13px 16px;
  margin-bottom: 20px;
  min-width: 160px;
  color: #295374;
}
/* STATS SECTION */
.stats ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.stats ul li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(122,179,203,0.08);
  padding: 22px 26px;
  font-size: 1.11rem;
  color: #295374;
  margin-bottom: 20px;
  text-align: center;
}
.stats ul li strong {
  display: block;
  font-size: 1.48rem;
  color: #7AB3CB;
}
@media (max-width: 900px) {
  .stats ul {
    flex-direction: column;
    gap: 13px;
  }
}
/* TESTIMONIAL CARDS */
.testimonial-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F8FBFB;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(41,83,116,0.065);
  min-width: 260px;
  max-width: 360px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  border-left: 6px solid #7AB3CB;
  transition: transform 0.14s, box-shadow 0.14s;
}
.testimonial-card blockquote {
  font-size: 1.12rem;
  color: #295374;
  font-style: italic;
  margin-bottom: 8px;
  margin-top: 0;
}
.testimonial-card .testimonial-info {
  color: #3A637E;
  font-size: 1.0rem;
  letter-spacing: 0.04em;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 26px rgba(41,83,116,0.12);
  transform: translateY(-2.5px) scale(1.028);
}
@media (max-width: 860px) {
  .testimonial-card-list {
    flex-direction: column;
    gap: 13px;
  }
}
/* BLOG ARTICLES */
.featured-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
  margin-bottom: 24px;
}
.blog-article {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(122,179,203,0.09);
  padding: 22px 18px;
  min-width: 210px;
  max-width: 380px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: transform 0.13s, box-shadow 0.13s;
}
.blog-article h2 {
  font-size: 1.19rem;
}
.blog-tag {
  background: #EAF3F5;
  color: #7AB3CB;
  border-radius: 10px;
  font-size: 0.97rem;
  padding: 3.5px 16px;
  margin-right: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.blog-article:hover, .blog-article:focus {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 22px rgba(122,179,203,0.11);
}
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
  margin-bottom: 24px;
}
.article-list article {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(122,179,203,0.08);
  padding: 18px 15px;
  min-width: 190px;
  max-width: 310px;
  flex: 1 1 180px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .featured-articles, .article-list {
    flex-direction: column;
    gap: 13px;
  }
}
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}
.category-tags span {
  background: #EAF3F5;
  color: #7AB3CB;
  border-radius: 8px;
  padding: 3px 13px;
  font-size: 0.98rem;
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
/* POLICY PAGE TEXTS */
.policy .text-section {
  margin-bottom: 24px;
  background: #F8FBFB;
  border: none;
  box-shadow: none;
  padding: 18px 0 2px 0;  
}
.policy a {
  color: #7AB3CB;
  text-decoration: underline;
}
.policy a:hover, .policy a:focus {
  color: #448ca5;
}
/* CTA FLEX */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin: 56px 0;
  padding: 50px 20px;
  background: #EAF3F5;
  border-radius: 32px;
  box-shadow: 0 4px 32px rgba(122,179,203,0.04);
  text-align: center;
}
.cta .container {
  display: flex;
  justify-content: center;
}
.cta .content-wrapper {
  width: 100%;
}
@media (max-width: 800px) {
  .cta, .cta .container {
    flex-direction: column;
    padding: 28px 6px;
  }
}
/* FORM, ABOUT, CONTACT, ADDITIONAL INFO */
.text-section {
  margin-bottom: 28px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(41,83,116,0.06);
  padding: 20px 18px;
}
.text-section ul {
  padding-left: 0;
  margin: 0 0 12px 0;
}
.text-section ul li {
  padding-left: 0;
  margin-bottom: 9px;
  color: #295374;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.text-section ul li img {
  width: 25px;
  height: 25px;
}
.text-section address {
  font-style: normal;
  color: #295374;
  margin-left: 2px;
}
/* CONTACT FORM ELEMENTS (future safe base) */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8FBFB;
  border: 1px solid #EAF3F5;
  border-radius: 7px;
  padding: 10px 13px;
  font-size: 1.03rem;
  transition: border 0.17s;
  margin-bottom: 18px;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border: 1.2px solid #7AB3CB;
  outline: none;
}
button, [type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 18px;
  background: #7AB3CB;
  color: #295374;
  font-weight: bold;
  padding: 10px 24px;
  font-size: 1.09rem;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(122,179,203,0.12);
  margin-top: 9px;
  transition: background 0.19s, color 0.13s, transform 0.09s;
}
button:hover, button:focus {
  background: #295374;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
/* CRITICAL FLEXBOX PATTERNS (from prompt) */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Responsive media queries for typography and element spacing */
@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.04rem; }
  .container { width: 99%; }
}
/* Animations and transitions */
.cta-btn, .service-card, .service-item, .testimonial-card, .blog-article, .features ul li, .main-nav ul li a, .mobile-nav a, button, input, .footer-nav a, .card {
  transition: background 0.18s, color 0.18s, box-shadow 0.16s, transform 0.12s;
}
/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 26px rgba(41,83,116,0.08);
  z-index: 1300;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px 24px 23px;
  gap: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #295374;
  border-top: 2px solid #7AB3CB;
  animation: cookie-slide-in 0.46s cubic-bezier(.42,.19,.59,.91);
}
@keyframes cookie-slide-in {
  from { transform: translateY(90px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-consent button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 14px;
  border: none;
  padding: 10px 20px;
  transition: background 0.17s, color 0.13s, transform 0.09s;
  box-shadow: 0 1px 5px rgba(122,179,203,0.09);
}
.cookie-accept {
  background: #7AB3CB;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #295374;
  color: #fff;
}
.cookie-reject {
  background: #EAF3F5;
  color: #295374;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #FFDEDE;
  color: #295374;
}
.cookie-settings {
  background: #fff;
  color: #295374;
  border: 1px solid #7AB3CB;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #7AB3CB13;
  color: #295374;
}
/* Cookie Settings Modal */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(49,73,100,0.16);
  z-index: 1500;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in 0.29s ease-out;
}
.cookie-modal-backdrop.open {
  display: flex;
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 50px rgba(41,83,116,0.18);
  padding: 40px 32px 30px 32px;
  max-width: 95vw;
  width: 400px;
  color: #295374;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: modal-fade-in 0.29s ease-out;
}
.cookie-modal h2 {
  font-size: 1.22rem;
  margin-bottom: 8px;
  color: #295374;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  font-size: 1.02rem;
}
.cookie-toggle {
  accent-color: #7AB3CB;
  width: 20px;
  height: 20px;
}
.cookie-category .essential {
  font-weight: bold;
  color: #7AB3CB;
}
.cookie-modal .cookie-actions {
  margin-top: 26px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 9px 19px;
}
/* THANK YOU SECTION */
.thankyou {
  background: #EAF3F5;
  border-radius: 28px;
  box-shadow: 0 4px 32px rgba(122,179,203,0.04);
  text-align: center;
  margin: 60px 0;
}
.thankyou h1 {
  font-size: 2rem;
}
.thankyou p {
  margin: 20px auto 28px auto;
  max-width: 460px;
}

/* Accessibility: outline & focus */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #7AB3CB;
  outline-offset: 1px;
}

/* General utility: visually hidden, clear floats etc. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* Scrollbar styling for some pastel touch */
body::-webkit-scrollbar {
  width: 10px;
  background: #EAF3F5;
}
body::-webkit-scrollbar-thumb {
  background: #7AB3CB;
  border-radius: 7px;
}

@media (max-width:520px) {
  .service-card, .service-item, .testimonial-card, .blog-article, .article-list article, .card, .policy, .text-section {
    padding: 15px 7px;
  }
  .stats ul li, .features ul li {
    padding: 11px 8px;
  }
}
