/* ========================================================
   FROZEN BURST TIPPS – STYLE.CSS (Elegant Classic)
   Consistent for ALL pages, flexbox only layouts, no grid or columns
   ======================================================== */

/*******************
 1. 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1.5;
  font-size: 16px;
  scroll-behavior: smooth;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  min-height: 100vh;
  background: #F7F7F7;
  color: #25272a;
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.2s;
}

a {
  color: #264273;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #00B39A;
  outline: none;
}

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

ul, ol {
  margin-left: 1.5em;
  margin-top: 0.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 8px;
}

strong, b {
  font-weight: bold;
}

em, i {
  font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  color: #264273;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
h1 { font-size: 2.6rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
.subheadline {
  color: #113F3A;
  font-family: 'Open Sans', 'Georgia', serif;
  font-size: 1.35rem;
  margin-bottom: 20px;
  font-weight: 400;
}

p {
  line-height: 1.7;
  margin-bottom: 16px;
  color: #25272a;
  font-family: 'Open Sans', 'Georgia', serif;
  font-size: 1.08rem;
}

/*******************
 2. LAYOUT & CONTAINERS
********************/
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(38,66,115,0.07);
}
@media (max-width: 1000px) {
  .section {
    padding: 30px 10px;
    margin-bottom: 44px;
  }
}

/*******************
 3. HEADER & NAVIGATION
********************/
header {
  background: #fff;
  border-bottom: 1px solid #e8e9ec;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', 'Georgia', serif;
  text-transform: none;
  font-weight: 500;
  font-size: 1.07rem;
  color: #264273;
  padding: 7px 0;
  position: relative;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #00B39A;
  border-bottom: 2px solid #00B39A;
}
header .btn-primary {
  margin-left: 20px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #264273;
  cursor: pointer;
  margin-left: 22px;
  z-index: 30;
  padding: 6px 8px;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/*******************
 4. MOBILE MENU
********************/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38, 66, 115, 0.97);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.62,0.05,0.01,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  padding: 12px 18px 12px 18px;
  margin: 18px 0 0 22px;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #00B39A;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  margin-top: 32px;
}
.mobile-nav a {
  display: block;
  width: 100%;
  font-size: 1.23rem;
  font-family: 'Montserrat', 'Georgia', serif;
  color: #fff;
  padding: 20px 38px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #00B39A;
  background: rgba(0,179,154,0.09);
}

/*******************
 5. BUTTONS
********************/
.btn-primary,
.btn-secondary {
  font-family: 'Montserrat', 'Georgia', serif;
  border: none;
  border-radius: 36px;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 36px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  box-shadow: 0 2px 12px 0 rgba(38,66,115,0.07);
  outline: none;
  margin-top: 14px;
  margin-right: 12px;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: #264273;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #00B39A;
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(0,179,154,0.11);
}
.btn-secondary {
  background: #fff;
  color: #264273;
  border: 2px solid #264273;
  box-shadow: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #00B39A;
  color: #fff;
  border-color: #00B39A;
  box-shadow: 0 4px 22px 0 rgba(0,179,154,0.09);
}

/*******************
 6. HERO/INTRO SECTIONS
********************/
.hero {
  background: #264273;
  color: #fff;
  padding: 64px 0 44px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 38px 0 rgba(38,66,115,0.13);
  margin-bottom: 44px;
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
}
.hero .subheadline {
  color: #C9E3E2;
}
.hero .btn-primary {
  margin-top: 19px;
  margin-bottom: 7px;
}

@media(max-width:768px) {
  .hero {
    padding: 38px 0 30px 0;
    border-radius: 0 0 22px 22px;
    margin-bottom: 30px;
    text-align: left;
  }
}

/*******************
 7. FLEXBOX LAYOUTS (MANDATORY)
********************/
.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;
}
/* Responsive flex-direction switches on mobile */
@media (max-width: 768px) {
  .text-image-section,
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/*******************
 8. FEATURE & SERVICE SECTIONS
********************/
.features {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(38,66,115,0.055);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid, .category-list, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 24px;
  list-style: none;
  padding-left: 0;
  justify-content: flex-start;
}
.feature-grid li, .category-list li, .service-cards li {
  background: #F7F7F7;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(38,66,115,0.08);
  padding: 26px 18px 20px 18px;
  min-width: 205px;
  max-width: 330px;
  flex: 1 1 220px;
  transition: box-shadow 0.17s, transform 0.17s;
  border: 1px solid #ebeef0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.feature-grid li:hover, .category-list li:hover, .service-cards li:hover {
  box-shadow: 0 6px 24px 0 rgba(38,66,115,0.10);
  transform: translateY(-3px) scale(1.01);
}
.feature-grid img, .category-list img, .service-cards img {
  width: 40px; height: 40px; margin-bottom: 12px;
}
.feature-descriptions {
  color: #113F3A;
  margin-top: 16px;
  font-style: italic;
  font-size: 1.07rem;
}

/*******************
 9. ABOUT/TEAM
********************/
.mini-portrait, .team-member {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 18px 0 16px 0;
}
.mini-portrait img, .team-member img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e8ecef;
  object-fit: contain;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.04);
}
.team-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 34px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .team-list {
    flex-direction: column;
    gap: 16px;
  }
  .mini-portrait, .team-member {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.text-section {
  font-family: 'Open Sans', 'Georgia', serif;
  color: #264273;
}

/*******************
 10. ARTICLE CARDS, TIP CARDS
********************/
.article-grid, .tip-cards, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.article-preview, .tip-card, .service-item {
  background: #fbfbfc;
  border-radius: 14px;
  box-shadow: 0 1px 7px 0 rgba(38,66,115,0.06);
  padding: 24px 22px 18px 22px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  max-width: 330px;
  min-width: 210px;
  border: 1px solid #e7e8ea;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.15s, transform 0.15s;
}
.article-preview:hover, .tip-card:hover, .service-item:hover {
  box-shadow: 0 8px 24px 0 rgba(38,66,115,0.11);
  transform: translateY(-3px) scale(1.01);
  z-index: 2;
}
.tag, .badge {
  display: inline-block;
  background: #e6efeb;
  color: #113F3A;
  border-radius: 16px;
  padding: 3px 16px;
  font-size: 0.93rem;
  font-family: 'Montserrat', 'Georgia', serif;
  margin-top: 7px;
  margin-right: 7px;
}
.rating-badge {
  font-size: 1.12rem;
  background: #264273;
  color: #fff;
  padding: 2px 11px 3px 13px;
  border-radius: 11px;
  margin-left: 9px;
}
.badge-bestseller {
  background: #00B39A;
  color: #fff;
}
.badge-new {
  background: #264273;
  color: #fff;
}
.badge-recommended {
  background: #D4C9AA;
  color: #264273;
}

/*******************
 11. TESTIMONIALS
********************/
.testimonials, .service-testimonials {
  background: #F7F7F7;
  padding: 36px 0;
  border-radius: 20px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(38,66,115,0.07);
  border: 1px solid #edecec;
  flex: 1 1 320px;
  max-width: 450px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 26px 16px 22px;
  color: #25272a;
  font-family: 'Open Sans', 'Georgia', serif;
  margin-bottom: 20px;
  transition: box-shadow 0.19s;
}
.testimonial-card p {
  color: #25272a;
  font-size: 1.13rem;
  margin-bottom: 12px;
}
.testimonial-card .testimonial-author {
  font-size: 0.98rem;
  color: #264273;
  margin-top: 8px;
  font-family: 'Montserrat', 'Georgia', serif;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(38,66,115,0.14);
  z-index: 2;
}

/*******************
 12. CTA FINAL, NEWSLETTER, MAP, THANK YOU, ETC
********************/
.cta-section, .cta-final {
  background: #264273;
  color: #fff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 22px 36px 22px;
  margin-bottom: 36px;
  text-align: center;
  box-shadow: 0 6px 22px 0 rgba(38,66,115,0.07);
}
.cta-section h2, .cta-section .btn-primary, .cta-final h2, .cta-final .btn-primary {
  color: #fff;
}
.cta-final .btn-primary {
  margin-top: 19px;
}

.newsletter {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 rgba(38,66,115,0.08);
  padding: 34px 20px 28px 20px;
  margin-bottom: 60px;
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 21px;
}
.newsletter-form input[type="email"] {
  flex: 1 1 230px;
  min-width: 170px;
  border: 1px solid #cfd4db;
  border-radius: 7px;
  padding: 13px 10px;
  font-size: 1rem;
  font-family: 'Open Sans', 'Georgia', serif;
  margin-right: 6px;
  background: #fcfcfc;
  transition: border-color 0.17s;
}
.newsletter-form input[type="email"]:focus {
  border-color: #00B39A;
  outline: none;
}

.map-section .map-placeholder {
  background: #F2EBDB;
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 23px 19px;
  margin-top: 16px;
  color: #264273;
}
@media (max-width: 768px){
  .map-section .map-placeholder {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

.thank-you-section {
  padding: 88px 0 56px 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(38,66,115,0.075);
  min-height: 450px;
  text-align: center;
}

/*******************
 13. FORMS
********************/
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
input[type="text"], input[type="email"], textarea {
  font-family: 'Open Sans', 'Georgia', serif;
  font-size: 1rem;
  border: 1px solid #d3d6da;
  border-radius: 7px;
  padding: 11px 12px;
  transition: border 0.18s;
  background: #fff;
  color: #25272a;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #00B39A;
  outline: none;
}
label {
  font-family: 'Montserrat', 'Georgia', serif;
  color: #113F3A;
  font-weight: 500;
  font-size: 1.03rem;
}
textarea {
  resize: vertical;
  min-height: 64px;
  font-family: 'Open Sans', 'Georgia', serif;
}

/*******************
 14. FOOTER
********************/
footer {
  background: #264273;
  color: #fff;
  margin-top: 44px;
  padding: 33px 0 22px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 13px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.94;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  padding: 6px 0;
  transition: color 0.18s, opacity 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #00B39A;
  opacity: 1;
}
.footer-contact span,
.footer-contact a {
  color: #E2EAF0;
  font-size: 0.97rem;
  font-family: 'Open Sans', 'Georgia', serif;
}
.footer-contact a {
  text-decoration: underline dotted;
  transition: color 0.13s;
}
.footer-contact a:hover {
  color: #fff;
}

/*******************
 15. COOKIE CONSENT BANNER & MODAL
********************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #264273;
  box-shadow: 0 -6px 22px 0 rgba(38,66,115,0.08);
  z-index: 5000;
  padding: 18px 22px 18px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s, transform 0.25s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  font-size: 1.01rem;
  font-family: 'Open Sans', 'Georgia', serif;
  color: #264273;
  margin-bottom: 0;
  flex: 1 1 auto;
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: 24px;
  padding: 8px 24px;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 0.98rem;
  cursor: pointer;
  background: #F7F7F7;
  color: #264273;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.accept {
  background: #00B39A;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #264273;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #264273;
  border: 1.5px solid #264273;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #264273;
  color: #fff;
}
.cookie-btn.settings {
  background: #F7F7F7;
  color: #113F3A;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #00B39A;
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
}

/***** Cookie Modal ******/
.cookie-modal-overlay {
  position: fixed;
  z-index: 6000;
  left: 0; top:0; width:100vw; height:100vh;
  background:rgba(38,66,115,0.41);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 38px 0 rgba(38,66,115,0.18);
  max-width: 460px;
  width: 96vw;
  padding: 32px 24px 22px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: 'Open Sans', 'Georgia', serif;
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cookie-modal h2 {
  font-size: 1.5rem;
  color: #264273;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #264273;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  align-self: flex-end;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #00B39A;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.08rem;
  margin: 7px 0;
  flex-wrap: wrap;
}
.cookie-switch {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #e7e9f1;
  border-radius: 11px;
  position: relative;
  outline: none;
  transition: background 0.2s;
  margin-left: 10px;
  cursor: pointer;
}
.cookie-switch:checked {
  background: #00B39A;
}
.cookie-switch::before {
  content: '';
  display: block;
  position: absolute;
  width: 18px; height: 18px;
  top: 2px; left: 2px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s;
}
.cookie-switch:checked::before {
  left: 18px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
/*******************
 16. MISC STYLES & RESPONSIVE
********************/
.booking-contact, .service-benefits, .article-benefits, .success-list, .workshop-topics, .faq-list, .booking-contact {
  list-style: none;
  padding-left: 0;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.booking-contact li, .service-benefits li, .article-benefits li, .success-list li, .workshop-topics li, .faq-list li {
  font-family: 'Open Sans', 'Georgia', serif;
  color: #264273;
  background: #F8F6F3;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 1.01rem;
  margin-bottom: 10px;
  border-left: 3px solid #00B39A;
}

.service-price {
  display: inline-block;
  font-size: 1.07rem;
  margin-top: 12px;
  color: #00B39A;
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 500;
}
.workshop-infos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'Open Sans', 'Georgia', serif;
  font-size: 1.03rem;
  margin-bottom: 12px;
}

/**** CONTACT PAGE LAYOUT ****/
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-bottom: 28px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    gap: 16px;
  }
}
.form-section, .text-section {
  flex: 1 1 320px;
}

/**** CATEGORIES GRID ****/
.category-list {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px;
}
.category-list li {
  flex-direction: row;
  align-items: center;
  font-size: 1.09rem;
  color: #264273;
  min-width: 130px;
  max-width: 210px;
  font-family: 'Montserrat', 'Georgia', serif;
  gap: 12px;
}

/**** ARTICLE GRID RESPONSIVENESS ****/
@media (max-width: 1100px) {
  .article-grid, .tip-cards, .service-grid, .feature-grid, .category-list, .service-cards, .testimonial-list {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .article-grid, .tip-cards, .service-grid, .feature-grid, .category-list, .service-cards, .testimonial-list {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
}

/*******************
 17. UTILITIES & ANIMATIONS
********************/
.fade-in {
  animation: fadeIn 0.7s cubic-bezier(0.57,0.15,0.30,1) both;
}
@keyframes fadeIn {
  from { opacity:0; transform:translateY(25px); }
  to { opacity:1; transform:translateY(0); }
}

/**** Misc ****/
::-webkit-input-placeholder { color: #C2C2C2; opacity: 1; }
::-moz-placeholder { color: #C2C2C2; opacity: 1; }
:-ms-input-placeholder { color: #C2C2C2; opacity: 1; }
::placeholder { color: #C2C2C2; opacity: 1; }

/**** Scrollbar styling ****/
body::-webkit-scrollbar {
  width: 11px;
}
body::-webkit-scrollbar-thumb {
  background: #D4C9AA;
  border-radius: 11px;
}
body::-webkit-scrollbar-track {
  background: #F7F7F7;
}

/**** Hide on print ****/
@media print {
  header, nav, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
}

/**** END OF FROZEN BURST TIPPS STYLE.CSS ****/