/* 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f3f4f7;
  color: #1b2636;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #18407d;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #ffae00;
}
ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #18407d;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.12;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.125rem;
}
h4, h5, h6 {
  font-size: 1rem;
}
.subheadline {
  font-size: 1.15rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #26395f;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.48;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.header-flex,
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-flex {
  margin-top: 40px;
  padding: 30px 0;
  align-items: flex-start;
}

.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEX SPACING */
.card-container, .card-grid, .content-grid, .feature-grid, .reviews-grid, .startup-cards, .trend-cards, .guide-list, .event-calendar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px rgba(24,64,125,0.09), 0 1.5px 4px rgba(255,174,0,0.03);
  padding: 24px 20px;
  min-width: 230px;
  flex: 1 1 250px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(24,64,125,0.21), 0 3px 8px rgba(255,174,0,0.08);
  transform: translateY(-6px) scale(1.025);
}

.feature-grid, .values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature, .value {
  background: #fff;
  padding: 28px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(24,64,125,0.10);
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
  z-index: 1;
}
.feature img, .value img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}
.feature:hover, .value:hover {
  box-shadow: 0 4px 24px rgba(255,174,0,0.14);
  transform: scale(1.03);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 210px;
}

.card-container, .reviews-grid, .startup-cards,.trend-cards {
  gap: 24px;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
  }
}
@media (max-width: 950px) {
  .container {
    max-width: 95vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .card, .feature, .value {
    min-width: 160px;
  }
}
@media (max-width: 768px) {
  .header-flex, .footer-flex {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .feature-grid, .reviews-grid, .startup-cards, .trend-cards {
    flex-direction: column;
    gap: 20px;
  }
  .values-grid {
    flex-direction: column;
  }
  .content-wrapper, .section {
    padding: 24px 6px;
  }
  .card, .feature, .value {
    min-width: 0;
    padding: 18px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.42rem;
  }
  h2 {
    font-size: 1.1rem;
  }
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(24,64,125,.07);
  position: sticky;
  top: 0;
  z-index: 25;
}
header .container {
  padding-top: 14px;
  padding-bottom: 14px;
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav .cta {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #ffae00;
  color: #18407d;
  border-radius: 22px;
  padding: 9px 28px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-left: 7px;
  box-shadow: 0 2px 8px rgba(255,174,0,0.08);
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  border: none;
}
header nav .cta:hover,
.cta:focus {
  background: #18407d;
  color: #ffae00;
  box-shadow: 0 4px 16px rgba(24,64,125,0.13);
}
header nav a {
  padding: 4px 8px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  transition: color 0.17s, background 0.17s;
  color: #18407d;
}
header nav a:not(.cta):hover,
header nav a:not(.cta):focus {
  background: #ebecf0;
  color: #ffae00;
}

/* Hamburger menu button (mobile-menu-toggle) */
.mobile-menu-toggle {
  display: none;
  background: #ffae00;
  border: none;
  color: #18407d;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  z-index: 40;
  box-shadow: 0 1px 8px rgba(255,174,0,0.11);
  transition: background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #18407d;
  color: #ffae00;
}
/* Mobile nav responsiveness */
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35,44,70, 0.97);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.28s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: #ffae00;
  color: #18407d;
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin: 22px 0 18px 18px;
  cursor: pointer;
  align-self: flex-end;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:focus,.mobile-menu-close:hover {
  background: #18407d;
  color: #ffae00;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 40px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 10px 0;
  border-radius: 6px;
  width: 90%;
  display: block;
  transition: background 0.11s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #ffae00;
  color: #18407d;
}

/* MAIN STYLES */
main {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 40px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 36px;
    padding: 18px 5px;
  }
}

/* BUTTONS & CTA */
.cta, button, input[type="submit"], .cookie-banner-button {
  cursor: pointer;
  border: none;
  border-radius: 26px;
  background: #ffae00;
  color: #18407d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 30px;
  font-size: 1.07rem;
  box-shadow: 0 2px 6px rgba(255,174,0,0.10);
  transition: background 0.16s, color 0.16s, transform 0.17s;
  margin-top: 14px;
  display: inline-block;
}
.cta:hover, button:hover, input[type="submit"]:hover, .cookie-banner-button:hover {
  background: #18407d;
  color: #ffae00;
  transform: translateY(-2px) scale(1.03);
}
.cta:active, button:active {
  transform: scale(0.97);
}


/* CARDS */
.review-card, .startup-card, .guide {
  background: #fff;
  padding: 22px 18px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24, 64, 125, 0.09);
  flex: 1 1 210px;
  transition: box-shadow 0.2s, transform 0.16s;
  margin-bottom: 20px;
}
.review-card:hover, .startup-card:hover, .guide:hover {
  box-shadow: 0 4px 24px rgba(255,174,0,0.12);
  transform: scale(1.025);
}

.app-category, .sector-tag {
  display: inline-block;
  background: #18407d;
  color: #ffae00;
  font-size: 0.91rem;
  border-radius: 14px;
  padding: 3px 15px 4px 15px;
  margin-top: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(29,49,81,0.13);
  border-left: 8px solid #ffae00;
  font-size: 1rem;
  color: #232c46;
  min-width: 220px;
  max-width: 420px;
  transition: box-shadow 0.2s, transform 0.17s;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1b2636;
  font-size: 1.07rem;
  font-weight: 600;
  line-height: 1.46;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #18407d;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px rgba(255,174,0,0.17);
  transform: translateY(-3px) scale(1.03);
}

/* Comparison table */
.comparison-table table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(24,64,125,.08);
}
.comparison-table th, .comparison-table td {
  padding: 12px 9px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1rem;
}
.comparison-table th {
  background: #18407d;
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Newsletter Benefits */
.newsletter-benefits ul {
  margin-left: 0;
  margin-bottom: 18px;
  list-style: disc inside;
  color: #18407d;
}

/* Faq List, Best-Of List, Growth Highlights */
.faq-list, .best-of-list, .growth-highlights, .resources-list {
  margin-bottom: 0;
  list-style: disc inside;
  color: #1b2636;
  font-size: 1rem;
}

/**** Artful UI & Unique Effects ****/
/* Artistic Section Accents */
section:not(.footer-flex):not(:last-child) {
  border-bottom: 2.5px dashed #ffae00;
  border-radius: 0 0 14px 14px;
  position: relative;
  overflow: visible;
}

section h2 {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: linear-gradient(90deg, #ffae00 42%, #18407d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.52rem;
}

/**** Artistic Hover Underline on Links ****/
.trending-posts a, .call-for-participation a, .founder-guides a, .resources-list a {
  position: relative;
  color: #18407d;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.16s;
}
.trending-posts a::after, .call-for-participation a::after, .resources-list a::after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background: #ffae00;
  transition: width 0.23s cubic-bezier(.35,1.3,.68,1.06);
  border-radius: 1px;
  margin-top: 2px;
}
.trending-posts a:hover::after, .call-for-participation a:hover::after, .resources-list a:hover::after {
  width: 100%;
}

/* Vibrant Artistic Icons on Accent Backgrounds */
.feature img, .value img {
  background: #18407d;
  border-radius: 30% 70% 44% 56% / 46% 42% 58% 54%;
  padding: 8px;
  box-shadow: 0 1px 8px #ffae0035;
  border: 2px solid #ffae00;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Artistic blockquotes and highlights */
blockquote {
  margin-left: 0;
  border-left: 6px solid #ffae00;
  padding-left: 18px;
  color: #18407d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  font-weight: 600;
  background: #fbeeca;
  border-radius: 11px;
  margin-bottom: 18px;
  margin-top: 12px;
  font-size: 1.09rem;
}

.highlighted-reviews, .user-stories, .future-forecasts, .market-analysis, .quick-tips, .founder-guides {
  background: #fffbe8;
  border-left: 6px solid #ffae00;
  border-radius: 11px;
  padding: 18px 20px;
  margin-bottom: 18px;
  font-size: 1.03rem;
  box-shadow: 0 1px 6px rgba(255,174,0,0.05);
}
.trending-news {
  background: #e4ebfa;
  border-left: 6px solid #18407d;
  border-radius: 11px;
  padding: 14px 17px;
  font-size: 1.03rem;
  box-shadow: 0 1px 6px #18407d13;
  margin-bottom: 18px;
}


/**** Tables and Lists for Artistic Style */
.company-timeline {
  margin: 0 0 16px 0;
  padding: 0 0 0 16px;
  border-left: 4px solid #18407d;
}
.company-timeline li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
  padding-left: 3px;
  color: #1b2636;
}
.app-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin-top: 8px;
}
.app-categories li {
  background: #e4ebfa;
  border-radius: 12px;
  color: #18407d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 4px 18px;
}

/**** Artistic Badge for Star Ratings ****/
.stars {
  display: inline-block;
  font-size: 1.2rem;
  color: #ffae00;
  margin-bottom: 6px;
  letter-spacing: 2px;
  text-shadow: 0 1px 3px #18407d33;
}

/**** Confirmation + Info sections ****/
.confirmation {
  background: #e4ebfa;
  border-left: 8px solid #18407d;
  border-radius: 12px;
  padding: 32px 18px;
  color: #1b2636;
  margin-bottom: 10px;
  box-shadow: 0 2px 14px #18407d08;
}

/* FOOTER */
footer {
  background: #18407d;
  color: #fff;
  width: 100%;
  margin-top: 100px;
  font-family: 'Montserrat', Arial, sans-serif;
}
footer .container {
  padding: 24px 14px 22px 14px;
}
footer a {
  color: #fffbe8;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 12px;
}
footer nav {
  display: flex;
  gap: 15px;
  margin-bottom: 8px;
}
footer nav a:hover {
  color: #ffae00;
  text-decoration: underline dotted #ffae00 2px;
}
.footer-contact {
  font-size: 0.96rem;
  line-height: 1.72;
  color: #fffbe8;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  margin-right: 7px;
  vertical-align: middle;
}

/* CONTACT INFO block */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1rem;
}
.map-section {
  margin-bottom: 10px;
}
.direct-contact {
  color: #18407d;
  font-size: 0.98rem;
  margin-bottom: 10px;
}

/**************************************************/
/* COOKIE CONSENT BANNER & COOKIE MODAL */
/**************************************************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 16000;
  background: #fffbe8;
  color: #1b2636;
  box-shadow: 0 -4px 18px #18407d27;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 10px 18px 10px;
  gap: 16px;
  transition: transform 0.28s, opacity 0.20s;
  border-top: 3px solid #ffae00;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  max-width: 100vw;
}
.cookie-banner-content {
  max-width: 900px;
  text-align: center;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.cookie-banner-button {
  padding: 10px 20px;
  font-size: 1rem;
  margin: 0;
  background: #ffae00;
  color: #18407d;
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 1px 6px #ffae003a;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner-button:hover, .cookie-banner-button:focus {
  background: #18407d;
  color: #ffae00;
}
@media (max-width: 660px) {
  .cookie-banner {
    padding: 16px 3px;
  }
  .cookie-banner-content {
    font-size: 0.91rem;
  }
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 16500;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(24,64,125,0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #18407d;
  border-radius: 22px;
  max-width: 440px;
  width: 90vw;
  padding: 30px 18px 16px 18px;
  box-shadow: 0 6px 36px #18407d31;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal h3 {
  color: #18407d;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  margin-bottom: 6px;
}
.cookie-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cookie-toggle input[type=checkbox] {
  appearance: none;
  width: 32px;
  height: 18px;
  background: #e4ebfa;
  border-radius: 9px;
  border: 1px solid #ffae00;
  margin-right: 6px;
  outline: none;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-toggle input[type=checkbox]:checked {
  background: #ffae00;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: #18407d;
  border-radius: 50%;
  transition: transform 0.20s;
}
.cookie-toggle input[type=checkbox]:checked + .slider {
  transform: translateX(13px);
  background: #fff;
}
.cookie-modal .essential-expl {
  font-size: 0.97rem;
  color: #615f57;
  margin-bottom: 11px;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal-close {
  background: transparent;
  color: #18407d;
  font-size: 1.5rem;
  border: none;
  position: absolute;
  right: 14px;
  top: 12px;
  cursor: pointer;
}
.cookie-modal-close:focus,
.cookie-modal-close:hover {
  color: #ffae00;
}

/**************************************************/
/* ACCESSIBILITY FOCUSED OUTLINE */
/**************************************************/
a:focus, button:focus, .cookie-banner-button:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus {
  outline: 3px solid #ffae00;
  outline-offset: 1.5px;
}

/**************************************************/
/* CUSTOM SCROLLBAR */
/**************************************************/
::-webkit-scrollbar {
  width: 10px;
  background: #e4ebfa;
}
::-webkit-scrollbar-thumb {
  background: #18407d;
  border-radius: 6px;
}

/**************************************************/
/* UNIQUE DECORATIVE ELEMENTS (Art splashes, etc) */
/**************************************************/
/* Decorative color splash for hero sections */
section:first-child .container {
  position: relative;
}
section:first-child .container::before {
  content: "";
  position: absolute;
  top: -44px;
  left: -36px;
  width: 130px;
  height: 130px;
  background: #ffae00;
  border-radius: 45% 62% 68% 44%;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
}
section:first-child .container::after {
  content: "";
  position: absolute;
  bottom: -32px;
  right: -48px;
  width: 90px;
  height: 90px;
  background: #18407d;
  opacity: 0.13;
  border-radius: 52% 38% 56% 44%;
  z-index: 0;
  pointer-events: none;
}

/* Artistic wavy divider between sections (uses :after as border only) */
section:not(:last-child)::after {
  content: '';
  display: block;
  width: 100%;
  height: 22px;
  background: url('data:image/svg+xml;utf8,<svg width="320" height="22" xmlns="http://www.w3.org/2000/svg"><path d="M0 16 Q80 31 160 12 Q240 -7 320 16 L320 22 L0 22 Z" fill="%23FFAE00" opacity="0.09"/></svg>');
  background-repeat: repeat-x;
  background-size: auto 22px;
}
@media (max-width: 820px) {
  section:first-child .container::before, section:first-child .container::after {
    display: none;
  }
}

/**************************************************/
/* MISC. */
/**************************************************/
::-moz-selection { background: #ffae00; color: #18407d; }
::selection { background: #ffae00; color: #18407d; }

/* Hide content overflow on main wrappers */
.main-content, .content-wrapper {
  overflow-x: auto;
}

/* Ensure artful and readable typography throughout */
body, p, li, span, ul, ol, label, input, table, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1b2636;
  line-height: 1.55;
}

/* Ensure no overlap in flex layouts: extra responsive fudge */
.card, .feature, .review-card, .startup-card, .guide {
  min-width: 180px;
  margin-bottom: 20px;
}

/* Prevent overflow of mobile nav */
.mobile-menu {
  overscroll-behavior: contain;
}

/* Z-INDEX MASTERING */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, .cookie-modal {
  z-index: 1000;
}

/* Hide duplicated headlines visually (assistive only, if needed) */
.visually-hidden {position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap;}
