/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F8F8F2;
  color: #1A2939;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font: inherit;
}
:focus {
  outline: 2px solid #1ECB90;
}

/* TYPOGRAPHY */
h1, .display-1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.1;
  color: #1A2939;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
h2, .display-2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
  color: #1A2939;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.25;
  color: #1A2939;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #1A2939;
}
p,li,th,td {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1A2939;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
}
.subheadline {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  margin-bottom: 28px;
  color: #1A2939;
}
.testimonial-meta {
  font-size: 1rem;
  color: #1A2939;
  opacity: 0.85;
  margin-left: 10px;
}

/* BODY & GLOBAL STRUCTURE */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

/* HEADER */
header {
  background: #FFF;
  border-bottom: 2.5px solid #E4ECE9;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 0;
}
.logo img {
  height: 44px;
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1A2939;
  text-transform: uppercase;
  padding: 8px 8px 8px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #1ECB90;
  color: #1A2939;
}

/* PRIMARY BUTTONS */
.btn,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  background: #1ECB90;
  color: #1A2939;
  border: none;
  border-radius: 8px;
  box-shadow: 0 1.5px 6px rgba(26,41,57,0.08), 0 0.5px 1px rgba(30,203,144,0.12);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.btn:hover, .btn:focus {
  background: #1A2939;
  color: #1ECB90;
}
.btn:active {
  background: #159d6b;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  z-index: 201;
  background: #1A2939;
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus {
  background: #1ECB90;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  background: #1A2939;
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.61, 1, 0.88, 1.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 40px;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: 18px;
  background: #1ECB90;
  border: none;
  color: #1A2939;
  font-size: 2rem;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #fff;
  color: #1ECB90;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  margin-top: 40px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  text-transform: uppercase;
  padding: 12px 0;
  border-radius: 0;
  width: 90%;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #1ECB90;
  background: #18232f;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
    margin-left: 16px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 8px;
  }
  .logo img { height: 38px; }
  .main-nav a { font-size: 0.98rem; }
}
@media (max-width: 820px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .main-nav {
    gap: 10px;
    margin-left: 8px;
  }
  .btn, .btn-primary { padding: 10px 22px; font-size: 1rem; }
}
@media (max-width: 768px) {
  .main-nav, header .btn-primary {
    display: none;
  }
  .logo img {
    height: 36px;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  header .container {
    padding: 0 12px;
  }
  .mobile-nav { padding-left: 18px; }
}

/* === HERO SECTION === */
.hero-section {
  display: flex;
  align-items: center;
  background: #FFF;
  min-height: 340px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 6px 24px rgba(26,41,57,0.06);
  margin-bottom: 52px;
}
.hero-section .container {
  justify-content: center;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 540px;
}

/* === CARD AND GRID STRUCTURES === */
.card-container,
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.card,
.feature-item,
.course-card,
.stats-list li,
.schedule-table,
.thank-you-message {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2.5px 20px rgba(26,41,57,0.10);
  padding: 28px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  min-width: 220px;
  min-height: 160px;
  border: 2.5px solid #E4ECE9;
  transition: box-shadow 0.18s, border 0.15s, transform 0.18s;
}
.feature-item img { width: 42px; height: 42px; }
.card:hover,
.feature-item:hover,
.course-card:hover,
.stats-list li:hover,
.schedule-table:hover,
.thank-you-message:hover {
  box-shadow: 0 8px 36px rgba(26,41,57,0.14);
  border-color: #1ECB90;
  transform: translateY(-4px) scale(1.0125);
  z-index: 5;
}

/* === ADDITIONAL LAYOUTS === */
.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;
}

/* Testimonials & Cards */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #1A2939;
  box-shadow: 0 1.5px 10px rgba(26,41,57,0.08);
  border-radius: 12px;
  border: 2px solid #E4ECE9;
  padding: 20px;
  margin-bottom: 20px;
  min-height: 96px;
  position: relative;
  transition: box-shadow 0.15s, border 0.15s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(30,203,144,0.14);
  border-color: #1ECB90;
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  color: #1A2939;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0;
}
.testimonial-meta {
  font-style: italic;
  font-weight: 400;
}
.average-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #E4ECE9;
  color: #1A2939;
  border-radius: 7px;
  padding: 10px 22px;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 10px;
}
.average-rating img {
  width: 28px;
  height: 28px;
}

/* Feature items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
}
.features-grid {
  justify-content: flex-start;
}
/* Other list styles */
ul, ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 10px;
  position: relative;
  font-size: 1rem;
}
ul li::before {
  content: '';
  display: inline-block;
  margin-right: 10px;
  width: 10px;
  height: 10px;
  background: #1ECB90;
  clip-path: polygon(50% 0, 100% 90%, 0 90%);
  border-radius: 3px;
  vertical-align: middle;
}
.stats-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.stats-list li {
  flex: 1 1 160px;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f8f8f2;
  border: 2px solid #E4ECE9;
  border-radius: 10px;
  padding: 20px;
  color: #1A2939;
  margin-bottom: 20px;
}

/* ==== SCHEDULE TABLE LAYOUT ==== */
.schedule-table {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #FFF;
  border-radius: 12px;
  padding: 24px 16px;
  margin-bottom: 22px;
  border: 2px solid #E4ECE9;
  box-shadow: 0 2px 10px rgba(26,41,57,0.07);
}
.schedule-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.schedule-filters span {
  font-weight: 600;
  margin-right: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.schedule-filters select {
  background: #f8f8f2;
  border: 1.5px solid #1ECB90;
  border-radius: 6px;
  font-size: 1rem;
  padding: 6px 12px;
  font-family: 'Roboto', Arial, sans-serif;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Roboto', Arial, sans-serif;
}
thead tr {
  background: #E4ECE9;
}
th, td {
  text-align: left;
  padding: 12px 10px;
  color: #1A2939;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #1A2939;
  font-size: 1.04rem;
}
tbody tr {
  border-bottom: 1px solid #E4ECE9;
}
tbody tr:last-child {
  border-bottom: none;
}

/* COURSE CARDS (kursy.html) */
.course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.course-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2.5px 20px rgba(26,41,57,0.10);
  border: 2px solid #E4ECE9;
  padding: 24px 32px 16px 32px;
  min-width: 230px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.15s, transform 0.18s;
}
.course-card:hover {
  box-shadow: 0 8px 36px rgba(30,203,144,0.17);
  border-color: #1ECB90;
  transform: translateY(-4px) scale(1.015);
}

/* THANK YOU MESSAGE (thanks.php) */
.thank-you-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 38px 28px;
  background: #fff;
  border-radius: 14px;
  border: 2px solid #E4ECE9;
  box-shadow: 0 2.5px 20px rgba(26,41,57,0.10);
}
.thank-you-message img {
  width: 62px; height: 62px;
}

/* MAP PLACEHOLDER - kontakt.html */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info,
.map-placeholder {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #E4ECE9;
  box-shadow: 0 2px 10px rgba(26,41,57,0.07);
  padding: 20px 18px;
}
.map-placeholder img {
  width: 100%; max-width: 180px;
  margin-bottom: 10px;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 2px solid #E4ECE9;
  padding: 36px 0 12px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #1A2939;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 4px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #1ECB90;
  background: #F8F8F2;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-contact img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #F8F8F2;
}
.footer-address {
  font-size: 1rem;
  color: #1A2939;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-address img {
  height: 18px; width: 18px; vertical-align: middle; margin: 0 3px;
}
.footer-copy {
  color: #758394;
  font-size: 0.96rem;
  text-align: left;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  background: #fff;
  color: #1A2939;
  width: 100vw;
  box-shadow: 0 -2.5px 24px rgba(26,41,57,0.11);
  border-top: 2.5px solid #1ECB90;
  z-index: 8001;
  padding: 20px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.32s;
}
.cookie-consent-banner button {
  margin-left: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: #1ECB90;
  color: #1A2939;
  transition: background 0.16s, color 0.16s;
}
.cookie-consent-banner button.reject {
  background: #E4ECE9;
  color: #1A2939;
  margin-left: 0;
}
.cookie-consent-banner button.settings {
  background: #1A2939;
  color: #fff;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #1A2939;
  color: #1ECB90;
}
.cookie-consent-banner button.settings:hover,
.cookie-consent-banner button.settings:focus {
  background: #1ECB90;
  color: #1A2939;
}
/* Hide banner when closed */
.cookie-consent-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}

/* COOKIE BANNER MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9000;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,41,57,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 44px rgba(26,41,57,0.22);
  padding: 32px 26px;
  max-width: 400px;
  min-width: 300px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1A2939;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.24rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category label {
  flex: 1 1 auto;
}
.cookie-modal .switch {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #E4ECE9;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .switch:checked {
  background: #1ECB90;
}
.cookie-modal .switch::-webkit-slider-thumb {
  appearance: none;
  background: #fff;
  border-radius: 50%;
  width: 20px; height: 20px;
  box-shadow: 0 2px 8px rgba(26,41,57,0.09);
  position: relative;
  left: 0;
  transition: left 0.2s;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #1ECB90;
}
.cookie-modal .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: #1ECB90;
  color: #1A2939;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal button.close {
  background: #E4ECE9;
  color: #1A2939;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #1A2939;
  color: #1ECB90;
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 960px) {
  .stats-list, .card-container, .features-grid, .course-list {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 850px) {
  .testimonial-card, .feature-item, .course-card, .stats-list li, .card {
    min-width: 160px;
    padding: 18px 10px;
    font-size: 15px;
  }
  .hero-section .content-wrapper {
    max-width: 96vw;
  }
}
@media (max-width: 760px) {
  .hero-section { border-radius: 0 0 18px 18px; }
  .hero-section .container {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .content-wrapper { gap: 12px; }
  .section {
    margin-bottom: 38px;
    padding: 22px 8px;
  }
  .stats-list li,
  .card,
  .feature-item,
  .course-card {font-size: 0.97rem;}
}
@media (max-width: 640px) {
  .footer-contact, .content-grid, .contact-details {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
  }
  .hero-section .content-wrapper { align-items: flex-start; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  .btn, .btn-primary {
    font-size: 1rem;
    padding: 10px 16px;
  }
  .thank-you-message { padding: 26px 10px; }
  .course-card, .feature-item, .stats-list li { padding: 10px 8px; }
}
@media (max-width: 480px) {
  .testimonial-card, .feature-item, .course-card {
    padding: 10px 6px;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: center; gap: 18px; }
}


/* === MICRO INTERACTIONS & ANIMATIONS === */
.btn, .btn-primary, .cookie-consent-banner button, .cookie-modal button {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.17s;
}
.btn:active, .btn-primary:active, .cookie-consent-banner button:active {
  transform: scale(0.97);
}
.card, .feature-item, .testimonial-card, .course-card {
  transition-property: box-shadow, border, transform;
  transition-duration: 0.18s;
}

/* ====== GEOMETRIC STRUCTURED ART DETAILS ====== */
/* Add geometric accent border shapes */
.card, .feature-item, .course-card, .thank-you-message, .stats-list li {
  box-shadow: 0 2.5px 20px rgba(26,41,57,0.10), 0 0.5px 1.5px #1ECB9018;
  border-radius: 14px 38px 14px 38px/16px 26px 16px 26px;
}

/* Background accent for hero-section */
.hero-section {
  position: relative;
  overflow: visible;
}
.hero-section::after {
  content: '';
  position: absolute;
  right: 0; bottom: -32px;
  width: 134px; height: 134px;
  background: #1ECB90;
  opacity: 0.16;
  border-radius: 36% 76% 62% 14%;
  pointer-events: none;
  z-index: 1;
}

/* Accent triangle before important headlines */
h1::before, h2::before, .display-1::before, .display-2::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 16px;
  background: #1ECB90;
  clip-path: polygon(100% 0, 0% 0, 50% 100%);
  vertical-align: middle;
  border-radius: 3px 0 10px 0;
}

/* Phone/Email icons in lists tighter */
.contact-info ul li img, .footer-address img {
  margin-right: 7px;
  vertical-align: middle;
}

/* VISUAL SEPARATORS */
.section:not(:first-child) {
  border-top: 2px solid #E4ECE9;
}


/* === UTILITIES === */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-center {
  align-items: center;
  justify-content: center;
}
.gap-20 {
  gap: 20px;
}
.gap-24 {
  gap: 24px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mt-20 {
  margin-top: 20px;
}
.centered {
  text-align: center;
}

/* ===== END OF CSS ===== */
