/* =====================
   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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F3F3F3;
  color: #133463;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  width: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
a {
  color: #133463;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #FAA916;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #133463;
  font-weight: 800;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.375rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; }

p, li, label, span, strong {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
strong { font-weight: 700; }

hr {
  border: none;
  border-top: 2px solid #FAA916;
  margin: 28px 0;
}

button, .btn-primary, input[type="submit"], input[type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  font-size: 1.125rem;
  font-weight: 700;
  background: #FAA916;
  color: #133463;
  box-shadow: 0 3px 16px 0 rgba(250,169,22,0.14);
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  display: inline-block;
  margin-top: 14px;
  letter-spacing: 0.05em;
}
.btn-primary:hover, .btn-primary:focus, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  background: #ffcc4a;
  color: #133463;
  transform: scale(1.05) rotate(-1deg);
}

/* =====================
   PLAYFUL DYNAMIC THEME
======================== */
:root {
  --primary: #133463;
  --secondary: #FAA916;
  --accent: #F3F3F3;
  --body: #FFFFFF;
  --fun-pink: #FF69B4;
  --fun-blue: #00CFFD;
  --fun-green: #95d600;
  --fun-purple: #a366ee;
  --shadow-card: 0 6px 24px 0 rgba(19,52,99,0.08);
  --radius: 20px;
  --radius-card: 28px;
  --transition: 0.28s cubic-bezier(.47,1.64,.41,.8);
}

body {
  background: var(--accent);
  overflow-x: hidden;
}
.container {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* ========== HEADER & NAV ========== */
header {
  background: var(--body);
  box-shadow: 0 2px 9px 0 rgba(19,52,99,0.06);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 18px;
}
header img {
  max-height: 48px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  border-radius: 20px;
  padding: 7px 18px;
  transition: background var(--transition), color var(--transition);
}
header nav a:hover, header nav a.active {
  background: var(--fun-blue);
  color: #fff;
}
.btn-primary {
  margin-left: 18px;
  margin-right: 0;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--secondary) 80%, var(--fun-pink) 150%);
  color: var(--primary);
  border: none;
  box-shadow: 0 3px 16px 0 rgba(250,169,22,0.14);
  transition: background var(--transition), color var(--transition), transform 0.18s;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #ffba4a 70%, var(--fun-pink) 140%);
  transform: scale(1.06) rotate(-1.5deg);
  color: #133463;
}

.mobile-menu-toggle {
  background: var(--fun-blue);
  color: #fff;
  border: none;
  border-radius: 99px;
  font-size: 2rem;
  outline: none;
  width: 52px;
  height: 52px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 14px 0 rgba(0,207,253,.14);
  margin-left: auto;
  z-index: 101;
  transition: background var(--transition), color var(--transition), transform 0.2s;
}
.mobile-menu-toggle:hover {
  background: var(--fun-pink);
  color: #fff;
  transform: rotate(-7deg) scale(1.05);
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 111;
  background: linear-gradient(135deg, #fff 75%, var(--fun-blue) 125%);
  transition: transform 0.35s cubic-bezier(.47,1.64,.41,.8);
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 32px;
  padding-left: 0;
  overflow-y: auto;
  box-shadow: 0 12px 40px 0 rgba(19,52,99,0.19);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #faa916;
  border: none;
  color: #133463;
  font-size: 2.1rem;
  border-radius: 60px;
  width: 54px; height: 54px;
  margin: 0 20px 18px 20px;
  box-shadow: 0 3px 16px 0 rgba(19,52,99,0.09);
  align-self: flex-end;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform .2s;
}
.mobile-menu-close:hover {
  background: var(--fun-pink);
  color: #fff;
  transform: rotate(7deg) scale(1.05);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 0 34px;
}
.mobile-nav a {
  font-size: 1.25rem;
  padding: 13px 22px;
  border-radius: 28px;
  font-weight: 700;
  color: var(--primary);
  background: var(--accent);
  margin: 0;
  margin-bottom: 2px;
  box-shadow: 0 2px 11px 0 rgba(19,52,99,0.07);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--fun-blue);
  color: #fff;
}

/* Hide nav/show mobile menu toggle on small screens */
@media (max-width: 950px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 951px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================
   HERO & GENERAL SECTIONS
========================= */
.hero {
  width: 100%;
  background: linear-gradient(120deg, #fff 78%, var(--fun-blue) 150%);
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  flex: 1 0 auto;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 330px;
  position: relative;
  z-index: 2;
}
.hero .content-wrapper {
  gap: 14px;
}
.hero h1 {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.01em;
}
.hero p {
  color: #24518f;
  font-size: 1.21rem;
  margin-bottom: 8px;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
  background: transparent;
  border-radius: var(--radius);
  position: relative;
}
section.cta {
  background: linear-gradient(90deg, #faa916 70%, #00c7b8 130%);
  color: #133463;
  box-shadow: 0 4px 16px 0 rgba(250,169,22,0.09);
  border-radius: var(--radius-card);
  margin-bottom: 48px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: background .25s;
}
section.cta h2 {
  color: #fff;
  text-shadow: 0 2px 6px rgba(19,52,99,.11);
}
section.cta .btn-primary {
  background: #fff;
  color: #faa916;
  transition: all .2s;
}
section.cta .btn-primary:hover {
  color: #133463;
  background: #faf33a;
}

/* Decorative confetti in background for playful look */
.hero::before, .cta::before {
  content: "";
  display: block;
  position: absolute;
  top: -50px; right: -90px;
  width: 160px; height: 120px;
  z-index: 1;
  background: radial-gradient(circle at 45% 55%, var(--fun-pink) 32%, transparent 70%) repeat;
  opacity: 0.18;
  transform: rotate(16deg);
  pointer-events: none;
  border-radius: 70% 40% 55% 92%;
}
.cta::before {
  left: -70px; right: auto;
  top: -66px;
  background: radial-gradient(circle at 50% 40%, var(--fun-green) 55%, transparent 95%) repeat;
  opacity: 0.14;
}

/* ========== SPACING, CARD STYLES ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  min-width: 265px;
  transition: box-shadow 0.22s, transform var(--transition);
  overflow: hidden;
  animation: fadein-card 0.65s cubic-bezier(.47,1.64,.41,.8);
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(250,169,22,0.13);
  transform: scale(1.027) rotate(-1deg);
}
@keyframes fadein-card {
  0% { opacity: 0; transform: translateY(30px) scale(.96); }
  50% { opacity: 0.7; }
  100% { opacity: 1; transform: none; }
}

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

.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;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 8px 0 rgba(19,52,99,0.09);
  margin-bottom: 20px;
  color: #133463;
  font-size: 1.1rem;
  transition: box-shadow 0.18s, transform var(--transition);
  min-width: 270px;
  position: relative;
  animation: fadein-card 0.6s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px 0 rgba(250,169,22,0.13);
  transform: scale(1.024) rotate(1.8deg);
  background: #fafaff;
}
.testimonial-card strong {
  color: var(--fun-pink);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-top: 30px;
}

.feature-grid, .bio-grid, .case-study-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.feature-grid > div, .bio-grid > div, .case-study-cards > div {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 20px 22px 20px;
  box-shadow: 0 2px 9px 0 rgba(19,52,99,0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 245px;
  flex: 1 1 270px;
  margin-bottom: 0;
  position: relative;
  transition: box-shadow 0.2s, transform .13s;
  animation: fadein-card 0.6s;
}
.feature-grid > div:hover,
.bio-grid > div:hover,
.case-study-cards > div:hover {
  box-shadow: 0 10px 32px 0 rgba(250,169,22,0.09);
  transform: scale(1.025) rotate(-1.5deg);
}
.feature-grid img, .bio-grid img, .case-study-cards img {
  max-width: 54px;
  margin-bottom: 8px;
}

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

/* =====================
   LISTS & TYPOGRAPHY
========================= */
ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0 6px 0;
  color: #133463;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
ol li {
  padding-left: 0;
  list-style-type: decimal;
  margin-bottom: 7px;
}

/* =====================
   BLOG & ARTICLE
========================= */
.categories {
  margin-top: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--fun-purple);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  background: #e9ebf2;
  padding: 10px 22px;
  border-radius: 28px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 4px 0 rgba(160,102,238,0.06);
}
article {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(19,52,99,0.05);
  padding: 24px 18px 20px 18px;
  margin-bottom: 22px;
  transition: box-shadow 0.19s, transform 0.13s;
  animation: fadein-card 0.55s;
}
article:hover {
  box-shadow: 0 7px 28px 0 rgba(0,207,253,0.11);
  transform: scale(1.013) rotate(-2deg);
}

/* =====================
   FORMS & NEWSLETTER
========================= */
input[type="email"] {
  font-size: 1rem;
  padding: 13px 18px;
  border: 2px solid var(--fun-blue);
  border-radius: 32px;
  outline: none;
  margin-right: 12px;
  width: 240px;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.2s;
}
input[type="email"]:focus {
  border-color: var(--fun-pink);
}
form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

/* =====================
   FOOTER
========================= */
footer {
  background: var(--primary);
  color: #fff;
  border-radius: 40px 40px 0 0;
  margin-top: 42px;
  padding: 38px 0 8px 0;
  box-shadow: 0 -5px 28px 0 rgba(19,52,99,0.07);
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
footer nav {
  display: flex;
  gap: 18px;
  font-size: 1.01rem;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.17s;
  padding: 6px 12px;
  border-radius: 13px;
}
footer nav a:hover {
  color: var(--secondary);
  background: rgba(250,169,22,0.09);
}
footer img {
  max-height: 39px;
}
footer span {
  color: #fff;
  font-size: 0.97rem;
  font-family: 'Open Sans',sans-serif;
  opacity: 0.80;
  margin-left: 16px;
}

/* ========== COOKIE CONSENT BANNER & MODAL ========== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff8da;
  color: #133463;
  padding: 22px 14px 22px 20px;
  box-shadow: 0 -3px 12px 0 rgba(19,52,99,0.17);
  z-index: 180;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-radius: 34px 34px 0 0;
  animation: fadein-cookie 0.6s;
}
@keyframes fadein-cookie {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: none; }
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 3px;
}
.cookie-consent-banner button {
  padding: 10px 26px;
  border-radius: 27px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  background: #FAA916;
  color: #fff;
  cursor: pointer;
  transition: background 0.18s, color 0.15s;
  margin: 0 2px;
}
.cookie-consent-banner button:hover {
  background: var(--fun-pink);
  color: #fff;
}
.cookie-consent-banner .cookie-settings-btn {
  background: var(--fun-blue);
}
.cookie-consent-banner .cookie-settings-btn:hover {
  background: var(--fun-green);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(19,52,99,0.22);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-cmodal 0.35s;
}
@keyframes fadein-cmodal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  max-width: 400px;
  width: 96vw;
  border-radius: 34px;
  box-shadow: 0 6px 36px 0 rgba(250,169,22,0.19);
  padding: 34px 28px 30px 28px;
  z-index: 401;
  color: #133463;
  font-family: 'Open Sans',sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 7px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f7fb;
  border-radius: 19px;
  padding: 13px 17px;
  margin-bottom: 6px;
  font-size: 1.08rem;
  font-family: 'Open Sans', sans-serif;
}
.cookie-modal .category-toggle {
  accent-color: var(--fun-blue);
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.cookie-modal .always-on {
  color: #AAA;
  font-size: 0.98rem;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 10px; right: 10px;
  background: none;
  border: none;
  color: #133463;
  font-size: 1.92rem;
  cursor: pointer;
  border-radius: 50px;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #fafaff;
  color: var(--fun-pink);
}

/* ===============
   UTILITY CLASSES
=================== */
.hide-mobile { display: block; }
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

/* ===============
   RESPONSIVE LAYOUT
=================== */
@media (max-width: 1100px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }
}
@media (max-width: 950px) {
  .feature-grid, .bio-grid, .case-study-cards, .testimonial-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .bio-grid > div, .case-study-cards > div {
    min-width: 0;
    width: 100%;
  }
  header .container {
    gap: 6px;
    min-height: 60px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .container {
    padding: 0 4vw;
  }
  .section, section {
    margin-bottom: 40px;
    padding: 25px 0 25px 0;
    border-radius: 18px;
  }
  .hero {
    min-height: 250px;
    background-position: top right;
    padding: 0;
  }
  .hero h1 {
    font-size: 1.43rem;
  }
  .cta {
    border-radius: 19px;
    padding: 25px 0 25px 0;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    width: 100%;
    min-width: 0;
    padding: 20px 13px;
  }
  .testimonial-card {
    font-size: 1rem;
  }
  .feature-grid, .bio-grid, .case-study-cards {
    gap: 13px;
  }
  .footer .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    gap: 11px;
    text-align: center;
  }
  .form {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  input[type="email"] {
    width: 100%;
    margin-right: 0;
  }
  .categories {
    padding: 8px 9px;
    font-size: 0.99rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 430px) {
  .container {
    padding: 0 2vw;
  }
  section, .section, .cta {
    padding: 10px 0 !important;
    border-radius: 11px !important;
  }
  .footer, footer {
    border-radius: 18px 18px 0 0;
    padding: 18px 0 4px 0;
  }
}

/* =====================
   MICRO-INTERACTIONS & ANIMATIONS
========================= */
@keyframes pop {
  0% { transform: scale(0.95); }
  80% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.btn-primary, .cookie-consent-banner button, .mobile-menu-toggle, .mobile-menu-close, nav a {
  will-change: transform;
}
.btn-primary:active, .cookie-consent-banner button:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  animation: pop 0.15s 1;
}

/* =====================
   ICONS & ACCESSIBILITY
========================= */
img[alt~="icon"], img[src*="icon-"] {
  vertical-align: middle;
  border-radius: 14px;
  background: #fafaff;
  padding: 3px;
  box-shadow: 0 1px 5px 0 rgba(19,52,99,0.07);
  width: 40px;
  height: 40px;
  margin-right: 7px;
}

/* ===============
   SPECIAL CASES & SLIDERS
=================== */
.client-logo-slider {
  display: flex;
  align-items: center;
  gap: 27px;
  padding: 13px 0 3px 0;
  animation: slidein-logo 1.1s;
}
@keyframes slidein-logo {
  from { opacity: 0; transform: translateY(18px) scale(0.95); }
  to { opacity: 1; transform: none; }
}
.client-logo-slider img {
  height: 50px;
  width: auto;
  filter: grayscale(10%) brightness(1.18);
  opacity: 0.83;
}

/* ===============
   CASE STUDY SNIPPET
=================== */
.case-study-snippet {
  background: #fffbe7;
  border-left: 7px solid #FAA916;
  border-radius: 13px;
  padding: 13px 22px 15px 14px;
  margin-top: 16px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px 0 rgba(250,169,22,0.11);
  animation: fadein-card 0.66s;
}
@media (max-width: 500px) {
  .case-study-snippet {
    padding: 7px 7px 7px 7px;
  }
}

/* === UTILITY === */
.text-section {
  margin-top: 10px;
  background: #f6f8fb;
  border-radius: 17px;
  padding: 14px 16px;
  font-size: 1rem;
}
.text-section p { margin-bottom: 0; }

/* ===============
   MISC.
=================== */
::-webkit-input-placeholder { color: #98b7dc; }
input:-moz-placeholder { color: #98b7dc; }
::-moz-placeholder { color: #98b7dc; }
:-ms-input-placeholder { color: #98b7dc; }
::placeholder { color: #98b7dc; }

/* Hide scrollbar on mobile menu */
.mobile-menu::-webkit-scrollbar { display: none; }
.mobile-menu { -ms-overflow-style: none; scrollbar-width: none; }

/* End of CSS */
