/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F5EF;
  color: #282615;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* GOOGLE FONTS (import, fallback if ignored) */
@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&display=swap');
}
@font-face {
  font-family: 'Roboto';
  src: local('Roboto'), url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
}

/* VARIABLES VINTAGE RETRO PALETTE */
:root {
  --primary: #192F5D;
  --secondary: #4AACCF;
  --accent: #F0F3FA;
  --vintage-yellow: #FAE09F;
  --vintage-orange: #F4B860;
  --vintage-brown: #A67C52;
  --vintage-blue: #4B6A88;
  --vintage-red: #B74F37;
  --vintage-green: #8EA46E;
  --section-bg: #FAF6EE;
  --pattern-light: rgba(250,224,159,0.13);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* UTILITY */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 5px 20px 0 rgba(41,37,26,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: 0 12px 36px 0 rgba(41,37,26,0.12);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}
.features,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid {
  gap: 32px;
  margin-top: 32px;
}
.feature-card {
  background: #FFFDF3;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(166,124,82,0.07);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 220px;
  flex: 1 1 240px;
  border: 2px solid var(--vintage-yellow);
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.feature-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  filter: drop-shadow(2px 2px 2px #F4B86030);
}
.feature-card:hover {
  background: var(--vintage-yellow);
  border-color: var(--vintage-orange);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: 18px;
  background: var(--pattern-light);
  border-left: 8px solid var(--vintage-orange);
  padding: 20px 24px 20px 32px;
  border-radius: 10px 28px 28px 10px;
  box-shadow: 0 4px 16px 0 rgba(166,124,82,0.04);
}

/***** TYPOGRAPHY *****/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 8px;
  text-shadow: 1px 1px 0 #FFFDF3, 2px 2px 2px #f4b86018;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.37rem;
  line-height: 1.25;
  color: var(--vintage-brown);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
}
body, p, ul, ol, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #282615;
  line-height: 1.56;
}
.subheadline {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--vintage-blue);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 22px;
}
blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--primary);
  background: #FFFDF5;
  border-left: 8px solid var(--vintage-orange);
  padding: 20px 32px;
  border-radius: 16px;
  font-style: italic;
  box-shadow: 0 2px 8px 0 #A67C5220;
  margin-bottom: 18px;
}

/***** HEADER & NAVIGATION *****/
header {
  background: var(--vintage-yellow);
  border-bottom: 4px solid var(--primary);
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 2px 12px 0 #A67C5220;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px 14px 20px;
}
.logo-link img {
  height: 52px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.07rem;
  color: var(--primary);
  letter-spacing: 0.03em;
  border-bottom: 3px solid transparent;
  padding: 5px 0 4px 0;
  position: relative;
  transition: border-color 0.18s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--vintage-red);
  border-bottom: 3px solid var(--vintage-red);
}
.cta-button {
  background: var(--vintage-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px 0 #B74F3720;
  cursor: pointer;
  outline: none;
  margin-left: 20px;
  transition: background 0.18s, color 0.15s, box-shadow 0.2s, transform 0.18s;
  position: relative;
  text-shadow: 1px 1px 2px #A67C5250;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: var(--vintage-yellow);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 20px 0 #B74F3736;
}

/* HAMBURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--primary);
  cursor: pointer;
  padding: 8px 18px 8px 8px;
  z-index: 31;
  border-radius: 6px;
  transition: background 0.17s;
}
.mobile-menu-toggle:hover {
  background: #fae09f99;
}
/* MOBILE MENU DRAWER OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--vintage-yellow);
  box-shadow: 0 0 100px 0 #192F5DBB;
  transform: translateX(-105%);
  transition: transform 0.38s cubic-bezier(0.77,0,0.18,1);
  z-index: 40;
  display: flex;
  flex-direction: column;
  padding: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--vintage-red);
  align-self: flex-end;
  margin: 18px 22px 0 0;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover {
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 27px;
  align-items: flex-start;
  padding: 40px 32px 0 38px;
  flex: 1 1 0;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 3px 0;
  border-bottom: 2px solid transparent;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s, border-color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--vintage-red);
  background: #fffbee;
  border-bottom: 2.5px solid var(--vintage-red);
}

/****** HERO SECTION ******/
.hero {
  background: linear-gradient(120deg, #FAE09F 55%, #F0F3FA 100%);
  padding: 64px 0 48px 0;
  border-bottom: 4px dashed var(--vintage-orange);
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -20px;
  left: -100px;
  width: 220px;
  height: 34px;
  background: repeating-linear-gradient(135deg, #4B6A88, #4B6A88 15px, #F0F3FA 15px, #F0F3FA 30px);
  opacity: 0.11;
  pointer-events: none;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

/****** SERVICE PRICING & UL ******/
.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.service-list li {
  background: #FFFDF3;
  border-left: 8px solid var(--vintage-blue);
  border-radius: 10px 22px 22px 10px;
  padding: 20px 32px 20px 28px;
  position: relative;
  box-shadow: 0 3px 16px 0 #192F5D14;
}
.service-list h3 {
  font-size: 1.08rem;
  color: var(--primary);
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.service-list h3 span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--vintage-brown);
  background: var(--vintage-yellow);
  padding: 1px 13px;
  border-radius: 15px;
  letter-spacing: 0.01em;
  margin-left: 8px;
}
.service-list p {
  font-size: 0.98rem;
  margin-bottom: 0;
}

/****** TESTIMONIALS ******/
.testimonials {
  background: var(--vintage-yellow);
  border-top: 5px dotted var(--vintage-brown);
  border-bottom: 5px dotted var(--vintage-blue);
  padding: 55px 0;
}
.testimonials .content-wrapper {
  align-items: center;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  justify-content: center;
  margin-top: 38px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 26px 30px 18px 30px;
  min-width: 270px;
  min-height: 180px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px 0 #192F5D18;
  border: 2.2px solid var(--vintage-orange);
  margin-bottom: 20px;
  transition: transform 0.19s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-3px) scale(1.03) rotate(-1.1deg);
  box-shadow: 0 8px 32px 0 #192F5D30;
}
.testimonial-card blockquote {
  color: var(--primary);
  background: none;
  border-left: none;
  box-shadow: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  text-align: center;
}
.testimonial-name {
  font-family: var(--font-display);
  color: var(--vintage-brown);
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  background: var(--vintage-yellow);
  border-radius: 12px;
  padding: 2px 13px 2px 13px;
  margin-top: 7px;
  box-shadow: 0 2px 7px 0 #A67C520A;
}

/****** CONTACT / DETAILS ******/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 480px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.contact-details li {
  display: flex;
  align-items: center;
  font-size: 1.01rem;
  gap: 13px;
  line-height: 1.4;
}
.contact-details img {
  width: 26px;
  height: 26px;
  filter: drop-shadow(1px 1px 2px #fae09f60);
}
.contact-map {
  background: #FFFDF3;
  border-left: 6px solid var(--vintage-brown);
  border-radius: 7px 18px 18px 7px;
  padding: 18px 28px 20px 20px;
  font-size: 1rem;
  box-shadow: 0 3px 12px 0 #8EA46E17;
  margin-top: 19px;
}
.contact a {
  color: var(--vintage-blue);
  text-decoration: underline dotted var(--vintage-blue);
  font-weight: 500;
  transition: color 0.17s;
}
.contact a:hover {
  color: var(--vintage-red);
}

/******* FOOTER *******/
footer {
  background: var(--primary);
  color: #fff;
  padding: 30px 0 14px 0;
  border-top: 7px double var(--vintage-yellow);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
.footer-menu {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: var(--vintage-yellow);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  position: relative;
  border-bottom: 2px dashed transparent;
  transition: color 0.18s, border-color 0.16s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: var(--vintage-orange);
  border-bottom: 2px dashed var(--vintage-orange);
}
.footer-info {
  margin-top: 1px;
  color: var(--vintage-yellow);
  font-size: 0.97rem;
  opacity: 0.97;
}

/******* OTHER FLEX 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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** MODALS & BANNER (COOKIE CONSENT) ******/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--vintage-blue);
  color: #fff;
  width: 100vw;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px 16px 10px;
  box-shadow: 0 -4px 30px 0 #192F5D40;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.01em;
  gap: 34px;
  opacity: 1;
  transition: opacity 0.3s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  background: var(--vintage-yellow);
  color: var(--primary);
  border: none;
  border-radius: 24px;
  padding: 8px 19px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 6px 0 #A67C5217;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.18s, color 0.16s, transform 0.15s;
}
.cookie-banner button.accept {
  background: var(--vintage-green);
  color: #fff;
}
.cookie-banner button.reject {
  background: var(--vintage-red);
  color: #fff;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: var(--vintage-orange);
  color: var(--primary);
  transform: translateY(-1.2px) scale(1.04);
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 120;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #00000090;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  padding: 38px 34px 28px 34px;
  min-width: 340px;
  min-height: 280px;
  box-shadow: 0 8px 48px 0 #192F5D40;
  font-family: var(--font-display);
  color: var(--primary);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInModal 0.45s cubic-bezier(.17,.67,.83,.67);
}
@keyframes fadeInModal {
  0% { transform: translateY(42px) scale(0.94); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.cookie-modal .slider {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #EFEDE7;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .slider:checked {
  background: var(--vintage-green);
}
.cookie-modal .slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 2px 4px 0 #192F5D18;
  transform: translateY(2px);
}
.cookie-modal .slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  border: none;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 13px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: var(--vintage-yellow);
  color: var(--primary);
  border: none;
  border-radius: 24px;
  padding: 7px 19px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 6px 0 #A67C5217;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.18s;
}
.cookie-modal button.accept {
  background: var(--vintage-green);
  color: #fff;
}
.cookie-modal button.reject {
  background: var(--vintage-red);
  color: #fff;
}
.cookie-modal button.close {
  background: var(--vintage-blue);
  color: #fff;
  position: absolute;
  top: 14px;
  right: 21px;
  padding: 1px 12px;
  font-size: 1.45rem;
  border-radius: 20px;
  font-weight: 800;
}
.cookie-modal button:hover {
  background: var(--vintage-orange);
  color: var(--primary);
}

/***** VINTAGE/RETRO FLAVOUR DECORS *****/
section {
  background: var(--section-bg);
  box-shadow: 0 6px 34px 0 #A67C520c;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}
section:before {
  content: '';
  display: block;
  position: absolute;
  left: 30px;
  top: 18px;
  width: 80px;
  height: 17px;
  background: repeating-linear-gradient(90deg, #A67C52, #A67C52 8px, transparent 8px, transparent 21px);
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}
section:after {
  content: '';
  display: block;
  position: absolute;
  right: 50px;
  bottom: 10px;
  width: 60px;
  height: 13px;
  background: repeating-linear-gradient(135deg, #4AACCF, #4AACCF 8px, transparent 8px, transparent 17px);
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}

/***** RESPONSIVE DESIGN *****/
@media (max-width: 1024px) {
  .container {
    max-width: 90vw;
    padding: 0 10px;
  }
  .feature-grid {
    gap: 18px;
  }
  .testimonial-slider {
    gap: 19px;
  }
  section {
    padding: 32px 7px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .footer-menu {
    gap: 11px;
  }
  .feature-grid {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    padding: 9px 9px;
    gap: 8px;
  }
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
    padding: 11px 16px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
    position: relative;
    margin-left: auto;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 28px;
  }
  .content-wrapper {
    gap: 19px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .footer-menu {
    flex-direction: column;
    gap: 9px;
  }
  .service-list li {
    padding: 14px 13px 14px 14px;
  }
}
@media (max-width: 480px) {
  html, body {
    font-size: 14px;
  }
  .logo-link img {
    height: 38px;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 0.97rem; }
  .testimonial-card {
    padding: 15px 9px 9px 9px;
    min-width: 170px;
  }
  section {
    padding: 17px 2px;
    border-radius: 10px;
  }
}

/****** MODAL FOCUS FIX ******/
.cookie-modal input[type="checkbox"]:focus + label,
.cookie-modal button:focus {
  outline: 2px dashed var(--vintage-red);
  outline-offset: 2px;
}

/***** MICRO-INTERACTIONS *****/
.button-bounce {
  animation: bounceUp 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes bounceUp {
  0%   { transform: translateY(6px) scale(0.98); }
  60%  { transform: translateY(-5px) scale(1.02); }
  100% { transform: none; }
}

/***** CUSTOM SCROLLBAR *****/
::-webkit-scrollbar {
  width: 10px;
  background: #faf6ee;
}
::-webkit-scrollbar-thumb {
  background: var(--vintage-brown);
  border-radius: 7px;
}

/***** CLASSES FROM HTML STRUCTURE (MANDATORY SPACING) ******/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** UTILITY CLASSES *****/
.hide { display: none !important; }
.flex { display: flex !important; }

/* END CSS */
