/* ===== 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F7F7F9;
  color: #232A34;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 1em;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 10px 16px;
  text-align: left;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  background: #F7F7F9;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #294AA4;
}
h1 { font-size: 2.75rem; line-height: 1.18; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.22; margin-bottom: 16px; }
h3 { font-size: 1.25rem; line-height: 1.25; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.15rem; }
p, li, td, th { font-size: 1.06rem; line-height: 1.7; color: #232A34; }
strong { font-weight: 700; }
em { font-style: italic; }

/* ===== COLORS & BRAND ===== */
:root {
  --primary: #294AA4;
  --secondary: #C5E066;
  --accent: #F7F7F9;
  --dark: #232A34;
  --mid-gray: #456087;
  --light-gray: #E6ECF6;
  --white: #fff;
  --shadow: 0 3px 20px rgba(41,74,164,0.09);
  --border-radius: 14px;
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: var(--white);
  box-shadow: 0 2px 14px rgba(41,74,164,0.07);
  z-index: 102;
  position: sticky;
  top: 0;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 58px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 0;
  font-size: 1.04rem;
  transition: color 0.18s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--secondary);
}
.nav-cta.primary-btn {
  margin-left: 14px;
  padding: 11px 30px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--primary);
  background: transparent;
  margin-left: 12px;
  padding: 6px 14px 6px 10px;
  border-radius: 6px;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--light-gray);
}

@media (max-width: 1110px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 920px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 880px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(41,74,164, 0.91);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.6,0,0.3,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.5rem;
  color: var(--white);
  margin: 28px 34px 10px 0;
  background: none;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  transition: color .2s;
  z-index: 10000;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
  padding: 40px 36px;
  background: var(--primary);
  height: 100vh;
  overflow-y: auto;
  box-shadow: -8px 0 30px rgba(30,30,60,0.08);
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--white);
  font-weight: 700;
  font-size: 1.35rem;
  padding: 2px 6px;
  width: 100%;
  border-radius: 4px;
  transition: background 0.14s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--secondary);
  color: var(--primary);
}
@media (min-width: 881px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 44px 0 36px 0;
  background: var(--accent);
  margin-bottom: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  font-size: 2.45rem;
  color: var(--primary);
}
.hero p {
  font-size: 1.24rem;
  color: var(--mid-gray);
}
.hero .primary-btn {
  margin-top: 18px;
}
@media (max-width: 650px) {
  .hero {
    padding-top: 23px;
    padding-bottom: 12px;
  }
  .hero h1 { font-size: 1.64rem; }
}

/* ===== FEATURES ===== */
.features {
  margin-bottom: 60px;
}
.features .content-wrapper {
  gap: 28px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature-grid > div {
  flex: 1 1 210px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 22px 22px 22px;
  min-width: 240px;
  max-width: 324px;
  margin-bottom: 20px;
}
.feature-grid > div img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}
@media (max-width: 1050px) {
  .feature-grid {
    justify-content: center;
  }
  .feature-grid > div { min-width: 210px; max-width: 45vw; }
}
@media (max-width: 700px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-items: flex-start;
  }
}

/* ===== CARDS CONTAINERS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 22px 22px 18px 22px;
  transition: box-shadow 0.16s;
}
.card:hover {
  box-shadow: 0 4px 28px rgba(41,74,164,0.20);
}

/* ===== CONTENT GRIDS & FLEX SECTIONS ===== */
.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) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--light-gray);
  padding: 40px 0 44px 0;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(41,74,164,0.08);
}
.testimonial-card p {
  color: #232A34;
  font-size: 1.14rem;
  font-weight: 400;
  flex: 6 1 70%;
  margin-bottom: 0;
}
.testimonial-card div {
  flex: 2 1 30%;
  text-align: right;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width:650px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 12px;
  }
  .testimonial-card div {
    text-align: left;
    font-size: .95rem;
  }
}

/* ===== CTA SECTIONS ===== */
.cta-bottom, .cta-consult {
  padding: 0;
  background: var(--primary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
.cta-bottom .content-wrapper,
.cta-consult .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 12px;
  gap: 18px;
}
.cta-bottom h2, .cta-consult h2 {
  color: var(--white);
}
.cta-bottom .primary-btn, .cta-consult .primary-btn {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
}
.cta-bottom .primary-btn:hover, .cta-consult .primary-btn:hover {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
@media (max-width: 650px) {
  .cta-bottom .content-wrapper, .cta-consult .content-wrapper {
    padding: 28px 3px;
  }
}

/* ===== ABOUT PAGE TEAM CARDS ===== */
.team-member-bio {
  background: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 18px 14px 14px 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(41,74,164,0.05);
}
.team-member-bio strong {
  color: var(--primary);
}

/* ===== LEGAL/PRIVACY/REGULAMIN PAGES ===== */
.legal {
  margin-bottom: 60px;
  padding: 40px 22px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.legal h1 {
  color: var(--primary);
  font-size: 2rem;
}
.legal h2, .legal h3 {
  margin-top: 26px;
  margin-bottom: 10px;
  color: var(--primary);
}
.legal ul {
  margin-bottom: 1em;
}

/* ===== BLOG ===== */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 28px;
  list-style: none;
}
.article-list li {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 22px 16px 18px;
  box-shadow: 0 1.5px 8px rgba(41,74,164,0.05);
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.article-list a {
  color: var(--primary);
  font-weight: 600;
  transition: text-decoration .18s;
}
.article-list a:hover,
.article-list a:focus {
  text-decoration: underline;
  color: var(--secondary);
}
.featured-post {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 24px 20px 18px 28px;
  box-shadow: 0 2px 14px rgba(41,74,164,0.15);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.featured-post h3 {
  color: var(--secondary);
}
.featured-post a {
  color: var(--secondary);
  font-weight: 600;
  margin-top: 8px;
}
.featured-post a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ===== NEWSLETTER CTA (blog) ===== */
.newsletter .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 36px 0;
}
@media (max-width:700px){
  .newsletter .content-wrapper { padding: 18px 0; }
}

/* ===== INFO BOX (kontakt page) ===== */
.info-box {
  background: var(--light-gray);
  color: #30518E;
  font-weight: 500;
  padding: 19px 16px;
  border-radius: 9px;
  margin-top: 18px;
  box-shadow: 0 1.5px 8px rgba(41,74,164,0.05);
}

/* ===== TABLES STYLING ===== */
table {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(41,74,164,0.08);
  margin-bottom: 32px;
  overflow: hidden;
}
th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 0;
}
td {
  border-bottom: 1px solid var(--light-gray);
  font-size: 1.01rem;
}
tbody tr:last-child td {
  border-bottom: 0;
}

/* ===== FOOTER ===== */
footer {
  padding: 0;
  margin-top: 64px;
  background: var(--white);
  box-shadow: 0 -1.5px 12px rgba(41,74,164,0.04);
}
.footer-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 44px;
  padding: 40px 0 24px 0;
  flex-wrap: wrap;
}
.footer-wrapper > * {
  flex: 1 1 180px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.17s;
}
.footer-nav a:hover { color: var(--secondary); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 1.02rem;
  color: var(--mid-gray);
}
.footer-contact img {
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
.footer-copy {
  border-top: 1px solid var(--light-gray);
  color: #5571B1;
  font-size: 0.94rem;
  padding: 18px 0 16px 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 800px) {
  .footer-wrapper {
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 0 14px 0;
  }
  .footer-contact { font-size: 0.98rem; }
}

/* ===== BUTTONS ===== */
.primary-btn {
  display: inline-block;
  padding: 11px 32px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  border-radius: 8px;
  box-shadow: 0 2.5px 11px rgba(41,74,164,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.13s;
  cursor: pointer;
  outline: none;
  border: none;
  margin-bottom: 5px;
}
.primary-btn:hover,
.primary-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 18px rgba(41,74,164,0.13);
  border: 1.5px solid var(--primary);
}
.secondary-btn {
  display: inline-block;
  padding: 11px 28px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background 0.18s, color 0.18s;
  margin-right: 8px;
}
.secondary-btn:hover,
.secondary-btn:focus {
  background: var(--primary);
  color: var(--white);
}

/* === Misc interactive elements === */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 22px 20px;
  margin-bottom: 20px;
}

/* ===== FAQ (jak-to-dziala) ===== */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.faq-list > div {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 1.5px 9px rgba(41,74,164,0.06);
  padding: 18px 14px 10px 16px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  min-width: 220px;
}
.faq-list strong {
  color: var(--primary);
}
@media (max-width: 800px) {
  .faq-list {
    flex-direction: column;
    gap: 16px;
  }
  .faq-list > div { min-width: 0; }
}

/* ===== SUCCESS/THANK YOU PAGE ===== */
.success .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 46px 0;
  margin-top: 44px;
}
.success h1 {
  color: var(--primary);
  font-size: 1.8rem;
}
.success .primary-btn {
  margin-top: 22px;
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 -2px 16px rgba(41,74,164,0.16);
  z-index: 16000;
  display: flex;
  justify-content: center;
  padding: 19px 12px 16px 12px;
  align-items: center;
  transition: transform 0.35s, opacity 0.15s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner__text {
  flex: 3 1 56%;
  margin-right: 16px;
  font-size: 1rem;
  color: var(--primary);
}
.cookie-banner__actions {
  flex: 1 1 30%;
  display: flex;
  gap: 10px;
  align-items: center;
}
.cookie-banner button {
  padding: 10px 16px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1.025rem;
  font-weight: 600;
  transition: background .18s, color .18s;
}
.cookie-accept {
  background: var(--primary);
  color: var(--white);
  border: 0;
}
.cookie-accept:hover {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-reject {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-reject:hover {
  background: var(--light-gray);
}
.cookie-settings {
  background: var(--secondary);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
.cookie-settings:hover {
  background: var(--primary);
  color: var(--white);
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 5px 16px 10px;
  }
  .cookie-banner__text {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: .98rem;
  }
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal {
  position: fixed;
  z-index: 20000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,48,85,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-content {
  background: var(--white);
  border-radius: var(--border-radius);
  max-width: 410px;
  width: 95vw;
  padding: 30px 24px 22px 24px;
  box-shadow: 0 6px 48px rgba(41,74,164,0.19);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookies-modal-in .5s cubic-bezier(.76,-0.37,.48,1.18);
}
@keyframes cookies-modal-in {
  from { transform: scale(.88) translateY(45px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: transparent;
  color: var(--primary);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 500;
}
.cookie-modal-close:hover {
  color: var(--secondary);
}
.cookie-modal-content h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 2px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: var(--primary);
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 44px; height: 24px;
}
.toggle-switch input {
  opacity: 0; width: 0; height: 0;
}
.toggle-slider {
  position: absolute; cursor: pointer;
  background: var(--light-gray);
  border-radius: 16px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--secondary);
}
.toggle-slider:before {
  content: '';
  position: absolute;
  height: 18px; width: 18px;
  left: 3px; top: 3px;
  background: var(--primary);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
  background: var(--primary);
}
.cookie-category-always {
  color: #555;
  font-size: 0.94rem;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: background .13s, color .13s;
}

@media (max-width: 650px) {
  .cookie-modal-content { padding: 18px 8px 12px 8px; }
}

/* === Animation for mobile menu === */
.mobile-menu {
  transition: transform 0.35s cubic-bezier(0.6,0,0.3,1), opacity 0.25s;
}

/* ======= Responsive Typography ======= */
@media (max-width: 650px) {
  h1 { font-size: 1.49rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 1.01rem; }
  p, li, td, th { font-size: 0.99rem; }
}

/* ======= Additional Utilities ======= */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }

/* ======= Accessibility ======= */
:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ======= Hide Some Elements on Mobile ======= */
@media (max-width: 600px) {
  .footer-wrapper > a img { max-width:80px; }
  .footer-contact img { display: none; }
  .logo img { max-width:120px; }
}
