/* =====================
   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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F8F6ED;
  color: #362417;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* =====================
   Vintage Retro CSS Vars (Palette)
   ===================== */
:root {
  --primary: #174370;
  --secondary: #fff8f0;
  --background: #f8f6ed;
  --accent: #C46B00;
  --accent-light: #ffd077;
  --vintage-red: #CA4654;
  --vintage-blue: #73A3C4;
  --vintage-green: #5AA087;
  --vintage-yellow: #FFF2B0;
  --vintage-brown: #9B7A59;
  --text-dark: #362417;
  --text-muted: #7C6A56;
  --border: #d6d1c4;
  --shadow: 0 4px 18px 0 rgba(50,22,10,0.10);
  --radius: 12px;
  --shadow-light: 0 2px 7px 0 rgba(196,107,0,0.13);
}

/* =====================
   Web Fonts: Montserrat & Roboto
   ===================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* =====================
   Typography Scale Vintage
   ===================== */
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 2.75rem; /* 44px */
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 1px 2px 0 var(--accent-light);
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2rem; /* 32px */
  color: var(--accent);
  margin-bottom: 18px;
  text-shadow: 0 1px 0 var(--vintage-yellow);
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.35rem; /* 22px */
  color: var(--vintage-red);
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
}
p, li, address {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.08rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
strong {
  font-weight: 700;
  color: var(--primary);
}

/* Vintage stylings for blockquotes in testimonials */
blockquote, .testimonial-card p {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  color: var(--vintage-brown);
  background: var(--vintage-yellow);
  border-left: 6px solid var(--accent);
  padding: 18px 22px;
  margin-bottom: 12px;
  border-radius: var(--radius);
}

/* =====================
   Container & Spacing
   ===================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--secondary);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  border: 1.5px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px) scale(1.02);
}

.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: 13px;
  padding: 20px;
  background: var(--vintage-yellow);
  border: 2px solid var(--vintage-brown);
  border-radius: var(--radius);
  min-width: 220px;
  max-width: 520px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px 0 rgba(155, 122, 89, 0.13);
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(155, 122, 89, 0.18);
}
.testimonial-card strong {
  color: var(--vintage-red);
  font-size: 1rem;
  margin-bottom: 3px;
}
.testimonial-card .stars {
  color: var(--accent);
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 2px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
}

.features ul, .features ol, .services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-left: 0;
  margin-bottom: 0;
  margin-top: 8px;
}
.features ul li, .features ol li, .services ul li {
  background: var(--vintage-blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  box-shadow: 0 2px 6px 0 rgba(20,67,112,0.04);
  min-width: 200px;
  flex: 1 1 250px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}
.features ul li img, .about ul li img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.about ul li {
  background: var(--vintage-green);
}

.services ul li span {
  color: var(--vintage-red);
  font-weight: bold;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-left: 0.7em;
}

/* =====================
   Hero Section Vintage
   ===================== */
.hero {
  margin-bottom: 60px;
  padding: 60px 0 48px 0;
  background: repeating-linear-gradient(140deg, var(--accent-light), var(--vintage-yellow) 36px, var(--accent-light) 72px);
  border-bottom: 5px dotted var(--vintage-brown);
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--primary);
  margin-bottom: 12px;
  text-shadow: 2px 3px 0 var(--accent-light);
  letter-spacing: -1.2px;
}
.hero p {
  color: var(--text-dark);
  background-color: #fff8e1;
  padding: 10px 17px;
  border-radius: var(--radius);
  border-left: 5px solid var(--accent);
  margin-bottom: 6px;
  box-shadow: 0 2px 8px 0 rgba(244,151,27,0.08);
}

/* =====================
   Buttons & Links
   ===================== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: 100px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 7px;
  margin-bottom: 7px;
  transition: background 0.23s, color 0.20s, box-shadow 0.20s, transform 0.18s;
  box-shadow: 0 4px 14px 0 rgba(195, 107, 0, 0.08);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent-light);
  color: var(--text-dark);
  border-color: var(--vintage-brown);
  box-shadow: 0 8px 20px 0 rgba(196,107,0,0.16);
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--vintage-blue);
  color: var(--accent-light);
  border-color: var(--vintage-brown);
  box-shadow: 0 8px 20px 0 rgba(23,67,112,0.13);
  transform: translateY(-2px) scale(1.04);
}

a.btn-primary, a.btn-secondary {
  text-decoration: none;
}

/* Text links */
a:not(.btn-primary):not(.btn-secondary) {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.17s;
}
a:not(.btn-primary):not(.btn-secondary):hover {
  color: var(--primary);
}

/* =====================
   Header & Navigation
   ===================== */
header {
  background: var(--vintage-yellow);
  box-shadow: 0 4px 18px 0 rgba(243, 228, 182, 0.09);
  border-bottom: 3px dashed var(--accent);
  position: relative;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  position: relative;
}
.logo img {
  height: 44px;
  filter: sepia(0.12) hue-rotate(12deg) contrast(1.1);
  margin-right: 12px;
  transition: filter 0.17s;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 7px;
  margin: 0;
  transition: background 0.14s, color 0.17s;
  border: 2px solid transparent;
  text-shadow: 0 1px 0 var(--accent-light);
}
nav a:hover, nav a:focus {
  background: var(--accent-light);
  color: var(--accent);
  border-color: var(--accent);
}
nav a.btn-primary {
  margin-left: 10px;
}

/* Hide mobile menu by default */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  padding: 8px 17px;
  margin-left: auto;
  z-index: 1200;
  transition: background 0.16s, box-shadow 0.13s;
  box-shadow: 0 2px 7px 0 rgba(196,107,0,0.10);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent-light);
  color: var(--primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--vintage-yellow);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.39s cubic-bezier(.57,.21,.69,1.25), opacity 0.22s;
  box-shadow: 10px 0 40px 0 rgba(23,67,112,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin: 24px 30px 10px 0;
  border-radius: 100px;
  padding: 8px 23px;
  transition: background 0.15s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: #fffbe2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  margin-top: 60px;
}
.mobile-nav a {
  background: var(--accent);
  color: #fffbe2;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  border-radius: var(--radius);
  padding: 15px 38px;
  border: 2px solid var(--vintage-red);
  transition: background 0.15s, color 0.13s, box-shadow 0.15s, border 0.12s;
  box-shadow: 0 3px 12px 0 rgba(244,151,27,0.11);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vintage-red);
  color: var(--vintage-yellow);
  box-shadow: 0 7px 23px 0 rgba(202,70,84,0.16);
  border-color: var(--accent);
}

/* =====================
   Footer Styles Vintage
   ===================== */
footer {
  background: var(--vintage-blue);
  color: #fff;
  padding: 48px 0 22px 0;
  margin-top: 60px;
  border-top: 4px dotted var(--accent);
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 42px;
  justify-content: space-between;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 13px;
}
.footer-nav a, .footer-legal a {
  color: var(--vintage-yellow);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 5px;
  background: rgba(255,242,176,0.07);
  border: 1px solid transparent;
  transition: background 0.13s, color 0.14s;
}
.footer-nav a:hover, .footer-legal a:hover {
  background: var(--vintage-yellow);
  color: var(--accent);
  border-color: var(--accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1rem;
  color: #fff;
  background: rgba(23, 67, 112, 0.12);
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 10px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.footer-contact a {
  color: var(--vintage-yellow);
  font-weight: 500;
  text-decoration: underline;
}
.footer-contact a:hover {
  color: var(--accent-light);
}
.footer-logo-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.footer-logo-links img {
  height: 50px;
  margin-bottom: 9px;
  filter: sepia(0.14) hue-rotate(9deg) brightness(1.03) contrast(1.1);
}

/* =====================
   Special Section styles
   ===================== */
.cta-contact {
  background: var(--vintage-blue);
  color: #fff;
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: var(--shadow-light);
}
.cta-contact h2, .cta-contact p {
  color: #fff;
  text-shadow: 0 2px 4px rgba(23,67,112,0.12);
}
.cta-contact .btn-primary {
  background: var(--vintage-yellow);
  color: var(--vintage-brown);
  border: 2px solid var(--vintage-brown);
  box-shadow: 0 2px 7px 0 rgba(255,242,176,0.12);
}
.cta-contact .btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

.contact-details {
  background: var(--vintage-yellow);
  border-radius: var(--radius);
}

/* =====================
   Policy / Modal Sections
   ===================== */
.privacy-policy, .gdpr, .cookies-policy {
  background: var(--secondary);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 36px 18px;
  box-shadow: 0 0 18px 0 rgba(196,107,0,0.06);
}
.privacy-policy h1,
.gdpr h1,
.cookies-policy h1,
.terms-of-use h1 {
  font-size: 2.3rem;
  color: var(--vintage-red);
}
.privacy-policy ul, .gdpr ul, .cookies-policy ul, .terms-of-use ul {
  margin-top: 12px;
  margin-bottom: 22px;
  list-style-type: circle;
  padding-left: 24px;
  color: var(--text-dark);
}
.privacy-policy ul li, .gdpr ul li, .cookies-policy ul li, .terms-of-use ul li {
  margin-bottom: 10px;
  background: transparent;
  color: var(--text-dark);
  padding: 0;
}

/**********************
   Cookie Consent Banner
 ***********************/
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--vintage-yellow);
  color: var(--text-dark);
  box-shadow: 0 -6px 32px 0 rgba(196,107,0,0.15);
  border-top: 3.5px solid var(--accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 13px 28px;
  z-index: 3500;
  font-size: 1.08rem;
  justify-content: space-between;
  gap: 14px;
  max-width: 100vw;
  /* mobile safe */
  transition: transform 0.24s cubic-bezier(.73,.06,.69,1.14), opacity 0.22s;
  opacity: 1;
  transform: translateY(0);
}
#cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
#cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
}
#cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 22px;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #fff;
  margin-left: 4px;
  padding: 9px 20px;
  font-size: 1rem;
  transition: background 0.14s, color 0.14s, box-shadow 0.12s;
}
#cookie-banner .reject {
  background: var(--vintage-red);
  border: 2px solid var(--vintage-red);
}
#cookie-banner .reject:hover {
  background: var(--vintage-brown);
  color: var(--vintage-yellow);
}
#cookie-banner .cookie-settings {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
#cookie-banner .cookie-settings:hover {
  background: var(--accent-light);
  color: var(--text-dark);
}
#cookie-banner button:hover, #cookie-banner button:focus {
  background: var(--accent-light);
  color: var(--text-dark);
  box-shadow: 0 4px 18px 0 rgba(244,151,27,0.09);
}

/**********************
   Cookie Modal Overlay
 ***********************/
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(50,22,10,0.11);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
#cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-dialog {
  background: var(--secondary);
  padding: 34px 24px 30px 24px;
  max-width: 90vw;
  width: 370px;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px 0 rgba(155, 122, 89, 0.19);
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  position: relative;
}
.cookie-modal-dialog h2 {
  font-size: 1.42rem;
  color: var(--accent);
  margin-bottom: 4px;
  text-align: center;
}
.cookie-modal-dialog .cookie-category {
  display: flex;
  align-items: center;
  font-size: 1rem;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 11px;
  gap: 14px;
}
.cookie-modal-dialog .toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}
.cookie-modal-dialog .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal-dialog .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: var(--accent-light);
  border-radius: 22px;
  transition: background 0.13s;
}
.cookie-modal-dialog .toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}
.cookie-modal-dialog .toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 2px; bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-modal-dialog .toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(22px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}
.cookie-modal-actions button {
  padding: 8px 18px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  font-size: 1.02rem;
}
.cookie-modal-actions .close-modal {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-modal-actions .close-modal:hover {
  background: var(--accent-light);
  color: var(--text-dark);
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--accent-light);
  color: var(--text-dark);
}

/*************************
   Micro-interactions & Misc
 **************************/
.card, .testimonial-card, .features ul li, .services ul li, .about ul li {
  transition: box-shadow 0.14s, transform 0.13s;
}
.card:hover, .testimonial-card:hover, .features ul li:hover, .services ul li:hover, .about ul li:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px) scale(1.01);
}

/******************************
   Responsive: Mobile First
 *******************************/
@media (max-width: 1024px) {
  .container { max-width: 98vw; }
  .content-wrapper { gap: 22px; }
}
@media (max-width: 900px) {
  .footer-logo-links, .content-wrapper { gap: 12px; }
  footer .content-wrapper {
    gap: 18px; flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.5rem; }
  .container { padding-left: 9px; padding-right: 9px; }
  .content-wrapper { gap: 11px; }
  .section, .hero, .cta-contact, .privacy-policy, .gdpr, .cookies-policy {
    margin-bottom: 26px;
    padding: 24px 5px;
  }
  .hero {
    padding: 38px 0 32px 0;
    border-bottom-width: 2px;
  }
  .hero h1 { font-size: 1.5rem; }
  .hero .content-wrapper { gap: 9px; }
  .footer-logo-links img { height: 39px; }
  /* Flex containers stack vert */
  .content-grid, .card-container, .features ul, .features ol, .services ul, .about ul {
    flex-direction: column;
    gap: 14px;
  }
  .footer-nav, .footer-legal {
    flex-direction: column;
    gap: 11px;
  }

  .testimonial-card,
  .card {
    padding: 16px 10px;
    min-width: 0;
    max-width: 100vw;
  }

  .text-image-section {
    flex-direction: column;
    gap: 13px;
  }
}
@media (max-width: 600px) {
  .hero, .cta-contact { padding: 13px 0 12px 0; }
  .footer-contact { padding: 8px 6px; font-size: 0.98rem; }
  .privacy-policy, .gdpr, .cookies-policy { padding: 13px 5px; }
  .testimonial-card, .card {
    padding: 10px 5px;
  }
  #cookie-banner { flex-direction: column; align-items: flex-start; padding: 10px 9px; gap: 10px; }
}
@media (max-width: 650px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 651px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =====================
   Utility Classes
   ===================== */
.text-center {text-align: center;}
.text-left {text-align: left;}
.text-right {text-align: right;}
.flex {display: flex;}
.flex-column {flex-direction: column;}
.flex-row {flex-direction: row;}
.justify-center {justify-content: center;}
.items-center {align-items: center;}
.items-start {align-items: flex-start;}
.gap-20 {gap: 20px;}
.gap-10 {gap: 10px;}
.mt-20 {margin-top: 20px;}
.mb-20 {margin-bottom: 20px;}
.rounded {border-radius: var(--radius);}
.shadow {box-shadow: var(--shadow-light);}

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

/* End of style.css */
