/* == CSS RESET & NORMALISATION == */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #21233b;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #21233b;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #f4c542;
}
ul, ol {
  margin: 0 0 1.5rem 1.5rem;
}
li {
  margin-bottom: 0.6em;
}
strong, b {
  font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  color: #21233b;
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.15rem; margin-bottom: 10px; }
p, .secondary-cta-text, .footer-contact div { font-size: 1rem; margin-bottom: 16px; color: #333; }
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* == HEADER/NAVIGATION == */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(33,35,59,0.03);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.logo img {
  height: 42px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  color: #21233b;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  line-height: 1.4;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f9f9fa;
  color: #f4c542;
}
.btn-primary {
  padding: 12px 28px;
  background: #21233b;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(33,35,59,0.08);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  text-align: center;
  display: inline-block;
  letter-spacing: 1px;
  margin-left: 12px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #f4c542;
  color: #21233b;
  box-shadow: 0 2px 16px rgba(244,197,66,0.16);
}
.btn-secondary {
  padding: 11px 22px;
  background: #f9f9fa;
  color: #21233b;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #e2e2e7;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s;
  margin-top: 12px;
  text-align: center;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #f4c542;
  color: #21233b;
  border: 1px solid #f4c542;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: transparent;
  border: none;
  color: #21233b;
  cursor: pointer;
  margin-left: 10px;
  transition: color 0.15s;
  z-index: 201;
}
.mobile-menu-toggle:active {
  color: #f4c542;
}

/* == MOBILE MENU == */
.mobile-menu {
  position: fixed;
  z-index: 400;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 3px 24px rgba(33,35,59,0.09);
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.7,.3,.24,1);
  display: flex;
  flex-direction: column;
  padding: 0 32px;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 24px;
  margin-bottom: 6px;
  align-self: flex-end;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #21233b;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #f4c542;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 12px 0;
  color: #21233b;
  border-bottom: 1px solid #f9f9fa;
  transition: color 0.18s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #f4c542;
}
@media (max-width: 1024px) {
  .main-nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* == MAIN LAYOUTS & SPACING == */
main {
  flex: 1 1 auto;
  margin-top: 0px;
}
.section, .hero, .features, .about-preview, .about-mission, .about-team, .about-community, .blog-preview, .blog-list, .featured-posts, .newsletter-signup, .resource-list, .faq, .community-tips, .events-list, .event-signup, .past-events, .thank-you-section, .policy, .gdpr-policy, .cookies-policy, .terms, .features-tools, .testimonials, .features-cta, .contact-main, .contact-cta {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* == FLEXBOX LAYOUTS == */
.feature-grid, .team-grid, .recent-posts-list, .blog-summary-list, .featured-blog-teasers, .resource-teasers, .faq-list, .user-tips-highlight, .event-calendar, .featured-events, .past-events-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.feature-item, .team-member, .post-preview, .blog-summary, .teaser-card, .resource-teaser, .faq-item, .event-item, .testimonial-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 2px 8px rgba(33,35,59,0.06);
  border-radius: 16px;
  padding: 24px 20px;
  min-width: 0;
  margin-bottom: 20px;
  gap: 15px;
}
.feature-item img, .team-member img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}

/* == HERO == */
.hero {
  background: #f9f9fa;
  margin-bottom: 60px;
  padding: 60px 20px 60px 20px;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #21233b;
  letter-spacing: -1px;
}
.hero .btn-primary {
  margin-top: 18px;
}

/* == FEATURES == */
.features {
  background: #fff;
}
.feature-grid {
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.feature-item {
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 300px;
  background: #f9f9fa;
  box-shadow: 0 2px 10px rgba(33,35,59,0.04);
  border-radius: 14px;
  padding: 28px 20px 24px 20px;
  gap: 13px;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.19s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 24px rgba(33,35,59,0.10);
  transform: translateY(-2px) scale(1.02);
}
.feature-item img {
  margin-bottom: 0px;
}
.feature-item h3 {
  font-size: 1.12rem;
  color: #21233b;
  margin-bottom: 6px;
}

/* == CARD CONTAINERS & REUSABLE BLOCKS == */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(33,35,59,0.04);
  margin-bottom: 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

/* == BLOG/PREVIEW SECTIONS == */
.blog-preview .recent-posts-list,
.blog-summary-list {
  gap: 24px;
  flex-wrap: wrap;
}
.post-preview {
  flex: 1 1 200px;
  min-width: 220px;
  background: #fff;
  padding: 22px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(33,35,59,0.05);
  gap: 14px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.post-preview.featured {
  border-left: 4px solid #f4c542;
  background: #fffbef;
}
.post-preview:hover, .post-preview:focus-within {
  box-shadow: 0 4px 16px rgba(244,197,66,0.12);
  transform: translateY(-2px);
}
.post-preview h3 {
  margin-bottom: 6px;
}

.blog-summary {
  flex: 1 1 250px;
  background: #f9f9fa;
  border-radius: 10px;
  padding: 26px 20px;
  box-shadow: 0 2px 8px rgba(33,35,59,0.04);
  gap: 12px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.blog-summary:hover, .blog-summary:focus-within {
  box-shadow: 0 6px 20px rgba(33,35,59,0.13);
  transform: translateY(-3px) scale(1.01);
}
.blog-summary h2 a {
  color: #21233b;
  font-size: 1.25rem;
  font-family: 'Oswald', Arial, sans-serif;
}
.blog-summary h2 a:hover, .blog-summary h2 a:focus {
  color: #f4c542;
}

.pagination {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 7px 14px;
  border-radius: 7px;
  background: #f9f9fa;
  color: #21233b;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  min-width: 37px;
  display: inline-block;
}
.pagination a.active {
  background: #f4c542;
  color: #21233b;
  font-weight: bold;
}
.pagination a:hover, .pagination a:focus {
  background: #21233b;
  color: #fff;
}

/* == NEWSLETTER SIGNUP == */
.signup-form {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.signup-form input[type="email"] {
  padding: 12px 18px;
  border: 1px solid #e0e0e6;
  border-radius: 24px;
  font-size: 1rem;
  min-width: 220px;
  background: #fff;
  color: #21233b;
  outline: none;
  transition: border 0.17s;
}
.signup-form input[type="email"]:focus {
  border: 1.5px solid #f4c542;
}
.signup-form button {
  padding: 11px 28px;
  border-radius: 24px;
  background: #f4c542;
  color: #21233b;
  font-family: 'Oswald', Arial, sans-serif;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.14s, color 0.14s;
}
.signup-form button:hover, .signup-form button:focus {
  background: #21233b;
  color: #fff;
}

/* == TESTIMONIALS & REVIEW/QUOTE SECTIONS == */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(33,35,59,0.10);
  color: #21233b;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 230px;
  padding: 20px 20px 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 24px rgba(244,197,66,0.19);
  transform: scale(1.01) translateY(-2px);
}
.testimonial-card p {
  font-size: 1.12rem;
  color: #21233b;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.95rem;
  color: #555;
}

.review-summary {
  margin-top: 16px;
}
.review-summary ul {
  margin-left: 0;
  padding-left: 20px;
  color: #21233b;
  font-size: 1rem;
}
.review-summary li {
  margin-bottom: 10px;
  font-size: 1rem;
}

blockquote {
  border-left: 4px solid #f4c542;
  padding-left: 20px;
  margin: 12px 0 18px 0;
  background: #f9f9fa;
  border-radius: 8px;
  font-style: italic;
  color: #21233b;
  font-size: 1.08rem;
}
blockquote span {
  font-style: normal;
  font-weight: 400;
  margin-left: 10px;
  color: #888;
}

/* == FAQ COMPONENT == */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-item {
  flex: 1 1 230px;
  background: #f9f9fa;
  border-radius: 12px;
  padding: 18px 18px 14px 22px;
  min-width: 210px;
  box-shadow: 0 1px 6px rgba(33,35,59,0.06);
}
.faq-item h3 {
  font-size: 1.08rem;
  margin-bottom: 7px;
}

/* == RESOURCE/GUIDE SECTIONS == */
.resource-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.resource-teaser {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(33,35,59,0.07);
  flex: 1 1 240px;
  min-width: 200px;
  padding: 24px 18px;
  gap: 13px;
  transition: box-shadow 0.14s, transform 0.14s;
}
.resource-teaser:hover, .resource-teaser:focus-within {
  box-shadow: 0 7px 22px rgba(244,197,66,0.10);
  transform: scale(1.01);
}
.resource-teaser h3 {
  font-size: 1.12rem;
  color: #21233b;
}

.resource-categories, .category-filters {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  font-size: 1em;
}
.resource-categories a, .category-filters a {
  padding: 5px 14px;
  background: #f9f9fa;
  border-radius: 7px;
  font-size: 1em;
  color: #21233b;
  font-family: 'Oswald', Arial, sans-serif;
  border: none;
  transition: background 0.18s, color 0.18s;
}
.resource-categories a.active, .category-filters a.active {
  background: #f4c542;
  color: #21233b;
  font-weight: bold;
}
.resource-categories a:hover, .resource-categories a:focus, .category-filters a:hover, .category-filters a:focus {
  background: #21233b;
  color: #fff;
}

/* == CONTACT/INFO SECTIONS == */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.03rem;
  color: #21233b;
  margin-bottom: 18px;
}
.contact-details img {
  margin-right: 7px;
  vertical-align: middle;
  width: 24px;
  height: 24px;
}
.map-location strong {
  color: #21233b;
}

/* == FOOTER == */
footer {
  background: #f9f9fa;
  border-top: 1px solid #edecef;
  padding: 30px 0;
  margin-top: 42px;
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo img {
  height: 36px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #21233b;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1em;
  transition: color 0.14s;
  letter-spacing: 0.2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #f4c542;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.98em;
  color: #21233b;
  margin-top: 5px;
}
.footer-contact img {
  margin-right: 7px;
  vertical-align: middle;
  width: 20px;
  height: 20px;
}

/* == COOKIE CONSENT BANNER AND MODAL == */
.cookie-banner {
  position: fixed;
  z-index: 1200;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 16px rgba(33,35,59,0.13);
  padding: 28px 10vw 24px 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #ededed;
  animation: cookieBannerAppear 0.7s cubic-bezier(.6,0,.21,1);
}
@keyframes cookieBannerAppear {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #21233b;
  font-size: 1.01em;
  text-align: center;
  margin-bottom: 0;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.cookie-btn, .cookie-settings-btn {
  background: #f9f9fa;
  color: #21233b;
  padding: 8px 22px;
  border: 1px solid #e3e3e9;
  border-radius: 21px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1em;
  cursor: pointer;
  margin: 0;
  transition: background 0.14s, color 0.14s, border 0.14s;
}
.cookie-btn.accept {
  background: #f4c542;
  color: #21233b;
  border: 1px solid #f4c542;
}
.cookie-btn.reject {
  background: #fff;
  color: #21233b;
  border: 1px solid #d2d2d6;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #21233b;
  color: #fff;
  border: 1px solid #21233b;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #f4c542;
  color: #21233b;
  border: 1px solid #f4c542;
}
.cookie-settings-btn {
  background: #fff;
  color: #21233b;
  border: 1px solid #f4c542;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #f4c542;
  color: #21233b;
}

/* Modal overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1300;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(33,35,59,0.23);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(.8,0,.16,1);
}
.cookie-modal-overlay.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  min-width: 340px;
  max-width: 96vw;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -6px 32px rgba(33,35,59,0.09);
  padding: 32px 26px 26px 26px;
  margin-bottom: 0px;
  position: relative;
  animation: cookieModalSlideIn 0.4s cubic-bezier(.7,.2,.23,1);
}
@keyframes cookieModalSlideIn {
  0% { transform: translateY(48px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #21233b;
  cursor: pointer;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  color: #f4c542;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1em;
  color: #21233b;
  font-weight: bold;
}
.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #f4c542;
  cursor: pointer;
  margin-right: 5px;
}
.cookie-category input[type="checkbox"]:disabled {
  accent-color: #d1d1d1;
  cursor: not-allowed;
}
.cookie-category span {
  font-size: 0.98em;
  color: #888;
}

.cookie-modal-actions {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-modal-actions .cookie-btn {
  padding-left: 26px;
  padding-right: 26px;
}

/* == EVENTS SECTION == */
.event-calendar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.event-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(33,35,59,0.07);
  padding: 20px 16px 18px 18px;
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 20px;
  gap: 11px;
  transition: box-shadow 0.13s, transform 0.13s;
}
.event-item:hover, .event-item:focus-within {
  box-shadow: 0 8px 28px rgba(244,197,66,0.10);
  transform: scale(1.011);
}
.featured-events {
  background: #f9f9fa;
  border-radius: 16px;
  padding: 18px 14px 16px 14px;
  margin-top: 14px;
  gap: 9px;
  display: flex;
  flex-direction: column;
}
.past-events-summary {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 13px;
  font-size: 1em;
}

/* == UTILITY/RESPONSIVE == */
@media (max-width: 1024px) {
  .container {
    max-width: 100vw;
    padding: 0 12px;
  }
  .footer-nav {
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer-contact, .footer-logo {
    margin-top: 13px;
  }
}
@media (max-width: 820px) {
  .content-wrapper {
    max-width: 100%;
    padding: 0;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.08rem; }
  .section, .hero, .features, .about-preview, .about-mission, .about-team, .about-community,
    .blog-preview, .blog-list, .featured-posts, .newsletter-signup, .resource-list, .faq, .community-tips, .events-list, .event-signup, .past-events, .thank-you-section, .policy, .gdpr-policy, .cookies-policy, .terms, .features-tools, .testimonials, .features-cta, .contact-main, .contact-cta {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
  .container {
    padding: 0 6px;
  }
  .feature-grid, .team-grid, .recent-posts-list, .blog-summary-list, .featured-blog-teasers, .resource-teasers, .faq-list, .user-tips-highlight, .event-calendar {
    gap: 12px;
  }
  .feature-item,
  .team-member,
  .post-preview,
  .blog-summary,
  .teaser-card,
  .resource-teaser,
  .faq-item,
  .event-item,
  .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 16px 10px;
  }
  .footer-logo img {
    height: 28px;
  }
}
@media (max-width: 600px) {
  .content-wrapper {
    gap: 16px;
    padding: 0;
  }
  .footer-contact {
    font-size: 0.90em;
    gap: 2px;
  }
  .footer-nav {
    font-size: 0.93em;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 2px;
  }
  .footer-contact, .footer-logo {
    margin-top: 6px;
  }
  .cookie-modal {
    min-width: 0;
    padding: 16px 7px 15px 7px;
  }
}

/* == MINIMAL MICRO-INTERACTIONS & FOCUS == */
.btn-primary:focus, .btn-secondary:focus,
input:focus, .main-nav a:focus, .mobile-nav a:focus
{
  outline: 2px solid #f4c542;
  outline-offset: 1.5px;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

::-webkit-input-placeholder { color: #bbb; }
::-moz-placeholder { color: #bbb; }
:-ms-input-placeholder { color: #bbb; }
::placeholder { color: #bbb; }

/* == BRAND FONTS == */
@font-face { font-family: 'Oswald'; font-style: normal; font-weight: 400; src: local('Oswald'), local('Oswald-Regular'); }
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: local('Roboto'), local('Roboto-Regular'); }
