/* CSS RESET & BASE TYPOGRAPHY ----------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #23374D;
  background: #F6F8F9;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #36A1DD;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: bold;
}
a:hover, a:focus {
  color: #1789c5;
}
ul, ol {
  padding-left: 1.4rem;
  margin-bottom: 1.4em;
}
li {
  margin-bottom: 0.4em;
}
strong {
  font-weight: bold;
}
/* TYPOGRAPHY SCALE ----------------------------------------------------- */
h1, .h1 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #23374D;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  color: #23374D;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
  color: #23374D;
  margin-bottom: 12px;
}
h4, .h4 {
  font-size: 1.1rem;
  font-weight: bold;
}
.subheadline {
  font-size: 1.25rem;
  font-weight: 500;
  color: #36A1DD;
  margin-bottom: 20px;
}
/* LAYOUT CONTAINER ----------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* HEADER & NAV --------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 5px 16px rgba(35,55,77,0.07);
  padding: 0 0 0 0;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.logo-link img {
  height: 48px;
}
nav.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #23374D;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
nav.main-nav a:hover, nav.main-nav a.active {
  border-bottom: 2px solid #36A1DD;
  color: #36A1DD;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
  font-weight: bold;
  background: #36A1DD;
  color: #fff;
  border-radius: 12px;
  border: none;
  padding: 14px 36px;
  box-shadow: 0 3px 16px rgba(54,161,221,0.13);
  cursor: pointer;
  transition: background 0.18s, transform 0.17s, box-shadow 0.18s;
  margin-left: 24px;
  letter-spacing: 0.03em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1789c5;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 24px rgba(54,161,221,0.20);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  background: #23374D;
  color: #fff;
  border-radius: 10px;
  border: none;
  padding: 12px 32px;
  box-shadow: 0 3px 12px rgba(35,55,77,0.13);
  cursor: pointer;
  transition: background 0.18s, transform 0.16s, box-shadow 0.18s;
  margin-top: 18px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #36A1DD;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}
/* MOBILE NAVIGATION BURGER --------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #23374D;
  padding: 8px 15px 8px 8px;
  cursor: pointer;
  z-index: 120;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #36A1DD;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #23374D;
  color: #fff;
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.76,0,0.24,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 42px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  position: absolute;
  top: 18px;
  right: 24px;
  cursor: pointer;
  z-index: 2100;
  padding: 4px 8px;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #36A1DD;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  margin-top: 32px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  font-size: 1.175rem;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  color: #fff;
  padding: 10px 0;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: color 0.17s, border 0.17s, background 0.18s;
  width: 90%;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #36A1DD;
  color: #fff;
  border-bottom: 2px solid #fff;
}
@media (max-width: 1020px) {
  nav.main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .btn-primary {
    margin-left: 12px;
    padding: 12px 22px;
    font-size: 1rem;
  }
  nav.main-nav {
    gap: 7px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 0;
  }
  nav.main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
    margin-right: 10px;
  }
}

/* LAYOUT SPACING & SECTIONS -------------------------------------------- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 24px rgba(35, 55, 77, 0.04);
}
@media (max-width: 768px) {
  .section, section {
    padding: 28px 7px;
    border-radius: 14px;
    margin-bottom: 36px;
  }
}
/* Hero Section --------------------------------------------------------- */
.hero {
  background: #36A1DD;
  color: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 10px 30px rgba(36, 161, 221, 0.11);
  position: relative;
  padding: 68px 0 52px 0;
  text-align: left;
  margin-bottom: 60px;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 22px 0;
    border-radius: 0 0 18px 18px;
    margin-bottom: 32px;
  }
}
.hero h1 {
  color: #fff;
  font-size: 2.5rem;
}
.hero .subheadline {
  color: #fff;
  font-weight: 400;
}
.hero .btn-primary {
  margin-left: 0;
  margin-top: 22px;
  box-shadow: 0 4px 16px rgba(255,255,255,0.07),0 2px 10px rgba(54,161,221,0.17);
}
/* Features Section ----------------------------------------------------- */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .features .feature-grid {
    flex-direction: column;
    gap: 22px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6F8F9;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(35,55,77,0.06);
  padding: 24px;
  min-width: 240px;
  max-width: 310px;
  flex: 1 1 0;
  transition: box-shadow 0.22s, transform 0.16s;
}
.feature-item img {
  width: 46px;
  height: 46px;
}
.feature-item:hover {
  box-shadow: 0 8px 24px rgba(54,161,221,0.12);
  transform: translateY(-3px) scale(1.025);
}
/* About Preview, About, Services, etc ---------------------------------- */
.text-section {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ul {
  margin-bottom: 0;
}
/* Services preview pricing lists */
.services-preview ul, .frequently-booked-services ul {
  margin-bottom: 8px;
}
.services-preview li strong,
.frequently-booked-services li strong {
  color: #36A1DD;
  font-weight: bold;
  font-size: 1.12em;
}
.services-preview a,
.frequently-booked-services a {
  color: #23374D;
  font-weight: bold;
  border-bottom: 1.5px solid #36A1DD;
  transition: border-color 0.18s, color 0.18s;
}
.services-preview a:hover,
.frequently-booked-services a:hover {
  color: #36A1DD;
  border-bottom: 1.5px solid #23374D;
}
/* Card and Grid Container Patterns ------------------------------------- */
.card-container, .card-grid, .service-list-full {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-block {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(35,55,77,0.07);
  padding: 32px 18px 22px 18px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  max-width: 335px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.13s;
}
.service-block:hover {
  box-shadow: 0 10px 32px rgba(36,161,221,0.09),0 5px 14px rgba(35,55,77,0.09);
}
.service-block img {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  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;
}
@media (max-width: 768px) {
  .card-container, .card-grid, .service-list-full, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
/* Testimonial Section -------------------------------------------------- */
.testimonials {
  background: #fff;
  padding: 40px 0 40px 0;
  margin-bottom: 0;
  border-radius: 20px;
  box-shadow: 0 1px 14px rgba(35,55,77,0.06);
}
.testimonials .testimonial-slider, .testimonials .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .testimonials .testimonial-slider, .testimonials .testimonial-list {
    flex-direction: column;
    gap: 12px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 20px 24px;
  background: #F6F8F9;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(35,55,77,0.09);
  min-width: 260px;
  max-width: 400px;
  flex: 1 1 260px;
  color: #23374D;
  font-size: 1.07rem;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, transform 0.16s;
}
.testimonial-card .star-rating {
  color: #36A1DD;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.testimonial-card p {
  color: #23374D;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card .testimonial-meta {
  color: #23374D;
  font-size: 1em;
  font-weight: bold;
}
.testimonial-card:hover {
  box-shadow: 0 9px 32px rgba(54,161,221,0.10);
  transform: translateY(-3px) scale(1.018);
}
/* Contact Short-Info --------------------------------------------------- */
.contact-short {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  background: #F6F8F9;
  border-radius: 10px;
  padding: 10px 24px;
  font-size: 1.15rem;
}
.contact-short img {
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .contact-short { flex-wrap: wrap; gap: 8px; font-size: 1rem; }
}
/* Cards / Section Patterns --------------------------------------------- */
.card {
  margin-bottom: 20px;
  position: relative;
}
/* Pricing Table -------------------------------------------------------- */
.service-price-table {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 28px;
}
.service-price-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 390px;
}
.service-price-table th, .service-price-table td {
  border-bottom: 1px solid #E0E6ED;
  padding: 16px 16px;
  text-align: left;
  font-size: 1.09rem;
}
.service-price-table th {
  background: #36A1DD;
  color: #fff;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.service-price-table tr:nth-child(even) td {
  background-color: #F6F8F9;
}
.service-price-table tr:hover td {
  background: #36A1DD1A;
}
/* Accordion FAQ List --------------------------------------------------- */
.accordion-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.faq-item {
  background: #F6F8F9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(35,55,77,0.04);
  padding: 22px 20px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.faq-item h2 {
  font-size: 1.25rem;
  color: #23374D;
  margin-bottom: 7px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
}
.faq-item:hover {
  box-shadow: 0 4px 18px rgba(54,161,221,0.09);
  transform: translateY(-2px) scale(1.01);
}
/* CTA Section ---------------------------------------------------------- */
.cta {
  background: #23374D;
  color: #fff;
  text-align: left;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(35,55,77,0.13);
  padding: 44px 22px 42px 22px;
  margin-bottom: 32px;
}
.cta h2 {
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: 12px;
  font-weight: bold;
}
.cta p {
  color: #fff;
  margin-bottom: 22px;
}
.cta .btn-primary {
  margin-top: 8px;
  margin-left: 0;
}
@media (max-width: 768px) {
  .cta {
    padding: 24px 10px 26px 10px;
    border-radius: 11px;
  }
}
/* Address details, opening-hours, hints -------------------------------- */
.address-details ul,
.opening-hours ul,
.contact-suggestion ul {
  list-style: none;
  padding-left: 0;
}
.address-details li, .opening-hours li, .contact-suggestion li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1.09rem;
}
.hint {
  margin-top: 22px;
  background: #36A1DD14;
  color: #23374D;
  padding: 16px 20px;
  border-radius: 7px;
  font-size: 1rem;
}
/* Legal/Policy Sections ------------------------------------------------- */
.legal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 28px rgba(35,55,77,0.05);
  padding: 40px 24px 36px 24px;
}
@media (max-width: 768px) {
  .legal { border-radius: 10px; }
}
.privacy-policy-text, .gdpr-statement, .cookie-policy-text, .terms-and-conditions-text {
  margin-top: 12px;
}
.privacy-policy-text h2,
.gdpr-statement h2,
.cookie-policy-text h2,
.terms-and-conditions-text h2 {
  color: #23374D;
  margin-top: 20px;
  font-size: 1.23rem;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
}
.privacy-policy-text ul,
.gdpr-statement ul,
.cookie-policy-text ul,
.terms-and-conditions-text ul {
  margin-bottom: 10px;
}
/* Thank You Page ------------------------------------------------------- */
.thank-you .text-section {
  margin-top: 24px;
}
/* FOOTER --------------------------------------------------------------- */
footer {
  background: #23374D;
  color: #fff;
  width: 100%;
  margin-top: 40px;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 0 16px 0;
  border-bottom: 1.5px solid #2b4363;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-logo {
  height: 48px;
  filter: drop-shadow(0 1px 5px #23374D13);
}
.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 2px solid transparent;
  padding: 2px 0;
  transition: border-color 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  border-bottom: 2px solid #36A1DD;
  color: #36A1DD;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0 14px 0;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #b5c3d6;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 10px;
    flex-wrap: wrap;
  }
}
/* COOKIE CONSENT BANNER ------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 18px rgba(35,55,77,0.11);
  color: #23374D;
  padding: 26px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  z-index: 4000;
  transition: transform 0.27s cubic-bezier(0.7,0,0.24,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner strong {
  color: #23374D;
  font-weight: bold;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn,
.cookie-banner button,
.cookie-modal button {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin: 0;
  padding: 9px 19px;
  transition: background 0.16s, color 0.16s,
              box-shadow 0.15s, transform 0.14s;
}
.cookie-btn.accept {
  background: #36A1DD;
  color: #fff;
  box-shadow: 0 2px 10px rgba(54,161,221,0.10);
}
.cookie-btn.accept:hover {
  background: #1789c5;
  transform: translateY(-1px);
}
.cookie-btn.reject {
  background: #fff;
  color: #23374D;
  border: 2px solid #23374D;
}
.cookie-btn.reject:hover {
  background: #23374D;
  color: #fff;
}
.cookie-btn.settings {
  background: #F6F8F9;
  color: #23374D;
  border: 2px solid #36A1DD;
}
.cookie-btn.settings:hover {
  background: #36A1DD;
  color: #fff;
}
/* COOKIE PREFERENCES MODAL --------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,55,77, 0.46);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.7,0,0.24,1);
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #23374D;
  border-radius: 17px;
  box-shadow: 0 10px 38px rgba(36,161,221,0.13);
  padding: 38px 26px 26px 26px;
  min-width: 328px;
  max-width: 92vw;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #23374D;
  margin-bottom: 6px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 1.6rem;
  border: none;
  background: none;
  color: #36A1DD;
  cursor: pointer;
  z-index: 2;
  transition: color 0.16s;
}
.cookie-modal-close:hover {
  color: #23374D;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
  color: #23374D;
}
.toggle-switch {
  width: 38px;
  height: 22px;
  border-radius: 999px;
  background: #E2E7ED;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
  margin-right: 4px;
}
.toggle-switch[data-on="true"] {
  background: #36A1DD;
}
.toggle-switch .toggle-knob {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(35,55,77,0.08);
  transition: left 0.15s cubic-bezier(0.75,0,0.25,1), background 0.14s;
}
.toggle-switch[data-on="true"] .toggle-knob {
  left: 19px;
  background: #f4f8ff;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 10px;
}
/* Responsive stuff for cookie modal */
@media (max-width: 500px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 24px 7px 17px 7px;
    font-size: 15px;
  }
}
/* TRANSITIONS & MICRO-INTERACTIONS ------------------------------------- */
.btn-primary, .btn-secondary, .service-block, .card, .feature-item, .testimonial-card, .faq-item {
  transition: box-shadow 0.2s cubic-bezier(.77,0,.175,1),
              transform 0.13s cubic-bezier(.77,0,.175,1),
              background 0.15s, color 0.14s;
}
section, .section {
  transition: box-shadow 0.2s cubic-bezier(.77,0,.175,1), background 0.15s;
}
/* FORM ELEMENTS (if any) ----------------------------------------------- */
input[type="text"], input[type="email"], textarea {
  border-radius: 8px;
  border: 2px solid #E0E6ED;
  padding: 11px 13px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 17px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #23374D;
  background: #F6F8F9;
  transition: border 0.17s, box-shadow 0.14s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 2px solid #36A1DD;
  outline: none;
}
label {
  font-size: 1.01rem;
  color: #23374D;
  font-weight: 600;
  margin-bottom: 6px;
}
/* MEDIA QUERIES MOBILE FIRST & SPACING --------------------------------- */
@media (max-width: 600px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.4rem; }
  .footer-logo { height: 33px; }
}
@media (max-width: 450px) {
  .footer-bottom, .footer-top {
    font-size: 14px;
    padding: 5px 0;
  }
}
/* Utility: High Contrasts for test/review sections --------------------- */
.testimonials, .testimonial-card {
  background: #fff;
}
.testimonial-card,
.faq-item {
  color: #23374D;
}

/* Geometric Shapes Decoration (optionally for modern_bold style) ------- */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -90px;
  width: 320px;
  height: 170px;
  background: rgba(255,255,255,0.06);
  border-radius: 80px 20px 190px 100px;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 850px) {
  .hero::after { right: -30px; width: 180px; height: 85px; }
}
@media (max-width: 550px) {
  .hero::after { display: none; }
}

/* MISC: Accessibility & Selection -------------------------------------- */
::selection {
  background: #36A1DD99;
  color: #fff;
}
::-webkit-scrollbar {
  width: 10px;
  background: #F6F8F9;
}
::-webkit-scrollbar-thumb {
  background: #E0E6ED;
  border-radius: 7px;
}

/* END OF MODERN_BOLD CSS for DYNAMO PRISM ------------------------------ */
