/* 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 {
  height: 100%;
  font-size: 16px;
}

body {
  min-height: 100vh;
  background: #23292c;
  color: #f2f3f5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
  display: block;
}

input, textarea, button, select {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}

a {
  color: #A3D28D;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #d0eabe;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

::-webkit-scrollbar {
  width: 8px;
  background: #23292c;
}
::-webkit-scrollbar-thumb {
  background: #2f4b57;
  border-radius: 4px;
}

/* BRAND FONTS & HIERARCHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, Helvetica, sans-serif;
  color: #FBF7F0;
  font-weight: 800;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.17;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, blockquote, cite {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #d2dde0;
}
strong {
  color: #A3D28D;
  font-weight: bold;
}

/* LAYOUT CONTAINERS */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* SECTIONS & ALIGNMENT (MANDATORY PATTERNS) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #27333a;
  border-radius: 12px;
  box-shadow: 0 4px 22px 0 rgba(41, 72, 90, 0.10), 0 1px 4px 0 rgba(40,40,40,0.08);
  overflow: hidden;
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #f6f9fa;
  color: #212b2f;
  border-radius: 10px;
  box-shadow: 0 2px 16px 0 rgba(41,72,90,0.07);
  margin-bottom: 24px;
  min-width: 240px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #23292c 94%, #29485A 100%); 
  padding: 64px 0 64px 0;
  box-shadow: 0 5px 24px 0 rgba(41, 72, 90, 0.15);
}
.hero h1 {
  color: #A3D28D;
  text-shadow: 0 2px 7px #17222833;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.hero p {
  color: #FBF7F0;
  font-size: 1.17rem;
  margin-bottom: 28px;
}
.hero .btn-primary {
  font-size: 1.125rem;
}

/* ADVANTAGES / FEATURES GRID */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.feature-grid > div {
  background: #27333a;
  border-radius: 12px;
  box-shadow: 0 3px 16px 0 rgba(163, 210, 141, 0.11);
  padding: 28px 24px 24px 24px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid #202529;
  position: relative;
}
.feature-grid img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  margin-bottom: 6px;
  filter: brightness(1.13);
}
.feature-grid h3 {
  color: #A3D28D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  min-width: 160px;
  max-width: 100%;
  padding: 14px 30px;
  font-size: 1rem;
  box-shadow: 0 5px 20px 0 rgba(41,72,90,.14);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.17s, color 0.18s, box-shadow 0.14s, transform 0.16s;
  cursor: pointer;
  border: none;
  margin: 12px 0 0 0;
}
.btn-primary {
  background: #A3D28D;
  color: #23292c;
  border: 2px solid #A3D28D;
}
.btn-primary:hover, .btn-primary:focus {
  background: #25413F;
  color: #A3D28D;
  border-color: #456F4A;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(163,210,141,.16);
}

.btn-secondary {
  background: #29485A;
  color: #A3D28D;
  border: 2px solid #29485A;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #1e313c;
  color: #fff;
  border-color: #A3D28D;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 7px 28px 0 rgba(41,72,90,0.09);
}

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

/* NAVIGATION BAR */
header {
  background: #23292c;
  border-bottom: 2px solid #27333a;
  padding: 0;
  width: 100%;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 22px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  color: #A3D28D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.035em;
  text-shadow: 0 2px 8px #1b22270d;
  padding: 8px 10px 8px 10px;
  border-radius: 6px;
  transition: background 0.16s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #27333a;
  color: #FBF7F0;
}
header .btn-primary {
  margin-left: 16px;
  min-width: 110px;
  font-size: 1rem;
}

/* MOBILE MENU (Burger) */
.mobile-menu-toggle {
  display: none;
  background: #A3D28D;
  color: #23292c;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color .2s;
  z-index: 102;
  border: 1.5px solid #A3D28D;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #29485A;
  color: #A3D28D;
  border-color: #29485A;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #23292ce6;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-110%);
  transition: transform 0.33s cubic-bezier(.77,.12,.36,1.08);
  padding: 0 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 20px;
  margin-left: 16px;
  font-size: 2.1rem;
  color: #A3D28D;
  background: none;
  border: none;
  align-self: flex-start;
  cursor: pointer;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #27333a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-top: 32px;
  width: 100vw;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 1.24rem;
  color: #FBF7F0;
  background: #2e3940;
  border-radius: 8px;
  padding: 15px 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  transition: background 0.18s, color 0.18s;
  min-width: 88px;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A3D28D;
  color: #233024;
}

@media (max-width: 1050px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 24px;
  }
}
@media (max-width: 850px) {
  header .container {
    gap: 10px;
  }
  .feature-grid > div {
    min-width: 44vw;
    max-width: 90vw;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 9px;
  }
  .hero {
    padding: 42px 0 42px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  header .container {
    height: auto;
    flex-direction: row;
    gap: 10px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    padding: 14px;
    margin-bottom: 20px;
    gap: 13px;
  }
  .content-wrapper {
    gap: 22px;
  }
  .section {
    margin-bottom: 44px;
    padding: 20px 9px;
  }
  .card-container, .content-grid {
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .feature-grid > div {
    padding: 18px 9px 16px 9px;
    min-width: 92vw;
    max-width: 97vw;
    font-size: 0.97rem;
  }
  .hero {
    padding: 24px 0 24px 0;
  }
  h1 {
    font-size: 1.5rem;
  }
}

/* PRICING TABLE */
.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #1e2327;
  border-radius: 12px;
  box-shadow: 0 3px 14px 0 rgba(41,72,90,0.11);
  padding: 28px 24px;
  margin: 24px 0 20px 0;
}
.pricing-table table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  background: #23292c;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
.pricing-table th, .pricing-table td {
  padding: 14px 12px;
  font-size: 1rem;
  border-bottom: 1px solid #27333a;
}
.pricing-table th {
  background: #29485A;
  color: #A3D28D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-align: left;
  letter-spacing: 0.03em;
}
.pricing-table td {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #FBF7F0;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.service-inclusions, .extras {
  background: #27333a;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.service-inclusions ul, .extras ul {
  list-style-type: disc;
  margin-left: 23px !important;
}

/* CTA SECTION */
.cta-section {
  background: #27333a;
  border-radius: 16px;
  box-shadow: 0 3px 20px 0 rgba(163,210,141,.07);
  margin-bottom: 44px;
  padding: 38px 0;
}
.cta-section h2 {
  color: #A3D28D;
  margin-bottom: 8px;
}
.cta-section p {
  color: #d4dfdb;
  margin-bottom: 22px;
}

/* TESTIMONIALS */
.testimonial-card blockquote {
  font-size: 1.07rem;
  color: #183137;
  font-style: italic;
  margin-bottom: 10px;
  border-left: 4px solid #A3D28D;
  padding-left: 13px;
}
.testimonial-card cite {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #29485A;
  font-size: .97rem;
  font-style: normal;
}

/* GALLERY / CASE STUDY BLOCKS */
.case-study-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.case-study-blocks .text-section {
  background: #27333a;
  border-radius: 11px;
  padding: 18px 15px 16px 15px;
  box-shadow: 0 1px 12px 0 rgba(41,72,90,0.07);
}
.short-pet-transformation-stories {
  background: #1e2327;
  border-radius: 9px;
  padding: 10px 13px;
  color: #A3D28D;
  margin-bottom: 7px;
}

/* SERVICE LIST */
.service-list {
  background: #27333a;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(41,72,90,0.07);
  padding: 22px 19px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 22px;
}
.service-list h2 {
  color: #A3D28D;
  margin-bottom: 6px;
}
.service-list ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #d2dde0;
  margin-bottom: 7px;
}
.service-list ul img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* ADDRESS & CONTACT */
.address-block, .opening-hours, .embedded-map {
  background: #27333a;
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 20px 14px;
  color: #FBF7F0;
  box-shadow: 0 1px 9px 0 rgba(41,72,90,0.06);
}
.opening-hours img, .address-block img {
  margin-right: 9px;
  vertical-align: middle;
  height: 18px;
}

/* FOUNDER MESSAGE, EXPERIENCE */
.founder-message, .experience-highlight, .wellness-info {
  background: #23292c;
  border-left: 5px solid #A3D28D;
  padding: 14px 17px;
  border-radius: 8px;
  color: #FBF7F0;
  margin-top: 12px;
  margin-bottom: 10px;
  font-size: 1.04rem;
  box-shadow: 0 1px 7px 0 rgba(163,210,141,0.08);
}

/* FOOTER */
footer {
  width: 100%;
  background: #202529;
  color: #FBF7F0;
  font-size: .97rem;
  border-top: 2px solid #29485A;
  margin-top: 44px;
  box-shadow: 0 -4px 18px 0 rgba(41,72,90,.09);
  padding: 0 0 20px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 33px;
  justify-content: space-between;
  padding: 38px 20px 6px 20px;
}
.footer-brand img {
  height: 58px;
  width: auto;
  margin-bottom: 7px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
footer nav a {
  color: #A3D28D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color .16s;
}
footer nav a:hover, footer nav a:focus {
  color: #90c87b;
}
.mini-contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #FBF7F0;
}
.mini-contact-info img {
  vertical-align: middle;
  margin-right: 8px;
  height: 18px;
}
.privacy-notice {
  margin-top: 14px;
  color: #92a6b0;
  font-size: 0.95rem;
}
@media (max-width: 900px) {
  footer .container { gap: 18px; }
  .footer-brand img { height: 42px; }
}
@media (max-width: 600px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 9px 4px 9px;
  }
}

/* THANK YOU PAGE */
.thank-you {
  background: #27333a;
  border-radius: 16px;
  box-shadow: 0 3px 12px 0 rgba(163,210,141,.07);
  padding: 44px 0 32px 0;
  margin-bottom: 44px;
  text-align: center;
}
.thank-you h1 {
  color: #A3D28D;
  font-size: 2.3rem;
}
.next-steps {
  background: #1e2327;
  border-radius: 12px;
  padding: 16px 18px 13px 18px;
  margin: 15px 0 19px 0;
}
.next-steps ul {
  list-style-type: disc;
  margin-left: 21px !important;
}

/* ANIMATIONS */
.btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.18s, border 0.14s, transform .12s;
}
.card, .feature-grid > div, .testimonial-card, .pricing-table, .thank-you, .cta-section, .section {
  transition: box-shadow .23s, transform .18s;
}
.card:hover, .feature-grid > div:hover {
  box-shadow: 0 12px 38px 0 rgba(163,210,141,.16);
  transform: translateY(-3px) scale(1.02);
  border-color: #A3D28D;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  background: #23292c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 22px 26px;
  box-shadow: 0 -4px 20px 0 rgba(41,72,90,0.12);
  font-size: 1rem;
  color: #FBF7F0;
  animation: bannerSlideIn 0.68s cubic-bezier(.5,.98,.28,1.05);
}
@keyframes bannerSlideIn {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner-msg {
  flex: 2 1 280px;
  color: #FBF7F0;
  font-size: 1rem;
}
.cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  min-width: 54px;
  padding: 9px 18px;
  border-radius: 8px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  margin-left: 6px;
  transition: background 0.13s, color .13s, transform .1s;
}
.cookie-btn.accept {
  background: #A3D28D;
  color: #233024;
  border: 1px solid #A3D28D;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #25413F;
  color: #A3D28D;
  border-color: #90C87B;
  transform: translateY(-1px);
}
.cookie-btn.reject {
  background: #29485A;
  color: #A3D28D;
  border: 1px solid #29485A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #212f3b;
  color: #fff;
  border-color: #A3D28D;
  transform: translateY(-1px);
}
.cookie-btn.settings {
  background: #27333a;
  color: #A3D28D;
  border: 1px solid #2d4660;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #A3D28D;
  color: #27333a;
  border-color: #A3D28D;
  transform: translateY(-1px);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
    gap: 13px;
    font-size: 0.98rem;
  }
  .cookie-btn { min-width: 90px; width: 100%; }
  .cookie-btns { width: 100%; justify-content: flex-end; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-background {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 10020;
  background: #050708bb;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn .51s cubic-bezier(.87,-0.01,.43,1.07);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #23292c;
  color: #FBF7F0;
  border-radius: 18px;
  max-width: 410px;
  min-width: 280px;
  width: 95vw;
  padding: 36px 30px 30px 30px;
  box-shadow: 0 9px 42px 0 rgba(41,72,90,0.17);
  display: flex;
  flex-direction: column;
  gap: 19px;
  font-size: 1.02rem;
  animation: modalPopIn 0.44s;
  position: relative;
}
@keyframes modalPopIn {
  from { transform: scale(.8); opacity: 0.2; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #A3D28D;
  margin-bottom: 6px;
  font-size: 1.28rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #27333a;
  padding: 11px 14px;
  border-radius: 8px;
}
.cookie-modal .category-label {
  font-weight: 600;
  color: #A3D28D;
}
.cookie-modal .category-desc {
  font-size: 0.98rem;
  color: #c6d5ce;
  margin-top: 3px;
}
.toggle-switch {
  display: inline-flex;
  align-items: center;
}
.toggle-switch input[type="checkbox"] {
  display: none;
}
.toggle-slider {
  width: 40px;
  height: 22px;
  background: #2e3940;
  border-radius: 12px;
  position: relative;
  transition: background 0.15s;
}
.toggle-slider::before {
  content: "";
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #A3D28D;
  transition: transform 0.2s, background .15s;
}
.toggle-switch input[type="checkbox"]:checked + .toggle-slider {
  background: #A3D28D;
}
.toggle-switch input[type="checkbox"]:checked + .toggle-slider::before {
  background: #29485A;
  transform: translateX(17px);
}
.toggle-switch input[disabled] + .toggle-slider {
  filter: grayscale(0.7);
  opacity: 0.45;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 21px;
  font-size: 1.6rem;
  color: #A3D28D;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: background .13s;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #27333a;
}
@media (max-width: 600px) {
  .cookie-modal {
    max-width: 99vw;
    padding: 24px 9px 20px 9px;
  }
  .cookie-modal .category {
    font-size: 0.98rem;
    padding: 7px 6px;
  }
}

/* GLOBAL ACCESSIBILITY/INTERACTION */
:focus-visible {
  outline: 2px solid #A3D28D;
  outline-offset: 2px;
}

/* SPACING UTILITIES */
.mt-2 { margin-top: 12px !important; }
.mb-2 { margin-bottom: 12px !important; }
.mt-3 { margin-top: 20px !important; }
.mb-3 { margin-bottom: 20px !important; }
.gap-2 { gap: 12px !important; }
.gap-3 { gap: 22px !important; }

/* END OF STYLE.CSS */

