/* =====================
   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;
}
/* 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: #F5F7FA;
  color: #133148;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
}

/* =====================
   VARIABLES (WITHOUT custom-props)
   ===================== */
:root {
  /* Static for compatibility */
}

/* =====================
   BASE TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: #133148;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
  color: #133148;
}

/* Fun, Playful Typography */
h1, .hero h1, .cta-section h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: none;
}
h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
}
h1, h2, h3 {
  /* Subtle color shadow for playful effect */
  text-shadow: 1px 2px 0px #fff7b8, 0 1.5px 3px #48B75633;
}

/* =====================
   LAYOUT CONTAINERS
   ===================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
}

/* ====== PREDEFINED FLEXBOX SPACING CLASSES =====*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 #13314811;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 220px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 24px 0 #13314813;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 24px 20px;
}
.card:hover {
  transform: translateY(-6px) scale(1.02) rotate(-1deg);
  box-shadow: 0 12px 36px 0 #13314824;
}
.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 {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: #FFFCE3;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 #13314813;
  position: relative;
  font-size: 1.1rem;
  color: #133148;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F5F7FA;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background-color: #133148;
  color: #fff;
  box-shadow: 0 2px 12px 0 #13314838;
  z-index: 100;
  position: relative;
}
.logo {
  height: 60px;
  padding: 8px 0;
  display: flex;
  align-items: center;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
nav.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 18px;
  transition: background 0.17s, color 0.15s, transform 0.13s;
}
nav.main-nav a:hover {
  background: #48B756;
  color: #133148;
  transform: scale(1.06) rotate(-2deg);
}
nav.main-nav .cta-primary {
  background: #FFDC3B;
  color: #133148;
  font-weight: 800;
  padding: 10px 22px;
  font-size: 1.08rem;
  margin-left: 18px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 1.2px;
  box-shadow: 0 2px 8px #ffdf3b43;
  border: none;
  border-radius: 20px;
}
nav.main-nav .cta-primary:hover {
  background: #48B756;
  color: #fff;
}

/* ===== MOBILE HEADER & MENU ===== */
.mobile-menu-toggle {
  display: flex;
  font-size: 2.2rem;
  background: none;
  color: #fff;
  border: none;
  margin-left: 20px;
  align-items: center;
  z-index: 200;
  cursor: pointer;
  width: 44px;
  height: 44px;
  justify-content: center;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-toggle:hover {
  background: #FFDC3B;
  color: #133148;
  border-radius: 50%;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: #133148ee;
  z-index: 995;
  transform: translateX(-110vw);
  transition: transform 0.33s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  box-shadow: 4px 0 20px rgba(19,49,72,0.19);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 24px;
  top: 24px;
  background: #FFDC3B;
  color: #133148;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
  z-index: 1001;
  transition: background 0.17s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover {
  background: #48B756;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-top: 90px;
  margin-left: 40px;
}
.mobile-nav a {
  color: #FFDC3B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 16px 10px 0;
  border-radius: 14px;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover {
  background: #48B756;
  color: #fff;
}

@media (min-width: 1020px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 1019px) {
  nav.main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  header .container {
    padding-right: 0;
  }
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  background: linear-gradient(110deg, #FFDC3B 45%, #48B756 120%);
  background-blend-mode: lighten;
  box-shadow: 0 8px 36px 0 #13314814 inset;
  border-radius: 0 0 40px 40px;
  position: relative;
  min-height: 340px;
  margin-bottom: 60px;
}
.hero .container {
  justify-content: center;
  align-items: center;
  padding: 44px 20px 60px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 600px;
}
.hero h1 {
  color: #133148;
  font-size: 2.6rem;
  line-height: 1.13;
  text-shadow: 2px 3px 0px #fff7b888, 0 2.5px 8px #48B75629;
}
.hero p {
  color: #133148;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

/* =====================
   FEATURE GRID
   ===================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 8px 0;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 180px;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 1.5px 10px 0 #13314811;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  margin-bottom: 0;
  text-align: center;
}
.feature-grid > div img {
  height: 48px;
  width: 48px;
  margin-bottom: 8px;
  filter: drop-shadow(2px 4px 0px #FFDC3B) drop-shadow(0 1px 4px #48B75644);
}
.feature-grid > div:hover {
  background: #FFFCE3;
  box-shadow: 0 6.5px 24px 0 #48B75638;
  transform: translateY(-4px) scale(1.04) rotate(-1deg);
}

/* =====================
   CTA BUTTONS
   ===================== */
.cta-primary,
.cta-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.11rem;
  letter-spacing: 1.3px;
  padding: 13px 36px;
  border-radius: 27px;
  display: inline-block;
  transition: background 0.21s, color 0.21s, transform 0.12s;
  margin-top: 18px;
  margin-bottom: 8px;
  box-shadow: 0 4px 16px #13314817, 0 2.5px 8px #FFDC3B27;
}
.cta-primary {
  background: #FFDC3B;
  color: #133148;
  border: none;
}
.cta-primary:hover {
  background: #48B756;
  color: #fff;
  transform: scale(1.07) rotate(-2deg);
}
.cta-secondary {
  background: #fff;
  border: 2.5px solid #48B756;
  color: #133148;
  font-weight: 700;
}
.cta-secondary:hover {
  background: #FFDC3B;
  color: #133148;
  border-color: #FFDC3B;
  transform: scale(1.05) rotate(1deg);
}

/* CTA SPECIAL SECTION */
.cta-section {
  background: #48B756;
  background-blend-mode: lighten;
  box-shadow: 0 8px 36px 0 #13314816;
  border-radius: 30px;
  margin: 40px 0 60px 0;
  color: #fff;
}
.cta-section h2, .cta-section p {
  color: #fff;
  text-shadow: 1px 2px 0px #FFDC3B, 0 1.5px 3px #13314818;
}
.cta-section .cta-primary,
.cta-section .cta-secondary {
  margin-top: 22px;
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonial-card {
  background: #FFFCE3;
  color: #133148;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px #13314810, 0 1px 2px #FFFCE333;
  border-left: 5px solid #FFDC3B;
  border-radius: 18px;
  font-size: 1.09rem;
  line-height: 1.6;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #48B756;
  font-weight: 700;
  margin-left: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #133148;
  color: #fff;
  padding: 50px 0 24px;
  border-radius: 50px 50px 0 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #FFDC3B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  padding: 6px 0;
  transition: color 0.19s;
}
.footer-nav a:hover {
  color: #48B756;
}
.footer-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  font-size: 1rem;
}
.footer-info img {
  height: 44px;
  margin-top: 2px;
}
.footer-info p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
}

/* =====================
   MEMBERSHIP TABLE
   ===================== */
.membership-table {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 18px #13314813;
  margin: 28px 0;
  overflow-x: auto;
}
.membership-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 340px;
}
.membership-table th,
.membership-table td {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 18px 12px;
  text-align: left;
  border-bottom: 1.5px solid #F5F7FA;
  background: #fff;
}
.membership-table thead th {
  background: #FFFCE3;
}
.membership-table tbody tr:last-child td {
  border-bottom: none;
}
.membership-table th {
  color: #133148;
  font-weight: 700;
}
.membership-table td {
  color: #185b25;
}

/* =====================
   FAQ ACCORDION
   ===================== */
.faq-accordion h3 {
  cursor: pointer;
  background: #FFFCE3;
  transition: background 0.13s;
  padding: 10px 18px;
  border-radius: 13px;
  margin: 14px 0 4px 0;
}
.faq-accordion h3:hover {
  background: #FFDC3B;
}
.faq-accordion p {
  padding: 0 18px 10px 18px;
  display: block;
  font-size: 1rem;
  color: #133148;
}

/* =====================
   OTHER COMPONENTS
   ===================== */
ul, ol {
  margin-left: 24px;
  margin-bottom: 14px;
}
ul li, ol li {
  margin-bottom: 8px;
  position: relative;
  font-size: 1.03rem;
  color: #133148;
}
ul li:before {
  content: '\2022';
  color: #48B756;
  font-size: 1.2em;
  margin-right: 9px;
  vertical-align: -1px;
}
ol li:before {
  display: none;
}

div[role='alert'] {
  color: #fff;
  background: #ff7979;
  border-radius: 8px;
  padding: 8px 18px;
  margin: 16px 0;
  font-size: 1rem;
}

hr {
  border: none;
  border-top: 1.5px solid #F5F7FA;
  margin: 32px 0;
}

table {
  border-collapse: collapse;
  background: #fff;
}
thead {
  background: #F5F7FA;
}

a {
  transition: color 0.18s, text-decoration 0.13s;
}

a:hover, .footer-nav a:hover {
  color: #48B756;
}

/* =====================
   ANIMATIONS & MICRO-INTERACTIONS
   ===================== */
.card, .feature-grid > div, .testimonial-card, .membership-table, .faq-accordion h3 {
  transition: box-shadow 0.14s, transform 0.14s, background 0.16s, color 0.18s;
}
.cta-primary, .cta-secondary {
  transition: box-shadow 0.11s, background 0.17s, color 0.13s, transform 0.12s;
}

/* Fun bounce on button click (optional JS powered) */
.cta-primary:active, .cta-secondary:active {
  transform: scale(0.97) rotate(-1deg);
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
    max-width: none;
  }
  .section {
    padding: 30px 10px;
    margin-bottom: 44px;
  }
  .hero .container {
    padding: 32px 10px 44px;
  }
  .content-wrapper {
    max-width: 100%;
  }
  .feature-grid {
    gap: 16px;
  }
  .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  /* Stack everything! */
  .container, .content-wrapper {
    padding: 0 8px;
  }
  header .container, footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .section, .hero, .cta-section {
    padding: 26px 4px;
    border-radius: 16px;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 5px;
    padding: 14px 12px;
    font-size: 1rem;
  }
  .footer-info {
    flex-direction: column;
    gap: 6px;
  }
  .membership-table th, .membership-table td {
    padding: 9px 5px;
    font-size: 0.93rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 520px) {
  html, body {
    font-size: 14.5px;
  }
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.11rem; }
  .section, .cta-section {
    padding: 10px 2px;
  }
  .card { padding: 11px 8px; }
  .testimonial-card { padding: 8px 8px; }
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1200;
  background: #fff;
  color: #133148;
  box-shadow: 0 -4px 18px 0 #13314827;
  border-top: 3.5px solid #FFDC3B;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 20px 32px;
  font-size: 1rem;
  animation: slideUpBanner 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
.cookie-banner-message {
  flex: 2 1 200px;
  font-size: 1.06rem;
  margin-right: 24px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  min-width: 120px;
  background: #FFDC3B;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 19px;
  font-weight: 800;
  color: #133148;
  padding: 10px 16px;
  transition: background 0.17s, color 0.17s, transform 0.14s;
  box-shadow: 0 3px 8px #FFDC3B19;
  cursor: pointer;
}
.cookie-banner button:hover {
  background: #48B756;
  color: #fff;
  transform: scale(1.04) rotate(-1.5deg);
}
.cookie-banner .cookie-settings-btn {
  background: #F5F7FA;
  color: #133148;
  border: 2px solid #FFDC3B;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #FFDC3B;
  color: #133148;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 8px;
    font-size: 0.98rem;
  }
  .cookie-banner-actions {
    flex-direction: column;
    gap: 9px;
    width: 100%;
  }
  .cookie-banner-message {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@keyframes slideUpBanner {
  from { transform: translateY(90px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ==============
   COOKIE MODAL
   ============== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1300;
  transform: translate(-50%, 120vh);
  background: #fff;
  box-shadow: 0 8px 40px 0 #13314839;
  border-radius: 24px;
  padding: 40px 28px 26px 28px;
  min-width: 320px;
  max-width: 96vw;
  min-height: 1px;
  width: 100%;
  max-width: 400px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.48s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.22s;
}
.cookie-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: all;
}
.cookie-modal h2 {
  color: #133148;
  margin-bottom: 10px;
  font-size: 1.32rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 12px 0 22px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-category label {
  font-size: 1rem;
  color: #133148;
  font-weight: 600;
}
.cookie-category input[type=checkbox] {
  accent-color: #FFDC3B;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.cookie-category input[disabled] {
  accent-color: #BBBFBE;
  cursor: not-allowed;
}
.cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 10px 18px;
  border-radius: 17px;
  background: #FFDC3B;
  color: #133148;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  box-shadow: 0 2px 8px #ffdf3b18;
  cursor: pointer;
  transition: background 0.19s, color 0.18s, transform 0.11s;
}
.cookie-modal button:hover {
  background: #48B756;
  color: #fff;
  transform: scale(1.05);
}
.cookie-modal .modal-close-btn {
  position: absolute;
  right: 18px;
  top: 18px;
  background: #F5F7FA;
  color: #133148;
  padding: 4px 10px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}
.cookie-modal .modal-close-btn:hover {
  background: #FFDC3B;
  color: #133148;
}
@media (max-width: 520px) {
  .cookie-modal {
    min-width: 90vw;
    max-width: 99vw;
    padding: 16px 2vw 12px 2vw;
  }
  .cookie-modal-buttons {
    flex-direction: column;
  }
}

/* =====================
   PLAYFUL/DECORATIVE ELEMENTS
   ===================== */
.hero:before, .cta-section:before {
  content: '';
  display: block;
  position: absolute;
  top: -30px;
  right: 10px;
  width: 90px;
  height: 90px;
  background: #fff7b885;
  border-radius: 50%;
  z-index: 0;
  filter: blur(12px);
  pointer-events: none;
  animation: float-bubble 5s linear infinite alternate;
}
.hero:before {
  top: 30px; left: unset; right: 20px; width: 110px; height: 110px; background: #48B75622;
}
.cta-section:before {
  background: #FFDC3B33;
  top: -38px; right: 30px;
}
@keyframes float-bubble {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 0.31;
  }
  100% {
    transform: translateY(15px) scale(1.06) rotate(17deg);
    opacity: 0.45;
  }
}

.section {
  position: relative;
  overflow: visible;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -23px;
  left: 40px;
  width: 54px;
  height: 54px;
  background: #48B75644;
  border-radius: 50%;
  opacity: 0.16;
  filter: blur(8px);
  z-index: 1;
  pointer-events: none;
}

/* =====================
   SCROLLBAR STYLES (playful, bright)
   ===================== */
::-webkit-scrollbar {
  width: 11px;
  background: #F5F7FA;
}
::-webkit-scrollbar-thumb {
  background: #FFDC3Bcc;
  border-radius: 8px;
  border: 2.5px solid #F5F7FA;
}

/* =====================
   CUSTOM FONT IMPORTS
   ===================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* =====================
   END OF STYLE.CSS
   ===================== */
