/* RESET & BASE TYPOGRAPHY (Normalize + Artistic Touch) */
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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #F6F7F9;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #205375;
  min-height: 100vh;
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #205375;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #F5A623;
}
ul, ol {
  padding-left: 1.5rem;
}
section, header, footer, main, nav {
  display: block;
}

/* Brand Font and Artistic Headers */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  letter-spacing: .5px;
  font-weight: 800;
  color: #205375;
  text-shadow: 1px 2px 0px #F6F7F9, 0 0 2px #F5A62322;
  margin-bottom: 24px;
}
h1 {font-size: 2.4rem; line-height: 1.18; margin-bottom: 20px;}
h2 {font-size: 2rem; margin-bottom: 18px;}
h3 {font-size: 1.28rem; margin-bottom: 10px;}
h4 {font-size: 1.08rem; margin-bottom: 8px;}

p, li, span, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #205375;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong, b { font-weight: 700; color: #205375; }

/* ===== LAYOUT CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.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;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px #20537517, 0 1.5px 5px #F5A62310;
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px #2053751a, 0 4px 10px #F5A62333;
  transform: translateY(-4px) scale(1.025);
}

.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;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 10px #20537512;
  margin-bottom: 20px;
  min-width: 0;
  max-width: 700px;
  border-left: 6px solid #F5A623;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px #20537523, 0 2px 8px #F5A62323;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6F7F9;
  border-radius: 15px;
  box-shadow: 0 2px 8px #2053750e;
  padding: 24px 20px;
  margin-bottom: 24px;
  position: relative;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
}
.feature-item:hover {
  background: #f5d19311;
  box-shadow: 0 6px 18px #F5A62322;
  transform: translateY(-4px) scale(1.03);
}

/* For team bios, blog articles, and custom flex blocks */
.team-bios, .article-preview-grid, .blog-services {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-bios .bio,
.blog-services .service-item,
.article-preview-grid article {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 8px #F5A62313;
  padding: 22px 18px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.2s, transform 0.12s;
}
.team-bios .bio:hover,
.article-preview-grid article:hover,
.blog-services .service-item:hover {
  box-shadow: 0 4px 20px #20537522, 0 2px 8px #F5A62324;
  transform: translateY(-3px) scale(1.022);
}

@media (max-width: 992px) {
  .container { max-width: 98vw; padding-left: 12px; padding-right: 12px; }
  .content-wrapper { gap: 18px; }
  .team-bios, .article-preview-grid, .blog-services { gap: 16px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .content-grid,
  .team-bios,
  .article-preview-grid,
  .blog-services,
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 550px) {
  html { font-size: 14px; }
  .card, .testimonial-card, .feature-item {
    padding: 16px 10px;
  }
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: #fff;
  box-shadow: 0 3px 16px #20537509;
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 20px 12px 20px;
  position: relative;
}
header img[alt="FischGrill Rezepte"] {
  height: 50px;
  width: auto;
  margin-right: 8px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-size: 1rem;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a.button-primary {
  background: #F5A623;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 22px;
  box-shadow: 0 1.5px 4px #F5A62333;
  padding: 9px 24px;
  margin-left: 8px;
  transition: background 0.16s, transform 0.11s;
}
.main-nav a.button-primary:hover, .main-nav a.button-primary:focus {
  background: #205375;
  color: #F5A623;
  transform: scale(1.035);
}
.main-nav a:not(.button-primary):hover, .main-nav a:not(.button-primary):focus {
  background: #20537513;
  color: #F5A623;
}
.mobile-menu-toggle {
  display: none;
  background: #F5A623;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.12s;
  box-shadow: 0 1.5px 6px #F5A62322;
  z-index: 23;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #205375;
}
@media (max-width: 1024px) {
  .main-nav { gap: 13px; }
}
@media (max-width: 880px) {
  .main-nav { gap: 8px; }
}
@media (max-width: 820px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: #205375ee;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 30px 0 40px;
  z-index: 9999;
  transform: translateX(105vw);
  transition: transform 0.45s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #fff;
  color: #205375;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  padding: 7px 15px;
  margin-bottom: 32px;
  cursor: pointer;
  box-shadow: 0 2px 10px #20537527;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.28rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 0 14px 12px;
  border-radius: 8px;
  transition: background 0.17s, color 0.18s;
  z-index: 10000;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5A623;
  color: #205375;
}
@media (max-width: 520px) {
  .mobile-menu { padding: 15px 4vw 0 6vw; }
}

/* ===== HERO, FEATURES, CTA, SECTIONS ===== */
.hero {
  background: linear-gradient(98deg, #F5A623 18%, #F6F7F9 92%);
  padding: 0;
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 260px;
  padding-top: 46px;
  padding-bottom: 46px;
}
.hero .content-wrapper {
  gap: 8px;
}
.hero h1 {
  color: #205375;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  line-height: 1.09;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-shadow: 2px 5px 2px #F6F7F970;
}
.hero p {
  color: #205375d0;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .hero {
    min-height: initial;
    padding: 0;
    margin-bottom: 36px;
  }
  .hero .container {
    min-height: unset;
    padding-top: 22px; padding-bottom: 22px;
  }
}

.feature-grid,
.service-features, .team-bios, .article-preview-grid, .blog-services {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
@media (max-width: 950px) {
  .feature-grid,
  .service-features, .team-bios, .article-preview-grid, .blog-services { gap: 14px; }
}
@media (max-width: 768px) {
  .feature-grid,
  .service-features, .team-bios, .article-preview-grid, .blog-services { flex-direction: column; gap: 12px; }
}

.cta-banner {
  background: #205375;
  color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 44px 26px;
  box-shadow: 0 8px 28px #F5A62318;
  text-align: center;
  margin: 0 auto 28px auto;
}
.cta-banner h2 {
  color: #fff;
  text-shadow: 1px 4px 8px #F5A62343;
  font-size: 2.1rem;
}
.cta-banner p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.cta-banner .button-primary {
  margin-top: 8px;
}

/* ===== BUTTONS ===== */
.button-primary {
  background: #F5A623;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border: none;
  border-radius: 24px;
  font-size: 1.08rem;
  padding: 10px 32px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.16s;
  box-shadow: 0 2px 10px #F5A6232a;
  text-shadow: 0 1px 6px #20537522;
}
.button-primary:hover, .button-primary:focus {
  background: #205375;
  color: #F5A623;
  transform: scale(1.05);
}
.button-secondary {
  background: #205375;
  color: #fff;
  border-radius: 20px;
  padding: 8px 22px;
}
.button-secondary:hover, .button-secondary:focus {
  background: #F5A623;
  color: #205375;
}
.button-tertiary {
  background: #fff;
  color: #205375;
  border: 2px solid #F5A623;
  border-radius: 20px;
  padding: 8px 14px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: border 0.16s, color 0.15s;
}
.button-tertiary:hover, .button-tertiary:focus {
  border: 2px solid #205375;
  color: #F5A623;
}

/* ==== SEARCH BAR ==== */
.search-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}
.search-bar input[type="text"] {
  font-size: 1rem;
  padding: 9px 14px;
  border-radius: 18px;
  border: 1.5px solid #20537533;
  outline: none;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #205375;
  background: #fff;
  margin-right: 2px;
  box-shadow: 0 1px 4px #20537513;
  min-width: 190px;
  transition: border 0.18s;
}
.search-bar input:focus {
  border-color: #F5A623;
}
.search-bar button {
  background: #205375;
  border: none;
  border-radius: 50%;
  padding: 8px 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.search-bar button:hover, .search-bar button:focus {
  background: #F5A623;
}
.search-bar button img {width: 20px; filter: invert(1) brightness(1.5);}

/* ==== TESTIMONIALS ==== */
.testimonials {
  margin-bottom: 60px;
}
.testimonials h2 {
  margin-bottom: 32px;
  color: #205375;
  text-align: center;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: #205375;
  margin-bottom: 10px;
  quotes: "\201E" "\201C" "\201E" "\201C";
  position: relative;
}
.testimonial-card blockquote:before {
  content: '“';
  font-size: 2.8rem;
  color: #F5A623;
  vertical-align: top;
  margin-right: 8px;
}
.testimonial-meta span {
  color: #205375;
  font-size: 1rem;
  font-style: italic;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  opacity: 0.86;
}

/* ==== FORMS & CONTACT ==== */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 20px 0 0 0;
}
.address-info, .phone-email, .opening-hours {
  display: flex;
  align-items: center;
  gap: 11px;
}
.map-embed {
  margin-top: 24px;
  text-align: center;
}

/* ===== FOOTER ===== */
footer {
  background: #205375;
  color: #fff;
  margin-top: 60px;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 0;
}
footer span {
  color: white !important;
}
footer .container {
  padding-top: 30px; padding-bottom: 18px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  border-bottom: 1.5px solid #F5A62322;
  padding-bottom: 16px;
  margin-bottom: 13px;
}
.footer-top img[alt="FischGrill Rezepte"] {
  height: 40px;
  width: auto;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-weight: 700;
  padding: 4px 8px;
}
.footer-nav a:hover {
  color: #F5A623;
  text-decoration: underline;
}
.footer-contact {
  margin: 18px 0 13px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  align-items: center;
  font-size: 1.01rem;
  color: #fff;
}
.footer-contact img {
  height: 18px;
  margin-right: 8px;
  vertical-align: text-bottom;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  margin-right: 10px;
  font-size: 1rem;
}
.footer-contact a:hover { color: #F5A623; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 13px;
  border-top: 1.5px solid #F5A62322;
}
.privacy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.privacy-links a {
  color: #fff;
  opacity: 0.86;
  font-size: .98rem;
  border-radius: 5px;
  padding: 1.5px 6px;
}
.privacy-links a:hover { color: #F5A623; opacity: 1; background: #fff1; }
.footer-social {
  display: flex;
  gap: 13px;
}
.footer-social a {
  display: inline-flex;
  background: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: background 0.18s, box-shadow 0.11s;
  box-shadow: 0 2px 7px #F5A62330;
}
.footer-social a img { width: 18px; height: 18px; }
.footer-social a:hover, .footer-social a:focus { background: #F5A623; box-shadow: 0 4px 18px #FFF9; }
@media (max-width: 700px) {
  .footer-top { flex-direction: column; gap: 15px; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 24px;
  background: #fff;
  color: #205375;
  box-shadow: 0 6px 18px #20537513, 0 1.5px 5px #F5A6231b;
  border-radius: 18px;
  z-index: 99999;
  padding: 28px 18px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  align-items: center;
  animation: cbFadeIn .7s cubic-bezier(.3, 0, .35, 1);
}
.cookie-banner p { color: #205375; margin-bottom: 0; }
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-banner .button-primary,
.cookie-banner .button-secondary,
.cookie-banner .button-tertiary {
  font-size: 1rem;
  min-width: 120px;
  padding: 9px 12px;
  box-shadow: 0 2px 8px #20537510;
}

@keyframes cbFadeIn {
  from { transform: translateY(64px) scale(.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
/* Cookie Modal Popup */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #205375cc;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cbPopupFadeIn .4s cubic-bezier(.4,.01,.25,1);
}
@keyframes cbPopupFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #205375;
  border-radius: 20px;
  padding: 36px 28px 28px 28px;
  max-width: 380px;
  font-family: 'Open Sans', Arial, sans-serif;
  box-shadow: 0 8px 30px #F5A62322;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.24rem;
  margin-bottom: 16px;
  color: #205375;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label { font-size: 1.03rem; color: #205375; }
.cookie-category input[type="checkbox"] {
  accent-color: #F5A623;
  width: 1.15em;
  height: 1.15em;
  margin: 0 6px 0 0;
}
/* Essential always enabled */
.cookie-category.essential label { color: #205375; font-weight: 700; }
.cookie-modal-close-btn {
  position: absolute;
  right: 14px; top: 13px;
  background: #fff;
  color: #205375;
  border: none;
  font-size: 1.45rem;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px #20537518;
  transition: background 0.13s;
}
.cookie-modal-close-btn:hover, .cookie-modal-close-btn:focus {
  background: #F5A623; color: #fff;
}
/* Simple radio toggle styling (switches) */
.cookie-category input[type="checkbox"] {
  appearance: none;
  background: #eee;
  border-radius: 999px;
  border: 1px solid #20537536;
  outline: none;
  width: 2.2em;
  height: 1.15em;
  position: relative;
  transition: background 0.15s;
}
.cookie-category input[type="checkbox"]:checked {
  background: #F5A62390;
}
.cookie-category input[type="checkbox"]:after {
  content: '';
  position: absolute;
  left: 3px; top: 2.5px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px #20537527;
  transition: left 0.16s;
}
.cookie-category input[type="checkbox"]:checked:after {
  left: 18px;
  background: #205375;
}
/* For always enabled */
.cookie-category.essential input[type="checkbox"] {
  pointer-events: none;
  background: #F5A623;
  border: 2.5px solid #F5A623;
}
.cookie-category.essential input[type="checkbox"]:after {
  left: 18px;
  background: #205375;
}

/* ==== LEGAL PAGES ABOUT SECTIONS ==== */
.about.legal { background: #fff; border-radius: 20px; box-shadow: 0 2px 14px #20537512; margin: 34px 0 66px 0;}
.about.legal .text-section { padding: 16px 6px; }

/* ==== MISC/ELEMENTS ==== */
blockquote {
  border-left: 4px solid #F5A623;
  padding-left: 14px;
  color: #205375;
  font-style: italic;
}
.quick-guides ul,
.faq-section ul,
.about .text-section ul,
.feature-item ul {
  margin-bottom: 0;
}
.quick-guides, .faq-section, .expert-advice {
  margin-top: 24px;
  margin-bottom: 16px;
  background: #F6F7F9;
  border-radius: 13px;
  box-shadow: 0 1px 6px #20537517;
  padding: 16px 14px 11px 20px;
}

/* ==== ARTICLE & BLOG POST PREVIEW ==== */
.article-preview-grid article {
  border-left: 4.5px solid #F5A62399;
}
.featured-posts ul {
  list-style: disc outside;
  margin-left: 1.3em;
}
.featured-posts ul li {
  margin-bottom: 2px;
}
.featured-posts a {
  color: #205375;
  font-weight: 700;
}
.featured-posts a:hover {
  color: #F5A623;
  text-decoration: underline;
}

/* ==== ANIMATIONS (Artistic Touch) ==== */
.card, .feature-item, .team-bios .bio, .article-preview-grid article, .testimonial-card {
  transition: box-shadow 0.25s, background 0.16s, transform 0.15s;
}
.button-primary, .button-secondary, .button-tertiary {
  transition: background 0.18s, color 0.17s, transform 0.16s;
}
.cta-banner, .cookie-banner, .lead-banner {
  animation: leadFadeIn 1.2s cubic-bezier(.42,0,.21,1);
}
@keyframes leadFadeIn {
  0% {opacity: 0; transform: translateY(16px);}
  85% {opacity: 1; transform: translateY(-3px);}
  100% {opacity: 1; transform: translateY(0);}
}

/* ==== FLEXBOX HELPERS ==== */
.flex { display: flex; }
.wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ==== SPACING: UTILITY CLASSES ==== */
.mb-32 { margin-bottom: 32px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-12 { margin-top: 12px !important; }
.py-24 { padding-top: 24px; padding-bottom: 24px; }
.px-24 { padding-left: 24px; padding-right: 24px; }

@media (max-width: 425px) {
  .container, .footer-top, .footer-contact, .footer-bottom { padding-left: 4px !important; padding-right: 4px !important; }
}

/* ==== SCROLLBAR POLISH ==== */
body::-webkit-scrollbar {
  width: 11px;
  background: #F6F7F9;
}
body::-webkit-scrollbar-thumb {
  background: #F5A62399;
  border-radius: 6px;
}

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