/* ========================================================
   SozialGlanz - Elegant Classic Flexbox-Only CSS
   --------------------------------------------------------
   Design: Elegant Classic (serif fonts, muted colors, refined spacing)
   ONLY Flexbox for all layouts! 
   Do not use CSS Grid, columns, or absolute positioning for cards.
   ======================================================== */

/* ----- 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;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Merriweather', 'Georgia', serif; /* Elegant classic serif */
  background: #f7f7f9;
  color: #204775; /* Brand Primary */
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #204775;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7B114;
}
ul, ol {
  margin-left: 1.5em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}

/* FONTS - Import Merriweather, Montserrat (headline), Open Sans (body) */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Montserrat:wght@700&family=Open+Sans:wght@400;700&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', 'Georgia', serif;
  color: #204775;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.22;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
h4, h5 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.12rem;
  margin-bottom: 12px;
  color: #214463;
}
strong, b {
  font-weight: 700;
}

/* --- Layout Container & Section Spacing --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(40,60,110,0.065);
}

@media (max-width: 900px) {
  .container {
    max-width: 96vw;
    padding: 0 8vw;
  }
}
@media (max-width: 600px) {
  .section, .container {
    padding: 0 8px !important;
  }
}

/* HEADER & NAVIGATION */
header {
  background: #ffffff;
  box-shadow: 0 2px 12px 0 rgba(32,71,117,0.05);
  z-index: 10;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 24px 14px 0;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Montserrat', 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.06rem;
}
.main-nav a {
  color: #204775;
  opacity: 0.85;
  padding: 4px 10px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.main-nav .cta-primary {
  background: #204775;
  color: #fff;
  padding: 8px 16px;
  margin-left: 16px;
  border-radius: 24px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 12px 0 rgba(32,71,117,0.07);
  transition: background 0.2s, color 0.2s, transform 0.12s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #F7B114;
  color: #204775;
  transform: translateY(-2px) scale(1.03);
}
.main-nav a:hover, .main-nav a:focus {
  background: #efefef;
  color: #204775;
}
.main-nav .logo {
  margin-right: 24px;
  display: flex;
  align-items: center;
  padding: 0 !important;
  background: none !important;
}

@media (max-width: 900px) {
  .main-nav {
    gap: 18px;
    padding: 13px 6px 13px 0;
  }
  .main-nav a {
    font-size: 0.98rem;
  }
}

/* MOBILE NAVIGATION MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 14px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #204775;
  z-index: 120;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #efefef;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(32,71,117,0.98);
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.40s cubic-bezier(.7,.11,.64,1.07);
  height: 100vh;
  width: 100vw;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 0 0;
  font-size: 2rem;
  color: #FFF;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #f7b1142A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 100vw;
  margin-top: 58px;
  padding-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Merriweather', serif;
  font-size: 1.45rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 18px;
  min-width: 180px;
  transition: background 0.18s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7B114;
  color: #214463;
}
@media (min-width: 901px) {
  .mobile-menu{
    display: none !important;
  }
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(90deg,#ffffff 38%, #f7f3eb 100%);
  padding: 80px 0 40px 0;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.hero-section h1 {
  color: #204775;
  font-size: 2.8rem;
  margin-bottom: 12px;
  margin-top: 20px;
  font-family: 'Merriweather', Georgia, serif;
}
.hero-section p {
  font-size: 1.35rem;
  color: #314d64;
  margin-bottom: 24px;
  margin-top: 0;
}
.hero-section .cta-primary {
  margin-top: 18px;
}
@media (max-width: 900px) {
  .hero-section { padding: 48px 0 32px 0; }
  .hero-section h1 { font-size: 2.1rem; }
  .hero-section p { font-size: 1.08rem; }
}

/* FLEX LAYOUTS for Feature/Card/Content Grids */
.feature-grid,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 28px 0 0 0;
  padding: 0;
}
.feature-grid li,
.service-list li {
  flex: 1 1 274px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FAFAFA;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(32,71,117,0.052);
  padding: 32px 20px;
  margin-bottom: 20px;
  min-width: 225px;
  max-width: 330px;
  transition: box-shadow 0.25s, transform 0.16s;
  border: 1.5px solid #E4E6EB;
}
.feature-grid li:hover, .service-list li:hover {
  box-shadow: 0 6px 30px 0 rgba(32,71,117,0.12);
  transform: translateY(-3px) scale(1.02);
  border-color: #ded2bc;
}
.feature-grid img, .service-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  filter: grayscale(0.15) contrast(0.85);
}
.feature-grid h3,
.service-list h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #204775;
  margin-bottom: 8px;
  font-family: 'Merriweather', serif;
}
.feature-grid p,
.service-list p {
  font-size: 1.02rem;
  color: #313131;
}
.service-price {
  margin-top: auto;
  align-self: flex-end;
  font-size: 1.05rem;
  font-weight: 700;
  color: #F7B114;
  margin-top: 16px;
}
@media (max-width: 1000px) {
  .feature-grid li, .service-list li {
    min-width: 180px;
    max-width: 100%;
    flex: 1 1 99%;
    padding: 22px 13px;
  }
  .feature-grid, .service-list {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 13px;
  }
  .feature-grid li, .service-list li { max-width: 100%; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1.5px 8px 0 rgba(80,90,110,0.055);
  padding: 32px 22px;
  transition: box-shadow .22s, transform .16s;
}
.card:hover { box-shadow: 0 6px 28px 0 rgba(32,71,117,0.09); transform: scale(1.015); }

.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;
}

@media (max-width: 768px) {
  .content-grid { flex-direction: column; gap: 14px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F9F9FB;
  color: #204775;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(32,71,117,0.14);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 580px;
  font-size: 1.13rem;
  border-left: 5px solid #F7B114;
  transition: box-shadow 0.18s, border-color 0.12s;
}
.testimonial-card .stars {
  color: #F7B114;
  font-size: 1.22rem;
  font-weight: 700;
}
.testimonial-card .testimonial-name {
  margin-top: 8px;
  font-size: 0.95em;
  font-family: 'Montserrat', serif;
  color: #888;
}
.testimonial-card:hover {
  box-shadow: 0 8px 38px 0 rgba(32,71,117,0.20);
  border-left: 6px solid #204775;
  background: #F7F3EB;
}

/* CTA Buttons */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', 'Merriweather', serif;
  font-weight: 700;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.18s, transform 0.13s, box-shadow .16s;
  box-shadow: 0 3px 12px 0 rgba(32,71,117,0.07);
  border: none;
}
.cta-primary {
  background: #204775;
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus {
  background: #F7B114;
  color: #204775;
  transform: translateY(-1.5px) scale(1.04);
}
.cta-secondary {
  background: #fff;
  color: #204775;
  border: 2.5px solid #204775;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #204775;
  color: #fff;
  border-color: #F7B114;
}


/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  background: #fefefe;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(32,71,117,0.06);
  overflow: hidden;
  font-family: 'Open Sans', Arial, sans-serif;
}
.pricing-table th, .pricing-table td {
  padding: 16px 18px;
  border-bottom: 1.5px solid #eee;
  font-size: 1.06rem;
  background: #fff;
}
.pricing-table th {
  text-align: left;
  background: #F7B114;
  color: #204775;
  font-family: 'Merriweather', serif;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* Stepper Timeline (process.html) */
.stepper-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
  padding-left: 0;
}
.stepper-timeline li {
  padding-left: 36px;
  position: relative;
  min-height: 44px;
}
.stepper-timeline li strong {
  color: #204775;
}
.stepper-timeline li:before {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  top: 15px;
  width: 14px;
  height: 14px;
  border: 3px solid #F7B114;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
.stepper-timeline li:not(:last-child):after {
  content: '';
  position: absolute;
  left: 16px;
  top: 30px;
  height: calc(100% - 25px);
  width: 2.5px;
  background: #efefef;
  z-index: 0;
}

/* FAQ Styles */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}
.faq-item {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #EFEFEF;
  box-shadow: 0 2px 10px 0 rgba(32,71,117,0.05);
  padding: 20px 20px 20px 26px;
  margin-bottom: 20px;
  transition: border-color 0.2s, box-shadow .14s;
}
.faq-item h2 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 1rem;
  color: #304060;
}
.faq-item:hover, .faq-item:focus {
  border-color: #F7B114;
  box-shadow: 0 6px 24px 0 rgba(32,71,117,0.13);
}
.contact-cta {
  margin-bottom: 22px;
}
.support-links {
  margin-top: 10px;
  font-size: 0.97rem;
}
.support-links a {
  color: #204775;
  border-bottom: 1px solid #F7B114;
}
.support-links a:hover {
  color: #F7B114;
  border-bottom-color: #204775;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #204775;
  color: #fff;
  z-index: 99999;
  padding: 18px 8vw 14px 8vw;
  box-shadow: 0 -2px 18px 0 rgba(32,71,117,0.23);
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 1.04rem;
  transition: transform 0.33s;
}
.cookie-banner button, .cookie-banner .cta-cookies {
  margin-left: 12px;
  padding: 9px 22px;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat',serif;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, box-shadow .09s;
}
.cookie-banner .cta-accept {
  background: #F7B114;
  color: #204775;
}
.cookie-banner .cta-accept:hover {
  background: #fff;
}
.cookie-banner .cta-reject {
  background: #E0E4EB;
  color: #204775;
}
.cookie-banner .cta-reject:hover {
  background: #F7B114;
  color: #fff;
}
.cookie-banner .cta-cookies {
  background: #fff;
  color: #204775;
  border: 1.7px solid #efefef;
}
.cookie-banner .cta-cookies:hover {
  background: #204775;
  color: #fff;
  border-color: #F7B114;
}
@media(max-width: 700px){
  .cookie-banner{
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 18px 16px 14px 16px;
    font-size: 0.96rem;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,41,61,0.74);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #204775;
  min-width: 320px;
  max-width: 97vw;
  border-radius: 18px;
  padding: 34px 30px 23px 30px;
  box-shadow: 0 3px 38px 0 rgba(32,71,117,0.21);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal h2 {
  margin-bottom: 2px;
  font-size: 1.25rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin: 7px 0 6px 0;
}
.cookie-modal .cookie-toggle {
  width: 44px;
  height: 24px;
  border-radius: 16px;
  background: #EFEFEF;
  position: relative;
  cursor: pointer;
  transition: background 0.12s;
}
.cookie-modal .cookie-toggle[data-enabled="true"]{
  background: #204775;
}
.cookie-modal .cookie-toggle-switch {
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.17s;
}
.cookie-modal .cookie-toggle[data-enabled="true"] .cookie-toggle-switch {
  left: 22px;
}
.cookie-modal .cookie-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #204775;
  cursor: pointer;
  z-index: 2;
  transition: color 0.15s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #F7B114;
}

/* Footer */
footer {
  background: #204775;
  color: #fff;
  padding: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-top: 60px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 20px 30px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo {
  flex: 0 0 64px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.02rem;
}
.footer-links a {
  color: #fff;
  opacity: 0.88;
  transition: color 0.18s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #F7B114;
}
.footer-contact {
  font-size: 0.97rem;
  color: #eaecef;
  margin-bottom: 12px;
  line-height: 1.4;
}
.footer-contact a {
  color: #f7b114;
  text-decoration: underline;
}
.newsletter-signup {
  background: #fff6e7;
  color: #204775;
  border-radius: 17px;
  padding: 20px 22px 18px 22px;
  margin-top: 18px;
  min-width: 215px;
  max-width: 330px;
  box-shadow: 0 1.5px 7px 0 rgba(32,71,117,0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter-signup h3 {
  color: #19365a;
  font-size: 1.16rem;
}
.newsletter-signup p {
  font-size: 0.97rem;
  color: #204775;
}
.newsletter-signup .cta-secondary {
  margin-top: 6px;
}

@media(max-width:900px){
  .footer-container { flex-direction: column; gap: 24px; align-items: flex-start; }
  .newsletter-signup { max-width: 97vw; }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-12 { margin-bottom: 12px; }
.mb-32 { margin-bottom: 32px; }

/* Other components */
.hours-open {
  font-size: 0.99rem;
  color: #374863;
  background: #e9f0f7;
  padding: 5px 14px;
  display: inline-block;
  border-radius: 22px;
  margin-top: 18px;
}
.location-map {
  display: flex;
  align-items: center;
  font-size: 1.07rem;
  color: #204775;
  background: #f7f4ee;
  border-radius: 11px;
  padding: 5px 16px;
  gap: 10px;
  margin: 12px 0 6px 0;
}
.contact-details {
  margin-bottom: 18px;
  font-size: 1.08rem;
  color: #204775;
}

/* Fade/slide utility for overlays */
.slide-in {
  animation: slideInRight 0.35s cubic-bezier(.48,.81,.36,1) 1;
}
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0.2; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive Typography & Elements */
@media (max-width: 768px) {
  h1 { font-size: 1.84rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.08rem; }
  .section { margin-bottom: 32px; padding: 26px 9px; }
}
@media (max-width: 500px) {
  .container, .content-wrapper, .footer-container { padding: 0 4px !important; }
}

/* Table / List contextual spacing */
table { width: 100%; }
thead, tbody, tr { width: 100%; }
td, th { text-align: left; padding: 9px 8px; }
tr { border-bottom: 1px solid #eee; }

/* Hide scrollbars for overlays (mobile menu/cookie-modal) */
.mobile-menu, .cookie-modal-overlay { -webkit-overflow-scrolling: touch; overflow-y: auto; }

/* Animation for button scale microinteraction */
button:active, .cta-primary:active, .cta-secondary:active {
  transform: scale(0.98);
}

/* Required Flexbox alignment classes */
.align-center { align-items: center; }
.align-start { align-items: flex-start; }

/* Form Inputs (for contact forms or newsletter, if added) */
input[type="text"], input[type="email"], textarea {
  background: #fff;
  border: 1.5px solid #E4E6EB;
  border-radius: 7px;
  padding: 10px 13px;
  font-family: 'Open Sans',sans-serif;
  font-size: 1rem;
  transition: border-color 0.16s, box-shadow 0.14s;
  margin-bottom: 16px;
  width: 100%;
  resize: vertical;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #F7B114;
  box-shadow: 0 1.5px 4px 0 rgba(247,177,20,0.09);
}

/* List bullets override for elegance */
ul li, ol li {
  margin-left: 0;
  padding-left: 18px;
  position: relative;
}
ul li:before {
  content: '\2022';
  color: #F7B114;
  font-size: 1.1em;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.2;
}
ol li { counter-increment: elegant-ol; }
ol { counter-reset: elegant-ol; }
ol li:before {
  content: counter(elegant-ol) ". ";
  color: #204775;
  font-weight: bold;
  font-size: 1em;
  left: 0; position: absolute;
}

/* Accessibility: Focus outlines */
a, button, [tabindex]:not([tabindex="-1"]) {
  outline: none;
}
a:focus-visible, button:focus-visible, .cta-primary:focus-visible, .cta-secondary:focus-visible {
  outline: 3px dotted #F7B114;
  outline-offset: 2px;
}

/* End of file */
