/* CSS RESET & BASE ------------------------------------------------------------- */
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,
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: #E1E5EA;
  color: #224866;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1277B0;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1ba6e6;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* BRAND TYPOGRAPHY ------------------------------------------------------------- */
h1, h2, h3, h4, .cta-primary, .cta-secondary, .cta-tertiary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.2rem;
  color: #224866;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.5rem;
  color: #0e2940;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.17rem;
  color: #1277B0;
  margin-bottom: 12px;
}
h4 {
  font-size: 1rem;
  color: #224866;
  margin-bottom: 8px;
}
p, li, blockquote, span, table, th, td {
  font-family: 'Roboto', Arial, sans-serif;
  color: #224866;
}
p {
  margin-bottom: 14px;
  line-height: 1.7;
}
.subheadline {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #3DB6E6;
  font-size: 1.12rem;
  margin-bottom: 18px;
  font-weight: 500;
}

/* SPACING PATTERNS ------------------------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(34,72,102,0.06);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(34,72,102,0.13);
  padding: 24px 20px;
  position: relative;
  transition: transform 0.18s cubic-bezier(.55,1.3,.43,1) , box-shadow 0.18s;
}
.card:hover {
  transform: scale(1.038) rotate(-1.5deg);
  box-shadow: 0 4px 32px 0 rgba(61,182,230,0.10);
  /* playful wobble */
}
.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 {
  background: #B7E0ED;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(34,72,102,0.07);
  animation: testimonial-pop 0.7s cubic-bezier(.45,1.6,.48,1) both;
}
@keyframes testimonial-pop {
  0% { transform: scale(0.93); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  margin-bottom: 32px;
}

/* BUTTONS & CTAS ------------------------------------------------------------- */
.cta-primary, .cta-secondary, .cta-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 1px 9px 0 rgba(61,182,230,0.13);
  border: none;
}
.cta-primary {
  background: #3DB6E6;
  color: #fff;
  box-shadow: 0 2px 18px 0 rgba(61,182,230,0.12);
}
.cta-primary:hover, .cta-primary:focus {
  background: #1976d2;
  color: #fff;
  transform: scale(1.06) rotate(1deg);
}
.cta-secondary {
  background: #B7E0ED;
  color: #224866;
  border: 2px solid #224866;
}
.cta-secondary:hover, .cta-secondary:focus {
  color: #fff;
  background: #1277B0;
  border-color: #1277B0;
  transform: scale(1.045) rotate(-2deg);
}
.cta-tertiary {
  background: #fff;
  color: #224866;
  border: 2px dashed #3DB6E6;
}
.cta-tertiary:hover, .cta-tertiary:focus {
  background: #B7E0ED;
  border-style: solid;
  color: #224866;
  transform: scale(1.05) rotate(-2deg);
}

/* Header & Navigation --------------------------------------------------------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #B7E0ED;
  box-shadow: 0 2px 10px rgba(61,182,230,0.13);
  position: sticky;
  top: 0;
  z-index: 40;
}
.logo-header {
  flex-shrink: 0;
  margin-right: 24px;
  min-width: 120px;
  display: flex;
  align-items: center;
}
header img {
  height: 44px;
  width: auto;
  display: block;
  transition: transform 0.18s;
}
header img:hover {
  transform: scale(1.06) rotate(-2deg);
}
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.045rem;
}
.main-nav a {
  color: #224866;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.23s, color 0.19s;
}
.main-nav a:hover, .main-nav a.active {
  border-bottom: 2.5px solid #3DB6E6;
  color: #1277B0;
}
/* hide mobile menu by default on desktop */
.mobile-menu-toggle {
  background: #3DB6E6;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  padding: 10px 14px 7px 14px;
  cursor: pointer;
  margin-left: 18px;
  display: none;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  box-shadow: 0 2px 10px rgba(61,182,230,0.12);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1976d2;
  transform: scale(1.09) rotate(10deg);
}

/* MOBILE NAVIGATION ---------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 86vw;
  max-width: 420px;
  background: #fff;
  box-shadow: -4px 0 40px 0 rgba(34,72,102,0.23);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.5,1.5,.45,1), box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 28px 30px 50px 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #3DB6E6;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  padding: 7px 18px 3px 18px;
  cursor: pointer;
  margin-bottom: 15px;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  box-shadow: 0 2px 10px rgba(61,182,230,0.10);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1976d2;
  transform: scale(1.12) rotate(-16deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}
.mobile-nav a {
  color: #1277B0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 11px 0 11px 6px;
  border-radius: 18px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B7E0ED;
  color: #224866;
}
.mobile-menu::before {
  content: '';
  display: block;
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  width: 100vw; height: 100vh;
  z-index: -1;
  background: rgba(6, 42, 66, 0.21);
}
.mobile-menu:not(.open) { pointer-events: none; }
.mobile-menu.open { pointer-events: auto; }

/* Hide mobile menu on desktop */
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
}

/* Responsive HEADER - Show hamburger on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  header {
    padding: 13px 11px;
  }
}

/* HERO + GENERAL LAYOUTS ----------------------------------------------------- */
.hero, .hero-section, .thank-you-section {
  background: linear-gradient(75deg, #3DB6E6 0%, #B7E0ED 100%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 2px 16px rgba(34,72,102,0.10);
  margin-bottom: 60px;
  padding: 50px 0 62px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero h1, .hero-section h1, .thank-you-section h1 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 14px rgba(34,72,102,0.23);
  margin-bottom: 14px;
}
.hero .subheadline, .hero-section .subheadline {
  color: #224866;
  font-size: 1.15rem;
  font-weight: 500;
}
.hero .cta-primary, .hero-section .cta-primary {
  margin-top: 22px;
  font-size: 1.07rem;
}

/* FEATURES UL / OL ----------------------------------------------------------- */
.features ul, .features ol {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 16px;
}
.features li {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 13px 18px;
  margin-bottom: 12px;
  border-radius: 15px;
  color: #224866;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 1px 7px 0 rgba(34,72,102,0.09);
  min-height: 48px;
  gap: 12px;
}
.features li img {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.features h2 {
  margin-bottom: 14px;
}

/* SERVICE OVERVIEW + SERVICE GRID -------------------------------------------- */
.services-overview .service-list,
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 18px 0;
}
.services-overview .service-list > div,
.service-grid > div {
  flex: 1 1 230px;
  min-width: 210px;
  background: #fff;
  padding: 25px 18px 21px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px 0 rgba(34,72,102,0.10);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.service-list > div:hover, .service-grid > div:hover {
  box-shadow: 0 3px 22px 0 rgba(61,182,230,0.17);
  transform: translateY(-6px) scale(1.025) rotate(-1.6deg);
}
.service-list h3, .service-grid h2 {
  font-size: 1.21rem;
  color: #224866;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 9px;
}
.service-price {
  font-size: 1.12rem;
  font-weight: 600;
  color: #3DB6E6;
  margin-top: 6px;
  letter-spacing: 0.05em;
}

.cta-secondary {
  margin-top: 16px;
}

/* PRICING TABLE ------------------------------------------------------------- */
.service-pricing-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 26px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 8px 0 rgba(61,182,230,0.10);
}
.service-pricing-table th, .service-pricing-table td {
  padding: 18px 15px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #E1E5EA;
}
.service-pricing-table th {
  background: #B7E0ED;
  color: #224866;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}
.service-pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-notes {
  font-size: 0.97rem;
  color: #224866;
  margin-bottom: 18px;
  margin-top: 5px;
  font-style: italic;
}

/* TESTIMONIALS -------------------------------------------------------------- */
.testimonials-section h2 {
  margin-bottom: 20px;
}
blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  color: #224866;
  font-style: italic;
  margin-bottom: 0px;
  line-height: 1.6;
  quotes: "\201C" "\201D";
}
blockquote:before {
  content: open-quote;
  color: #3DB6E6;
  font-size: 2.1rem;
  vertical-align: top;
  font-weight: bold;
  margin-right: 5px;
}
.testimonial-card span {
  color: #0e2940;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0.86;
  font-weight: 600;
  margin-top: 2px;
}

/* ABOUT, LEGAL, TEAM, CONTACT Pages ------------------------------------------ */
.about-section, .legal-section, .team-section, .contact {
  background: #fff;
  border-radius: 24px;
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: 0 2px 10px 0 rgba(61,182,230,0.07);
}
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 26px 0 20px 0;
}
.team-bios > div {
  background: #B7E0ED;
  padding: 18px 14px;
  border-radius: 18px;
  flex: 1 1 230px;
  min-width: 180px;
  box-shadow: 0 2px 10px rgba(61,182,230,0.07);
  font-size: 1rem;
}
.team-bios h2 {
  font-size: 1.13rem;
  color: #0e2940;
}
.contact-info {
  margin-bottom: 18px;
  font-size: 1.03rem;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-info a {
  color: #1277B0;
  word-break: break-all;
}
/* Ordered Step Lists */
ol {
  counter-reset: step;
}
ol li {
  counter-increment: step;
  display: flex;
  align-items: center;
  background: #B7E0ED;
  border-radius: 15px;
  margin-bottom: 10px;
  padding: 13px 19px;
  font-size: 1rem;
  font-weight: 500;
  color: #224866;
}
ol li:before {
  content: counter(step) '.';
  font-weight: 700;
  color: #3DB6E6;
  margin-right: 12px;
  font-size: 1.15rem;
}

/* FOOTER ------------------------------------------------*/
footer {
  background: #224866;
  color: #fff;
  padding: 42px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px 14px 20px;
}
.footer-content img {
  height: 38px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.footer-nav a {
  color: #B7E0ED;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-note {
  background: #193148;
  text-align: center;
  color: #B7E0ED;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 0 0 0 0;
  padding: 12px 0 20px 0;
  margin-top: 9px;
}

/* COOKIE CONSENT ------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  z-index: 2000;
  background: #B7E0ED;
  color: #224866;
  padding: 18px 24px 20px 24px;
  box-shadow: 0 -4px 18px 0 rgba(34,72,102,0.14);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  animation: cookieSlideIn 0.68s cubic-bezier(.55,1.3,.43,1) both;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
@keyframes cookieSlideIn {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 3px;
}
.cookie-banner-button {
  background: #3DB6E6;
  color: #fff;
  border: none;
  border-radius: 18px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 13px;
  margin: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.16s, box-shadow 0.18s;
  box-shadow: 0 1px 7px rgba(61,182,230,0.09);
}
.cookie-banner-button:not(:first-child) {
  background: #fff;
  color: #1976d2;
  border: 1.5px dashed #3DB6E6;
}
.cookie-banner-button:hover, .cookie-banner-button:focus {
  background: #1277B0;
  color: #fff;
}
.cookie-banner-button:active {
  transform: scale(0.97);
}

/* COOKIE MODAL --------------------------------------------- */
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 2100;
  background: rgba(34,72,102,0.22);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-modal {
  background: #fff;
  color: #224866;
  border-radius: 24px;
  max-width: 420px;
  width: 90vw;
  padding: 36px 32px 24px 32px;
  box-shadow: 0 3px 40px 8px rgba(61,182,230,0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: cookieModalIn 0.48s cubic-bezier(.5,1.3,.48,1) both;
}
@keyframes cookieModalIn {
  0% { transform: scale(0.8) translateY(80px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #B7E0ED;
  padding: 12px 13px;
  border-radius: 16px;
  margin-bottom: 10px;
}
.cookie-category-label {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 11px;
  flex: 1 1 auto;
}
.cookie-category-toggle {
  appearance: none;
  width: 38px;
  height: 21px;
  background: #E1E5EA;
  border-radius: 15px;
  position: relative;
  outline: none;
  transition: background 0.18s;
  cursor: pointer;
  border: 1.2px solid #3DB6E6;
}
.cookie-category-toggle:checked {
  background: #3DB6E6;
}
.cookie-category-toggle::before {
  content: '';
  display: block;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
  position: absolute;
  top: 2.4px; left: 3px;
  box-shadow: 0 1px 4px #1976d260;
}
.cookie-category-toggle:checked::before {
  transform: translateX(13px);
}
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 24px;
  background: #3DB6E6;
  color: #fff;
  border: none;
  font-size: 1.4rem;
  padding: 5px 14px 3px 14px;
  border-radius: 18px;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #1976d2;
}

/* ANIMATIONS, MICROINTERACTIONS ---------------------------------------------- */
.card, .service-list > div, .service-grid > div {
  transition: box-shadow 0.23s, transform 0.19s;
}
.cta-primary, .cta-secondary, .cta-tertiary, .cookie-banner-button {
  transition: background 0.22s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}

/* PLAYFUL ICON/DECOR --------------------------------------------------------- */
@media (min-width: 1025px) {
  .hero:after, .hero-section:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -24px;
    right: 24px;
    width: 110px; height: 110px;
    background: url('../assets/icons/snowflake.svg') no-repeat center center/contain;
    opacity: 0.13;
    pointer-events: none;
    z-index: 1;
  }
}

/* RESPONSIVE DESIGN ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-content { flex-direction: column; align-items: flex-start; gap: 20px; }
  .service-list, .service-grid { gap: 14px; }
  .features ul, .features ol { gap: 8px; }
  .testimonial-card { gap: 10px; padding: 14px; }
}
@media (max-width: 768px) {
  .container { padding-left: 6px; padding-right: 6px; }
  .hero, .hero-section, .thank-you-section { padding: 36px 0 36px 0; border-radius: 0 0 22px 22px; }
  .section, .about-section, .team-section, .contact, .legal-section {
    padding: 24px 7px; border-radius: 14px; margin-bottom: 35px;
  }
  .service-list, .service-grid, .team-bios {
    flex-direction: column; gap: 6px;
  }
  .card-container { flex-direction: column; gap: 12px; }
  .content-grid, .text-image-section { flex-direction: column; gap: 16px; }
  .features ul, .features ol { flex-direction: column; gap: 6px; }
  .footer-content { padding: 0 5px 11px 5px; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.07rem; }
  .testimonials-section h2 { font-size: 1.07rem; }
}
@media (max-width: 480px) {
  .hero, .hero-section, .thank-you-section { padding: 21px 0 21px 0; }
  .container { padding-left: 0; padding-right: 0; }
  .service-list > div, .service-grid > div, .team-bios > div {
    padding: 12px 7px; border-radius: 10px;
  }
}

/* SCROLLBAR STYLING - Playful dynamic! */
::-webkit-scrollbar {
  width: 10px;
  background: #E1E5EA;
}
::-webkit-scrollbar-thumb {
  background: #3DB6E6;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #1277B0;
}

/* ACCESSIBILITY, VISUAL HIERARCHY -------------------------------------------- */
:focus {
  outline: 2.5px solid #3DB6E6 !important;
  outline-offset: 2px;
  border-radius: 6px;
}

/* MISC -------------------------------------------------------- */
hr {
  border: none;
  border-top: 1.6px solid #B7E0ED;
  margin: 28px 0;
}

/* Hide when not needed to avoid overlap */
.mobile-menu[aria-hidden="true"] {
  display: none !important;
}

/* == END OF CSS == */
