/* ========================================================== */
/*   CSS Reset & Normalization                              */
/* ========================================================== */
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,
main, 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 {
  font-size: 16px;
  height: 100%;
}
body {
  min-height: 100%;
  background-color: #F7F8FC;
  line-height: 1.6;
  color: #223147;
  font-family: 'Open Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
  margin: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  transition: color 0.2s;
}
blockquote {
  margin: 0 0 1em 0;
  padding-left: 24px;
  border-left: 4px solid #D8E4FC;
}
cite {
  display: block;
  font-style: normal;
  font-size: 0.95em;
  color: #6F86B7;
  margin-top: 8px;
}

/* ========================================== */
/*   Brand Colors in soft pastel version      */
/* ========================================== */
:root {
  --primary: #7FA8F8; /* softened #2951A3 */
  --primary-bold: #2951A3;
  --secondary: #BAC6DF; /* softened #555E79 */
  --secondary-bold: #555E79;
  --accent: #FFECA8; /* softened #FFD147 */
  --accent-bold: #FFD147;
  --bg: #F7F8FC;
  --panel: #FFFDF6;
  --card: #F6F7FD;
  --shadow: 0 4px 24px rgba(125, 155, 206, 0.13);
  --text: #223147;
  --text-light: #6F86B7;
  --focus: #8EE0D9;
}

/* ========================================== */
/*   Typography                              */
/* ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--primary-bold);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.16;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.375rem; /* 38px */
  margin-bottom: 18px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 15px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, li, blockquote, cite {
  font-size: 1rem;
  color: var(--text);
}
p {
  margin-bottom: 12px;
}
strong {
  font-weight: 600;
}
.text-section h2, .text-section h3 {
  color: var(--secondary-bold);
  margin-top: 24px;
}
small {
  font-size: 0.85em;
  color: var(--text-light);
}

/* ========================================== */
/*   Layout Containers                       */
/* ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--panel);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.cta-section {
  background: linear-gradient(120deg, #F5F6FC 60%, #FFFDF6 100%);
  padding: 40px 0;
  border-radius: 24px 24px 0 0;
  margin-bottom: 0;
}

/* ========================================== */
/*   Header & Navigation                     */
/* ========================================== */
header {
  position: relative;
  width: 100%;
  background: #FFFDF6;
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 1px 10px 0 rgba(125, 155, 206, 0.06);
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
.logo-link {
  display: flex;
  align-items: center;
  height: 60px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
  color: var(--secondary-bold);
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--primary-bold);
  border-bottom: 2.5px solid var(--primary);
}
.cta-button.primary {
  font-family: 'Montserrat', sans-serif;
  background: var(--primary);
  color: #fff;
  border-radius: 22px;
  font-weight: 700;
  padding: 10px 26px;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px 0 rgba(123, 155, 193, 0.11);
  margin-left: 14px;
  transition: background 0.2s, transform 0.13s, box-shadow 0.13s;
  cursor: pointer;
  border: none;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: var(--primary-bold);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px 0 rgba(123, 155, 193, 0.18);
}
.cta-button.secondary {
  font-family: 'Montserrat', sans-serif;
  background: var(--accent);
  color: var(--primary-bold);
  border-radius: 20px;
  font-weight: 600;
  padding: 8px 20px;
  font-size: 1rem;
  margin-top: 12px;
  margin-bottom: 6px;
  border: none;
  box-shadow: 0 1px 5px 0 rgba(181, 176, 125, 0.11);
  transition: background 0.18s, transform 0.12s;
  cursor: pointer;
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: var(--accent-bold);
  color: #956A0B;
  transform: translateY(-1.5px) scale(1.025);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--primary-bold);
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
  margin-left: 8px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #F7F8FC;
  box-shadow: 0 4px 36px rgba(111,166,223,.16);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.78,.01,.26,.99);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 36px;
}
.mobile-menu.open {
  transform: translateX(0%);
  box-shadow: 0 0 0 9999px rgba(68,86,132,0.10);
  transition: transform 0.29s cubic-bezier(.45,0,.90,1.07);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 22px;
  right: 26px;
  color: var(--primary-bold);
  cursor: pointer;
  border-radius: 4px;
  padding: 2px 6px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
}
.mobile-nav {
  margin-top: 48px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 34px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: var(--secondary-bold);
  font-weight: 600;
  padding: 8px 0;
  border-radius: 8px;
  transition: color 0.16s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary-bold);
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========================================== */
/*   Hero Section                            */
/* ========================================== */
.hero {
  background: linear-gradient(110deg, #f5f8fd 70%, #eaf4ff 100%);
  padding: 40px 0 30px 0;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  margin-bottom: 34px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 14px;
}
.hero h1 {
  color: var(--primary-bold);
}
.hero p {
  color: var(--secondary-bold);
  font-size: 1.125rem;
  line-height: 1.6;
}


/* ========================================== */
/*   Features (use feature-list, resource-list)*/
/* ========================================== */
.feature-list,
.resource-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  width: 100%;
  margin-top: 18px;
  justify-content: flex-start;
}
.feature-list li,
.resource-list li {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 270px;
  background: var(--card);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 2px 12px rgba(133, 155, 175, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.18s;
}
.feature-list li:hover, .feature-list li:focus,
.resource-list li:hover, .resource-list li:focus {
  box-shadow: 0 8px 26px rgba(133, 155, 175, 0.16);
  transform: translateY(-3px) scale(1.015);
}
.feature-list img, .resource-list img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
  border-radius: 8px;
  background: var(--accent);
  padding: 4px;
}
.feature-list strong, .resource-list strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--primary-bold);
  font-weight: 700;
  margin-bottom: 2px;
}
.feature-list p, .resource-list p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ========================================== */
/*   Cards & Card Containers                  */
/* ========================================== */
.card-container, .service-cards, .testimonial-cards, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 16px;
}
.card, .service-card, .team-member {
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 3px 18px rgba(133,155,175,0.10);
  margin-bottom: 20px;
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 350px;
  transition: box-shadow 0.16s, transform 0.15s;
}
.card:hover, .service-card:hover, .team-member:hover {
  box-shadow: 0 8px 36px rgba(133,155,175,0.18);
  transform: translateY(-3px) scale(1.02);
}
.service-card img, .team-member img {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: var(--accent);
  padding: 6px;
}
.service-card .price {
  font-weight: 600;
  color: var(--primary-bold);
  font-size: 1.08em;
  margin: 12px 0 0 0;
}


/* ========================================== */
/*   Team Grid                               */
/* ========================================== */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.team-member {
  max-width: 320px;
  min-width: 220px;
  flex: 1 1 220px;
  background: var(--panel);
}


/* ========================================== */
/*   Testimonial Cards                       */
/* ========================================== */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 22px;
  padding: 20px 24px;
  box-shadow: 0 4px 32px rgba(172,194,232,0.13);
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 400px;
  flex: 1 1 230px;
  border: 2px solid #EAF2FF;
  transition: box-shadow 0.18s, border 0.16s;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 6px 48px rgba(121,158,204,0.19);
  border: 2.5px solid var(--accent-bold);
  outline: none;
}
.testimonial-card blockquote {
  color: var(--secondary-bold);
  font-size: 1.08rem;
  font-style: italic;
  background: #F7F8FC;
  border-left: 3px solid var(--primary);
  padding: 6px 10px 6px 17px;
  margin-bottom: 8px;
}
.testimonial-card cite {
  font-size: 1rem;
  font-style: normal;
  color: var(--primary-bold);
  margin-left: 6px;
}


/* ========================================== */
/*   Feature Item (used for improved spacing) */
/* ========================================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* ========================================== */
/*   Content Grids (comparison table, FAQ)    */
/* ========================================== */
.content-grid, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.faq-list {
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: var(--card);
  border-radius: 14px;
  padding: 18px 16px 14px 18px;
  margin-bottom: 8px;
  box-shadow: 0 1px 5px rgba(160,185,230,0.11);
  transition: box-shadow 0.13s;
}
.faq-item h3 {
  font-size: 1.06em;
  margin-bottom: 7px;
  color: var(--primary-bold);
}
.faq-item p {
  color: var(--secondary-bold);
}
.faq-item a {
  color: var(--primary-bold);
  text-decoration: underline;
  transition: color 0.14s;
}
.faq-item a:hover { color: var(--accent-bold); }

/* ========================================== */
/*   Text-Image Section (about pages, map)    */
/* ========================================== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ========================================== */
/*   Comparison Table                        */
/* ========================================== */
.comparison-table {
  width: 100%;
  background: var(--panel);
  border-radius: 14px;
  margin-top: 18px;
  box-shadow: 0 2px 12px rgba(177, 192, 226, 0.10);
  border-collapse: separate;
  border-spacing: 0;
  overflow-x: auto;
  font-size: 1rem;
}
.comparison-table th, .comparison-table td {
  padding: 13px 16px;
  text-align: left;
  color: var(--text);
  border-bottom: 1px solid #EAF2FF;
}
.comparison-table th {
  background: #EAF2FF;
  color: var(--primary-bold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05em;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

/* ========================================== */
/*   Contact & Map Block                     */
/* ========================================== */
.contact-block {
  background: var(--card);
  border-radius: 14px;
  box-shadow: 0 1px 5px rgba(130,150,198,0.09);
  padding: 20px 18px 14px 18px;
  margin-bottom: 20px;
}
.map-placeholder {
  background: #EAF2FF;
  border-radius: 18px;
  padding: 20px 18px;
  text-align: center;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* ========================================== */
/*   Footer                                  */
/* ========================================== */
footer {
  background: #F7F8FC;
  border-top: 3px solid var(--accent);
  width: 100%;
  padding: 36px 0 18px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 140px;
}
.footer-branding {
  min-width: 210px;
  max-width: 270px;
}
.footer-main-nav,
.footer-info-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 160px;
}
.footer-main-nav h4,
.footer-info-nav h4,
.footer-social h4 {
  color: var(--primary-bold);
  font-size: 1.05em;
  font-weight: 700;
  margin-bottom: 7px;
}
.footer-main-nav a, .footer-info-nav a {
  color: var(--secondary-bold);
  font-size: 1em;
  margin-bottom: 3px;
  transition: color 0.12s;
}
.footer-main-nav a:hover, .footer-info-nav a:hover {
  color: var(--primary-bold);
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 120px;
  align-items: flex-start;
}
.footer-social a {
  display: inline-block;
  margin-right: 8px;
  padding: 3px;
  border-radius: 6px;
  transition: background 0.14s;
}
.footer-social a:hover {
  background: var(--accent);
}
footer img {
  max-width: 42px;
  border-radius: 8px;
}
footer p, footer a {
  font-size: 0.97em;
}
@media (max-width: 930px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer-branding, .footer-main-nav, .footer-info-nav, .footer-social {
    min-width: unset;
    max-width: unset;
  }
}

/* ========================================== */
/*   Cookie Consent Banner, Modal             */
/* ========================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fffdf6;
  color: var(--primary-bold);
  box-shadow: 0 -4px 44px rgba(151, 167, 214, 0.16);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 19px 30px 17px 30px;
  z-index: 99999;
  border-top: 2px solid var(--accent-bold);
  animation: cookie-slidein 0.4s cubic-bezier(0.32,0,0.41,.94);
}
@keyframes cookie-slidein {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p { max-width: 550px; line-height: 1.42; }
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
}
.cookie-banner button {
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  border-radius: 18px;
  padding: 7px 15px;
  border: none;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  transition: background 0.16s, color 0.14s, transform 0.11s;
  box-shadow: 0 1px 7px rgba(146,163,222,0.11);
}
.cookie-banner .cookie-reject {
  background: var(--secondary);
  color: var(--primary-bold);
}
.cookie-banner .cookie-settings {
  background: var(--accent-bold);
  color: var(--primary-bold);
}
.cookie-banner button:hover {
  background: var(--primary-bold);
  transform: scale(1.03);
  color: #fff;
}
.cookie-banner .cookie-settings:hover {
  background: var(--accent);
}
.cookie-banner .cookie-reject:hover {
  background: var(--secondary-bold);
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(79,103,154,0.21);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.29s;
}
.cookie-modal {
  background: #FFFDF6;
  border-radius: 22px;
  box-shadow: 0 7px 48px rgba(100,130,184,0.21);
  padding: 36px 38px 24px 38px;
  min-width: 315px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeinUp 0.24s cubic-bezier(.53,.01,.37,1.04);
}
@keyframes fadeinUp {
 from { transform: translateY(65px); opacity: 0; }
 to { transform: translateY(0); opacity: 1; } 
}
.cookie-modal h2 {
  font-size: 1.31em;
  color: var(--primary-bold);
  margin-bottom: 0.5em;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05em;
  color: var(--secondary-bold);
  margin-bottom: 10px;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--primary);
  width: 1.15em; height: 1.15em;
  border-radius: 6px;
  margin-right: 4px;
}
.cookie-modal .cookie-list {
  background: var(--panel);
  padding: 14px 13px 7px 13px;
  border-radius: 9px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 11px;
  justify-content: flex-end;
}
.cookie-modal .cookie-actions button {
  background: var(--primary);
  color: #fff;
}
.cookie-modal .cookie-actions button.cookie-cancel {
  background: var(--secondary);
  color: var(--primary-bold);
}
.cookie-modal .cookie-actions button:hover {
  background: var(--primary-bold);
}
/* Accessibility: hide overlay when closed */
.cookie-banner[aria-hidden="true"], .cookie-modal-overlay[aria-hidden="true"] {
  display: none !important;
}

/* ========================================== */
/*   Thank You Section                       */
/* ========================================== */
.thank-you-section {
  margin-top: 44px;
  margin-bottom: 70px;
  background: var(--panel);
  border-radius: 24px;
  box-shadow: 0 4px 30px rgba(146,162,197,0.10);
  padding: 44px 0;
}
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
}

/* ========================================== */
/*   Spacing & Structure Patterns (mandatory) */
/* ========================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .service-cards, .testimonial-cards, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-card, .team-member {
  margin-bottom: 20px;
  position: relative;
}
.content-grid, .faq-list {
  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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========================================== */
/*   Responsive/Mobile Layout Adjustments     */
/* ========================================== */
@media (max-width: 800px) {
  .feature-list, .resource-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .card-container, .service-cards, .testimonial-cards, .team-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
@media (max-width: 600px) {
  .hero, .cta-section, .section {
    padding: 26px 3vw;
    border-radius: 17px;
  }
  .thank-you-section {
    padding: 36px 3vw;
    border-radius: 18px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 16px 5vw 14px 5vw;
  }
  header .container {
    min-height: 68px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-nav {
    gap: 11px;
    font-size: 0.95rem;
  }
}

/* ========================================== */
/*   Micro-interactions & Focus States        */
/* ========================================== */
button:focus, .cta-button:focus, a:focus {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
.card:focus, .service-card:focus, .team-member:focus, .testimonial-card:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ========================================== */
/*   Utility: Hide visually                  */
/* ========================================== */
.visually-hidden { position: absolute; height: 1px; width: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; border: 0; padding:0; margin:-1px; }
section {
  padding: 15px;
}
/* END OF CSS */
