/* =============================
   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, 
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.6;
  background: #FCFCFF;
  color: #21436F;
  font-family: 'Open Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #7C88A2;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E64A19;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 1.3em;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}
button, [type="button"], [type="reset"], [type="submit"] {
  cursor: pointer;
  font-family: inherit;
}

/* ===============================
   SOFT PASTEL COLOR PALETTE & VARS
   =============================== */
:root {
  --primary: #14305C;
  --secondary: #E64A19;
  --accent-bg: #F4F6FB;
  --bg-pastel-light: #F9F7FA;
  --bg-pastel-blue: #E8F1FD;
  --bg-pastel-pink: #FAE4EA;
  --bg-pastel-green: #E4FAEC;
  --bg-pastel-yellow: #FFF9E4;
  --bg-pastel-orange: #FAEEE4;
  --card-shadow: 0px 4px 32px 0px rgba(120, 160, 210, 0.08);
  --card-radius: 20px;
  --card-radius-sm: 12px;
  --transition: 0.25s cubic-bezier(.55,.05,.4,.95);
}

/* =============================
   TYPOGRAPHY
   ============================= */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #14305C;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  letter-spacing: -.005em;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  letter-spacing: normal;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
body, p, li, address {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #21436F;
}
.subheadline {
  color: #7C88A2;
  font-size: 1.125rem;
  margin-bottom: 26px;
  font-family: 'Open Sans', Arial, sans-serif;
}
strong {
  font-weight: 700;
}

/* =============================
   LAYOUT
   ============================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--accent-bg);
  border-radius: var(--card-radius-sm);
  box-shadow: var(--card-shadow);
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: 0 3px 24px 0 rgba(120,150,180,0.08);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 560px;
  color: #14305C;
  font-size: 1.1rem;
  border: 1px solid #E3E6F0;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: #7C88A2;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/************
  LISTS
*************/
ul, ol {
  padding-left: 24px;
  font-size: 1rem;
  color: #21436F;
  line-height: 1.7;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}

/* =============================
   HEADER & NAVIGATION
   ============================= */
header {
  background: linear-gradient(90deg, #f4f6fb, #e8f1fd);
  position: relative;
  box-shadow: 0 4px 24px 0 rgba(180, 210, 235, 0.04);
  z-index: 100;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 75px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .01em;
  color: #14305C;
  opacity: 0.85;
  position: relative;
  padding: 6px 7px;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
}
header nav a:hover, header nav a:focus {
  background: var(--bg-pastel-blue);
  color: var(--secondary);
  opacity: 1;
}
.cta-button {
  background: linear-gradient(90deg, #fae4ea 0%, #e8f1fd 100%);
  color: #14305C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  border-radius: 24px;
  padding: 12px 26px;
  box-shadow: 0 3px 16px 0 rgba(150,170,200,0.09);
  margin-left: 14px;
  border: 0;
  outline: none;
  transition: background 0.23s, color 0.2s, box-shadow 0.18s;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #e8f1fd 0%, #fae4ea 100%);
  color: #E64A19;
  box-shadow: 0 6px 24px -2px rgba(180,120,170,0.15);
}
.secondary-cta {
  background: #fff;
  color: #14305C;
  border: 1.5px solid #e8f1fd;
  border-radius: 22px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 2px 10px 0 rgba(180,210,220,.05);
  margin-top: 10px;
  transition: background 0.22s, color 0.18s, box-shadow 0.15s, border 0.12s;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #E8F1FD;
  color: #E64A19;
  border-color: #FAE4EA;
  box-shadow: 0 8px 22px 0 rgba(240, 156, 156, 0.09);
}

/* =============================
   MOBILE MENU / BURGER NAV
   ============================= */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 980px) {
  header nav,
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 22px;
    top: 18px;
    font-size: 2rem;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    border: none;
    width: 48px;
    height: 48px;
    z-index: 300;
    box-shadow: 0 2px 10px 0 rgba(180, 180, 200, .08);
    transition: background 0.17s, color 0.18s;
  }
  .mobile-menu-toggle:focus {
    outline: 2px solid #E64A19;
    background: #e8f1fd;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(100deg, #f4f6fb, #fae4ea 60%, #e4faec 100%);
    z-index: 9999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s cubic-bezier(.85,0,.17,1);
    opacity: 0;
    pointer-events: none;
  }
  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }
  .mobile-menu-close {
    font-size: 2.1rem;
    color: #14305C;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin: 20px 0 0 20px;
    box-shadow: 0 2px 12px 0 rgba(180, 180, 200, 0.09);
    transition: background 0.19s, color 0.14s;
  }
  .mobile-menu-close:focus {
    outline: 2px solid #E64A19;
    background: #e8f1fd;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 38px;
    padding-left: 32px;
    width: 100%;
  }
  .mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.22rem;
    line-height: 1.7;
    color: #14305C;
    background: rgba(244,246,251,0.8);
    border-radius: 12px;
    padding: 10px 14px;
    margin-right: 24px;
    transition: background 0.16s, color 0.18s;
    min-width: 200px;
    box-shadow: 0 1px 8px 0 rgba(170,170,200,0.04);
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: #e8f1fd;
    color: #E64A19;
  }
}

/* =============================
   HERO SECTIONS
   ============================= */
.hero {
  padding: 60px 0 54px 0;
  background: linear-gradient(120deg, #e8f1fd 0%, #fae4ea 100%);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 8px 32px 0 rgba(220, 200, 240, 0.06);
  margin-bottom: 48px;
}
.hero .container {padding: 0 18px;}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  max-width: 600px;
}

/* =============================
   FEATURES & INFO ICONS
   ============================= */
.features {
  background: #E8F1FD;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(150,180,220,0.04);
  margin-bottom: 60px;
  padding: 42px 0 42px 0;
}
.features .feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.feature-icons span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 16px;
  padding: 10px 20px;
  box-shadow: 0 2px 10px 0 rgba(180,180,210,0.08);
  color: #14305C;
  font-weight: 600;
  font-size: 1.01rem;
  min-width: 160px;
  transition: background 0.15s;
}
.feature-icons span:hover {
  background: var(--bg-pastel-blue);
}

/* =============================
   PRODUCTS/SERVICES CARDS
   ============================= */
.products-overview, .beratung-schritte, .products-services {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  margin-bottom: 60px;
  padding: 36px 0 30px 0;
}
.service-cards /* product card grid */{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}
.service-cards > div {
  flex:1 1 260px;
  background: linear-gradient(120deg, #F4F6FB 60%, #e4faec 100%);
  border-radius: var(--card-radius-sm);
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
  padding: 20px 18px 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.service-cards > div:hover {
  box-shadow: 0 8px 34px 0 rgba(100, 170, 210, .13);
  transform: translateY(-3px) scale(1.012);
}
.service-cards h3 {
  font-size: 1.06rem;
  color: #14305C;
  margin-bottom: 7px;
}
.service-cards span {
  color: #E64A19;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 5px;
}

/************************
   BLOG ARTICLES & HIGHLIGHTS
*************************/
.blog-features .featured-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.blog-features article {
  background: #faf4f7;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 22px 18px 18px 18px;
  flex: 1 1 260px;
  max-width: 320px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-features article h3 {
  color: #14305C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  margin-bottom: 6px;
}
.blog-features article:hover {
  box-shadow: 0 8px 38px 0 rgba(144, 170, 210, 0.16);
  transform: translateY(-2px) scale(1.009);
}

/* =============================
   CONTACT & QUICK-INFO
   ============================= */
.contact {
  background: #e4faec;
  border-radius: 20px;
  box-shadow: 0 6px 24px 0 rgba(144,210,150,0.04);
  margin-bottom: 60px;
  padding: 45px 0 38px 0;
}
.quick-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 18px 0 16px 0;
  flex-wrap: wrap;
}
.quick-info span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.01rem;
  color: #14305C;
  background: #fff;
  border-radius: 16px;
  padding: 8px 14px;
  box-shadow: 0 1px 8px 0 rgba(180,220,210,0.06);
  font-weight: 600;
}

.contact-details > div > div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  font-size: 1.01rem;
  color: #14305C;
}
.map-embed {
  margin-top: 16px;
  font-size: 0.96rem;
  color: #7C88A2;
  font-style: italic;
}

/* =================================
   CTA SECTIONS, NEWSLETTER, ETC.
   ================================= */
.cta {
  background: #fae4ea;
  border-radius: 18px;
  box-shadow: 0 7px 32px 0 rgba(240,156,156,.07);
  margin-bottom: 60px;
  padding: 24px 0 34px 0;
}
.newsletter-cta {
  background: #e4faec;
  border-radius: 18px;
  box-shadow: 0 7px 32px 0 rgba(140,200,146,.07);
  margin-bottom: 60px;
  padding: 24px 0 34px 0;
}

/* =============================
   LEGAL/HELPFUL/INFO PAGES
   ============================= */
.legal {
  background: #fff9e4;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  margin-bottom: 60px;
  padding: 36px 0 30px 0;
}
.helpful-links ul {
  margin-left: 1.2em;
}
.helpful-links a {
  font-weight: 600;
  color: #14305C;
  transition: color .19s;
}
.helpful-links a:hover {
  color: #E64A19;
}

/* =============================
   FOOTER
   ============================= */
footer {
  background: linear-gradient(90deg, #f4f6fb 0%, #e4faec 100%);
  border-radius: 42px 42px 0 0;
  box-shadow: 0 -3px 16px 0 rgba(200,200,210,0.05);
  padding: 42px 0 18px 0;
  color: #21436F;
  font-size: 0.97rem;
  margin-top: 60px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
}
.footer-menu a {
  color: #14305C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  opacity: 0.84;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.16s, color 0.17s, opacity 0.13s;
}
.footer-menu a:hover { opacity: 1; color: #E64A19; background: #fae4ea;}
footer address {
  font-style: normal;
  margin-top: 16px;
  color: #7c88a2;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 7px;
}
.social-links a {
  background: #fff;
  border-radius: 50%;
  padding: 4px 7px 4px 7px;
  box-shadow: 0 1px 6px 0 rgba(160,200,220,0.075);
  transition: background 0.13s, box-shadow 0.15s;
}
.social-links a:hover {
  background: #e8f1fd;
  box-shadow: 0 3px 14px 0 rgba(120,180,220,0.11);
}

/* =============================
   RESPONSIVE ADJUSTMENTS
   ============================= */
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  header .container {
    padding: 7px 10px;
    min-height: 63px;
    gap: 6px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .section, .features, .products-overview, .products-services, .cta, .newsletter-cta, .contact, .legal {
    padding: 28px 0 22px 0;
    border-radius: 13px;
  }
  .hero {
    padding: 36px 0 22px 0;
    border-radius: 0 0 20px 20px;
  }
  .service-cards, .blog-features .featured-articles, .feature-icons, .quick-info, .footer-menu {
    flex-direction: column;
    gap: 15px;
  }
  .service-cards > div, .blog-features article {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: unset;
    padding: 18px 12px 16px 12px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.04rem; }
  .hero { padding: 23px 0 15px 0; }
  .section,
  .features, .products-services, .products-overview, .cta, .newsletter-cta, .contact, .legal {
    padding: 14px 2px 10px 2px;
  }
}

/* =============================
   HOVER STATES, INTERACTIONS
   ============================= */
.card:hover, .testimonial-card:hover, .feature-icons span:hover {
  box-shadow: 0 7px 30px 0 rgba(180,220,220,.14);
}
button, .cta-button, .secondary-cta {
  transition: background .2s, color .17s, box-shadow 0.18s, border 0.13s, outline-color 0.13s;
}

/* =============================
   COOKIE CONSENT BANNER
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 20000;
  background: linear-gradient(98deg,#f4f6fb 70%, #fae4ea 100%);
  box-shadow: 0 -2px 14px 0 rgba(171,160,220,.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding: 20px 22px 18px 22px;
  font-size: 1.05rem;
  color: #14305C;
  border-top: 2px solid #e8f1fd;
  opacity: 1;
  transition: transform .45s cubic-bezier(.8,0,.15,1);
}
.cookie-banner.hide {
  pointer-events: none;
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
}
.cookie-banner button,
.cookie-banner .cookie-accept {
  background: #fae4ea;
  color: #14305C;
  border: none;
  border-radius: 18px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin: 0 1px;
  box-shadow: 0 3px 16px 0 rgba(180,200,240,0.05);
  transition: background 0.19s, color 0.19s;
}
.cookie-banner .cookie-accept:hover {
  background: #E8F1FD;
  color: #E64A19;
}
.cookie-banner .cookie-reject {
  background: #e4faec;
  color: #14305C;
}
.cookie-banner .cookie-reject:hover {
  background: #fff9e4;
  color: #E64A19;
}
.cookie-banner .cookie-settings {
  background: #fff9e4;
  color: #14305C;
}
.cookie-banner .cookie-settings:hover {
  background: #fae4ea;
  color: #E64A19;
}

/***********************
 COOKIE PREFERENCES MODAL
***********************/
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(180,170,200,0.11);
  z-index: 20100;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn .32s;
}
.cookie-modal-backdrop.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  padding: 30px 26px 22px 26px;
  border-radius: 22px;
  box-shadow: 0 8px 38px 0 rgba(190,185,225,0.20);
  width: 98vw;
  max-width: 410px;
  z-index: 20200;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: popIn .42s cubic-bezier(.7,.31,.24,.98);
}
.cookie-modal h3 {
  color: #14305C;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1.01rem;
  gap: 14px;
  margin-bottom: 10px;
  user-select: none;
}
.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #14305C;
  border-radius: 4px;
  margin-right: 4px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 17px;
  background: #e8f1fd;
  border-radius: 50%;
  border: none;
  font-size: 1.2rem;
  color: #14305C;
  width: 34px; height: 34px;
  box-shadow: 0 0px 7px 1px rgba(180,160,210,0.06);
  display: flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .13s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #fae4ea;
  color: #E64A19;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-buttons button {
  padding: 8px 20px;
  border-radius: 14px;
  background: #e8f1fd;
  color: #14305C;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background .17s, color .16s;
}
.cookie-modal .cookie-modal-buttons button.accept {
  background: #fae4ea;
}
.cookie-modal .cookie-modal-buttons button.accept:hover {
  background: #e4faec;
  color: #E64A19;
}
.cookie-modal .cookie-modal-buttons button.reject {
  background: #fff9e4;
}
.cookie-modal .cookie-modal-buttons button.reject:hover {
  background: #fae4ea;
  color: #E64A19;
}

/********************
  SIMPLE ANIMATIONS
********************/
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes popIn {
  0% { opacity: 0; transform: scale(.90); }
  55% { opacity: 1; }
  90% { transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1.00); }
}

/* =============================
   UTILITIES
   ============================= */
.d-none { display: none !important; }
.hide { display: none !important; }
.gap-8  { gap: 8px!important; }
.gap-16 { gap: 16px!important; }
.gap-20 { gap: 20px!important; }
.gap-24 { gap: 24px!important; }
.mb-32 { margin-bottom: 32px!important; }
.mt-32 { margin-top: 32px!important; }


/* =============================
   ACCESSIBILITY
   ============================= */
:focus {
  outline: 2px solid #E64A19;
  outline-offset: 2px;
}

/* =============================
   END OF STYLES
   ============================= */
