/* ================================================
   STORMBORN HUNT KULINARIK: STYLE.CSS
   Modern, gradient-inspired, flexbox-based style
   ================================================ */

/* == 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, section, article, aside, footer, header, nav, main, figure, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: linear-gradient(120deg, #FFFFFF 0%, #EFCB68 100%);
  color: #2C3B24;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2C3B24;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #EFCB68;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

/* == TYPOGRAPHY == */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #2C3B24;
  font-weight: bold;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
h5, h6 { font-size: 1rem; }

p, li, span, input, label, a, blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.13rem;
  color: #4D5838;
  margin-bottom: 20px;
}
blockquote {
  font-style: italic;
  background: #FAF6ED;
  border-left: 4px solid #EFCB68;
  margin: 0 0 12px 0;
  padding: 12px 20px;
  color: #2C3B24;
}

/* == LAYOUT CONTAINERS & FLEXBOX == */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px!important;
  padding: 40px 20px!important;
}

/* == HEADER & NAVIGATION == */
header {
  width: 100%;
  background: linear-gradient(90deg, #FFFFFF 0%, #EFCB68 100%);
  box-shadow: 0 2px 16px 0 rgba(44,59,36,0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 40;
  padding: 0 0 0 0;
}
header > a img {
  height: 48px;
  margin: 18px 0 18px 12px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  margin: 0 auto 0 0;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2C3B24;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #EFCB68;
  color: #2C3B24;
}
.cta-button {
  background: linear-gradient(90deg, #EFCB68 0%, #FFD88C 100%);
  color: #2C3B24;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 10px 28px;
  border: none;
  border-radius: 28px;
  margin-left: 24px;
  box-shadow: 0 3px 24px 0 rgba(44,59,36,0.09);
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #FFD88C 0%, #EFCB68 100%);
  color: #2C3B24;
  box-shadow: 0 4px 30px 0 rgba(239,203,104,0.19);
}

/* == HEADER FLEX == */
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 78px;
  padding: 0 0 0 0;
}

/* == MOBILE NAVIGATION == */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #2C3B24;
  cursor: pointer;
  margin-left: auto;
  margin-right: 16px;
  z-index: 999;
  transition: color 0.2s;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #2C3B24;
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1001;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(44,59,36, 0.97);
  color: #fff;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.77,0.2,0.05,1.0);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  margin: 120px 42px 0 0;
  width: 82vw;
}
.mobile-nav a {
  background: none;
  color: #fff;
  padding: 14px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  border-radius: 0;
  width: 100%;
  text-align: right;
  transition: color 0.19s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #EFCB68;
  background: none;
}

/* == HERO SECTION == */
.hero {
  width: 100%;
  background: linear-gradient(120deg, #FFFFFF 0%, #FFD88C 100%);
  padding: 44px 0 44px 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 12px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.4rem;
}
.hero .cta-button {
  margin-top: 18px;
}

/* == FEATURED SECTIONS == */
.features {
  background: #FFFBEA;
  border-radius: 32px;
  margin: 48px 0 64px 0;
  position: relative;
}
.features .container {
  padding: 0;
}
.features h2 {
  text-align: center;
}
.feature-grid {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  margin: 32px 0 0 0;
}
.feature-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(44,59,36,0.08);
  padding: 36px 22px 30px 22px;
  min-width: 240px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.23s;
}
.feature-grid > div:hover {
  box-shadow: 0 7px 32px 0 rgba(239,203,104,0.20);
  transform: translateY(-4px) scale(1.02);
}
.feature-grid img {
  height: 54px;
  margin-bottom: 12px;
}
.feature-grid h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.feature-grid p {
  font-size: 1rem;
}

/* CATEGORY TAGS */
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 12px 0 28px 0;
}
.category-tags span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  background: #EFCB68;
  color: #2C3B24;
  padding: 7px 20px;
  border-radius: 14px;
}

/* == SERVICES / SERVICE-LIST == */
.services, .services-overview {
  background: #FFFBEA;
  border-radius: 26px;
  margin: 50px 0 68px 0;
}
.service-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0 0;
  justify-content: center;
}
.service-list > li {
  list-style: none;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 rgba(44,59,36,0.06);
  flex: 1 1 220px;
  max-width: 310px;
  padding: 30px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.22s;
  border: 1px solid #F4E8C2;
}
.service-list > li:hover {
  box-shadow: 0 12px 36px 0 rgba(239,203,104,0.16);
  transform: translateY(-2px) scale(1.025);
}
.service-list img {
  height: 45px;
}
.service-list h3, .service-list h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2C3B24;
  font-size: 1.19rem;
  margin-bottom: 6px;
}
.service-list p {
  font-size: 0.97rem;
  color: #4D5838;
}
.service-price {
  background: #EFCB68;
  color: #2C3B24;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 7px;
  padding: 2px 10px;
  margin-bottom: 8px;
}
.service-list a {
  margin-top: 5px;
  font-size: 0.98rem;
  color: #4D5838;
  text-decoration: underline;
  align-self: flex-start;
  transition: color 0.18s;
}
.service-list a:hover {
  color: #EFCB68;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 28px;
  margin-bottom: 22px;
}
.benefit-list li {
  list-style: disc inside;
}

.unique-selling-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
  align-items: flex-start;
}
.unique-selling-points ul {
  margin-bottom: 0;
}
.unique-selling-points .cta-button {
  margin-top: 8px;
}

/* == PRICING TABLE == */
.pricing-table {
  background: #FAF6ED;
  border-radius: 18px;
  margin: 34px 0 0 0;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.pricing-table table {
  width: 100%;
  font-size: 1rem;
  border-collapse: collapse;
  margin-bottom: 14px;
}
.pricing-table th, .pricing-table td {
  padding: 9px 18px 9px 0;
  text-align: left;
}
.pricing-table thead th {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2C3B24;
  font-size: 1.01rem;
  border-bottom: 2px solid #EFCB68;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #F3E1AA;
}

/* == TESTIMONIALS == */
.testimonials {
  background: #FFF;
  border-radius: 30px;
  margin: 32px 0 64px 0;
}
.testimonials h2 {
  text-align: center;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFFBEA;
  border-radius: 17px;
  box-shadow: 0 2px 10px 0 rgba(44,59,36,0.06);
  margin: 23px 0 0 0;
  font-size: 1.08rem;
  color: #282C1B;
  min-width: 300px;
  max-width: 700px;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  font-style: italic;
  font-size: 1.05rem;
  color: #282C1B;
  margin-bottom: 0;
  padding: 0;
}
.testimonial-card span {
  margin-left: 24px;
  color: #4D5838;
  font-size: 0.98rem;
  font-style: normal;
}

/* == ABOUT TEAM / VALUES / TIMELINE == */
.about-team {
  background: #FFFBEA;
  border-radius: 29px;
  margin: 40px 0 56px 0;
}
.values-list, .timeline, .awards, .press-mentions {
  background: #fff;
  border-radius: 11px;
  padding: 18px 22px;
  margin: 16px 0 0 0;
  box-shadow: 0 2px 8px 0 rgba(239,203,104,0.09);
}
.values-list ul, .timeline ul {
  margin-left: 12px;
}
.awards, .press-mentions {
  text-align: center;
  font-size: 1rem;
  color: #2C3B24;
  background: #EFCB68;
  font-weight: 500;
  margin-bottom: 10px;
}

/* == FEATURES/ICON/USP SECTION == */
.feature-icons {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 18px;
}
.feature-icons > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(44,59,36,0.06);
  padding: 18px 14px;
  max-width: 210px;
  min-width: 150px;
  text-align: center;
  font-size: 1rem;
}
.feature-icons img {
  height: 32px;
  margin-bottom: 8px;
}

/* == ABOUT STEPS/PROCESS == */
.step-by-step-overview ol {
  margin-left: 18px;
  font-size: 1rem;
  padding-left: 0;
}
.step-by-step-overview li {
  margin-bottom: 7px;
}

/* == ABOUT TEXT == */
.text-section {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ul {
  margin-left: 12px;
  margin-top: 10px;
}

/* == INPUTS REQUESTS & SEARCH == */
input[type="text"] {
  width: 100%;
  max-width: 380px;
  font-size: 1rem;
  padding: 12px 16px;
  border: 1px solid #EFCB68;
  border-radius: 25px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.2s;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px 0 rgba(239,203,104,0.06);
}
input[type="text"]:focus {
  border-color: #2C3B24;
  outline: none;
  box-shadow: 0 2px 18px 0 rgba(239,203,104,0.14);
}

/* == LEGAL / CONTENT SECTIONS == */
.legal {
  background: #FFFBEA;
  border-radius: 28px;
  margin: 40px 0 48px 0;
  padding: 34px 0;
}
.legal h1, .legal h2, .legal h3 {
  margin-bottom: 14px;
}
.legal .text-section {
  background: #fff;
  border-radius: 18px;
  padding: 28px 18px 18px 18px;
  margin: 0 0 0 0;
  box-shadow: 0 2px 10px 0 rgba(239,203,104,0.09);
}
.legal .text-section ul {
  margin-left: 16px;
}

/* == CONTACT INFO == */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  align-items: flex-start;
  font-size: 0.97rem;
  color: #3C4A24;
  margin-top: 16px;
}
.contact-info img {
  height: 18px;
  width: 18px;
  margin-right: 8px;
}
.contact-info-section .location-map {
  margin-top: 18px;
}
.location-map {
  background: #FAF6ED;
  border-radius: 13px;
  padding: 15px 18px;
  color: #4D5838;
  font-size: 0.98rem;
}

/* == FOOTER == */
footer {
  width: 100%;
  background: linear-gradient(90deg, #FFD88C 0%, #EFCB68 100%);
  color: #2C3B24;
  font-size: 0.97rem;
  border-top: 3px solid #F4E8C2;
  margin-top: 48px;
  padding: 24px 0 16px 0;
  position: relative;
  z-index: 11;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 0 16px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #2C3B24;
  font-size: 1rem;
  transition: color 0.17s;
}
footer nav a:hover {
  color: #4D5838;
}
footer img {
  height: 40px;
  margin-bottom: 12px;
}
footer .contact-info {
  gap: 8px;
  font-size: 0.96rem;
  color: #3C4A24;
  margin-top: 0;
}

/* == RESPONSIVE DESIGN == */
@media (max-width: 1024px) {
  .container { max-width: 93vw; }
  .feature-grid, .service-list, .feature-icons {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .feature-grid > div, .service-list > li, .feature-icons > div {
    min-width: 220px;
    max-width: 99vw;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
  }
}

@media (max-width: 890px) {
  .container { padding: 0 8px; }
  header nav {
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 1rem;
    max-width: 98vw;
  }
}

@media (max-width: 768px) {
  header nav {
    display: none !important;
  }
  .cta-button {
    margin-left: auto;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .service-list, .feature-icons {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .feature-grid > div, .service-list > li, .feature-icons > div {
    min-width: unset;
    max-width: 99vw;
    width: 93vw;
  }
  .testimonials, .features, .services, .about-team, .services-overview, .legal {
    border-radius: 12px;
    margin: 20px 0 30px 0;
    padding: 16px 0 8px 0;
  }
  .hero {
    padding: 18px 0 18px 0;
  }
  .testimonial-card {
    padding: 14px;
  }
  .container {
    max-width: 99vw;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 0; 
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.15rem; }
  .feature-grid > div, .service-list > li, .feature-icons > div {
    padding: 24px 10px 16px 10px;
  }
  .testimonial-card {
    font-size: 0.97rem;
    padding: 10px;
  }
  .container {
    padding: 0 4px;
  }
}

/* == TRANSITIONS & EFFECTS == */
.cta-button, .mobile-menu, .feature-grid > div, .service-list > li, input[type="text"], .testimonial-card {
  transition: box-shadow 0.18s, background 0.22s, color 0.21s;
}

/* == ANIMATION: Mobile menu == */
.mobile-menu {
  transition: transform 0.33s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.21s;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateX(0%);
}

/* == ANIMATION: Cookie banner == */
.cookie-consent-banner, .cookie-modal-backdrop, .cookie-modal {
  transition: bottom 0.33s, opacity 0.23s, transform 0.32s;
}

/* == COOKIE CONSENT BANNER & MODAL == */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #2C3B24;
  color: #FFF;
  padding: 22px 16px;
  box-shadow: 0 -2px 24px 0 rgba(44,59,36,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 1200;
  gap: 20px;
  font-size: 1rem;
}
.cookie-consent-banner p {
  margin-bottom: 0;
  max-width: 410px;
  color: #fff;
  font-size: 0.97rem;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  border: none;
  padding: 9px 18px;
  margin: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-accept {
  background: #EFCB68;
  color: #2C3B24;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #FFD88C;
}
.cookie-reject {
  background: #fff;
  color: #2C3B24;
  border: 1px solid #EFCB68;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #F3E1AA;
  color: #2C3B24;
}
.cookie-settings {
  background: none;
  color: #fff;
  border: 1px solid #EFCB68;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #EFCB68;
  color: #2C3B24;
}

/* == COOKIE MODAL POPUP == */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(44,59,36, 0.83);
  z-index: 1300;
}
.cookie-modal {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-width: 420px;
  margin: auto;
  background: #fff;
  color: #2C3B24;
  border-radius: 19px 19px 0 0;
  box-shadow: 0 0 44px 0 rgba(44,59,36,0.23);
  padding: 32px 28px 28px 28px;
  z-index: 1400;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h3 {
  font-size: 1.17rem;
  margin-bottom: 16px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  background: #FAF6ED;
  border-radius: 12px;
  padding: 8px 14px;
}
.cookie-category label {
  flex: 1;
  font-size: 1rem;
  color: #2C3B24;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #EFCB68;
  margin-right: 4px;
}
.cookie-modal .cookie-primary-action {
  background: #EFCB68;
  color: #2C3B24;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  border: none;
  padding: 10px 26px;
  margin-right: 8px;
  margin-top: 12px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal .cookie-primary-action:hover, .cookie-modal .cookie-primary-action:focus {
  background: #FFD88C;
}
.cookie-modal .cookie-secondary-action {
  background: #fff;
  color: #2C3B24;
  border: 1px solid #EFCB68;
  border-radius: 22px;
  font-size: 1rem;
  padding: 10px 24px;
  margin-top: 12px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal .cookie-secondary-action:hover, .cookie-modal .cookie-secondary-action:focus {
  background: #F3E1AA;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #2C3B24;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #EFCB68;
}

@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.98rem;
    gap: 13px;
  }
  .cookie-banner-actions { width: 100%; gap: 8px; }
  .cookie-modal {
    padding: 15px 9px 18px 9px;
    max-width: 97vw;
  }
}

/* == UTILITY CLASSES (SPACING, FLEX) == */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(239,203,104,0.09);
  padding: 26px 24px;
}
.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;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* == VISUAL HIERARCHY & WHITESPACE == */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child {
  margin-bottom: 0;
}

/* == HIDE/SHOW Accessibility Utility == */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  top: auto;
  overflow: hidden;
}

/* == Z-INDEX ORDER == */
header { z-index: 40; }
.mobile-menu, .mobile-menu.open { z-index: 998; }
.cookie-consent-banner { z-index: 1200; }
.cookie-modal { z-index: 1400; }

