/* RESET & NORMALIZATION */
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;
}
body {
  line-height: 1.5;
  background: #FAF9F6;
  color: #1c2b36;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: middle;
}
a {
  color: #004B66;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #b19856;
}
ul, ol {
  list-style: none;
}

/* FONT IMPORTS (Google Fonts CDN assumed) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

/* CSS Custom Properties for BRAND */
:root {
  --color-primary: #004B66;
  --color-secondary: #fff;
  --color-background: #FAF9F6;
  --color-accent: #29A5B8;
  --color-gold: #b19856;
  --color-premium-dark: #23292f;
  --color-grey-light: #E7F6FB;
  --shadow-premium: 0 4px 24px 0 rgba(47, 42, 32, 0.08), 0 1.5px 8px 0 rgba(41, 165, 184, 0.02);
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--color-premium-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.18;
}
h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  line-height: 1.25;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  line-height: 1.3;
}
h4 {
  font-size: 1.15rem;
}
p, li, td {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #25313a;
}
strong {
  font-weight: 600;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* HEADER */
header {
  background: var(--color-secondary);
  box-shadow: 0 6px 32px 0 rgba(180, 195, 210, 0.10);
  z-index: 20;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 18px;
}
.logo img {
  height: 46px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 6px 0;
  color: var(--color-premium-dark);
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-bottom 0.2s;
}
.main-nav a:hover {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: linear-gradient(90deg,var(--color-gold),#eacb8d);
  color: var(--color-premium-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 26px;
  box-shadow:0 2px 16px 0 rgba(193,166,89,0.05);
  border: none;
  outline: none;
  cursor: pointer;
  text-shadow: 0 1px 2px #fff6;
  transition: box-shadow 0.2s, filter 0.2s, background 0.2s, color 0.13s;
  position: relative;
}
.cta-btn:hover {
  background: linear-gradient(90deg,#eacb8d,var(--color-gold));
  color: #fff;
  box-shadow:0 4px 22px 0 rgba(193,166,89,0.20);
  filter: brightness(1.06);
}
.cta-btn:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-gold);
  cursor: pointer;
  display: none;
  margin-left: 12px;
  transition: color 0.2s;
  border-radius: 50%;
  width: 44px;
  height: 44px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-grey-light);
  color: var(--color-primary);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,29,36,0.83);
  z-index: 1600;
  display: flex;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  will-change: transform;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100vw;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 40px;
  background: none;
  box-shadow: none;
  transition: background 0.16s, color 0.15s;
}
.mobile-nav a:hover {
  background: var(--color-gold);
  color: var(--color-premium-dark);
  box-shadow: 0 2px 12px #f9eab680;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 22px;
  z-index: 3;
  background: linear-gradient(90deg,var(--color-gold) 60%,#fff0 100%);
  color: #23292f;
  font-size: 2.3rem;
  border-radius: 50%;
  border: none;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px #b1985631;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-grey-light);
  color: var(--color-primary);
}

/* SECTION PATTERNS */
.features, .services-overview, .services-list, .about-section, .testimonial-section, .contact-section, .cta-final,
.pricing-section, .legal-section, .confirmation-section, .service-promises, .contact-features {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-grid li {
  background: #F9F6F2;
  border-radius: 14px;
  border-left: 6px solid var(--color-gold);
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.04rem;
  padding: 18px 22px;
  box-shadow: 0 2px 8px rgba(41, 165, 184, 0.04);
  color: var(--color-primary);
}
.feature-grid li img {
  height: 34px;
  width: 34px;
}

.service-list, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.service-list li, .service-grid li {
  flex: 1 1 310px;
  min-width: 270px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
  margin-bottom: 20px;
  padding: 24px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  border: 1.7px solid #ece1cc;
  transition: box-shadow 0.15s, border-color 0.13s;
}
.service-list li:hover, .service-grid li:hover {
  border-color: var(--color-gold);
  box-shadow: 0 3px 24px #b1985631;
  z-index: 3;
}

.testimonials {
  background: var(--color-grey-light);
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials h2 {
  margin-bottom: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  border-left: 6px solid var(--color-gold);
  margin-bottom: 24px;
  padding: 20px 32px 20px 28px;
  border-radius: 13px;
  box-shadow: 0 2px 16px 0px #004b6623;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card p {
  color: #1c2b36;
  font-weight: 500;
  font-size: 1.1rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #767a82;
  font-style: italic;
  margin-left: 2px;
}

.cta-final {
  background: linear-gradient(96deg,#fff 50%,#fbf3e4 100%);
  border-radius: 30px;
  padding-top: 38px;
  padding-bottom: 38px;
  margin-bottom: 38px;
  box-shadow: 0 4px 32px #b1985619;
  text-align: center;
}
.cta-final .content-wrapper {
  align-items: center;
  gap: 25px;
}
.cta-final h2 {
  color: var(--color-primary);
  font-size: 2rem;
}

.pricing-section {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-premium);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.pricing-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  font-size: 1.08rem;
  text-align: left;
}
.pricing-table th {
  background: var(--color-grey-light);
  color: #2a2e30;
  font-weight: 700;
  letter-spacing: .02em;
}
.pricing-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #ede3cb;
}
.pricing-table td {
  color: var(--color-primary);
  font-weight: 500;
  background: #fff;
}

.legal-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
}

.confirmation-section {
  background: linear-gradient(90deg,#e7f6fb 0%,#fff 70%);
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: 340px;
}
.confirmation-section .content-wrapper {
  align-items: center;
}
.confirmation-section h1 {
  color: var(--color-primary);
  font-size: 2.3rem;
}
.confirmation-section p {
  color: var(--color-premium-dark);
  font-size: 1.2rem;
}

/* CONTACT */
.contact-section, .contact-features {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-premium);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 0 0 2px;
}
.map-placeholder img {
  width: 210px;
  height: auto;
}
.contact-features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.contact-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 18px 16px;
  background: #F9F6F2;
  border-radius: 14px;
  border-left: 6px solid var(--color-gold);
  font-size: 1.04rem;
  flex:1 1 240px;
  min-width: 200px;
}
.contact-features li img {
  height: 32px;
  width: 32px;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg,#fff 70%,#f0efeb 100%);
  padding: 36px 0 24px 0;
  border-top: 1.5px solid #e0d8c3;
  box-shadow: 0 -2px 18px #e6dfcd18;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-nav {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  padding: 2px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-bottom 0.15s;
}
.footer-nav a:hover {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #b3a985;
  font-size: 1.08rem;
}
.footer-brand img {
  height: 34px;
  width: auto;
}

/* BUTTONS */
button, .cta-btn {
  transition: background 0.13s, color 0.13s, box-shadow 0.14s, filter 0.13s;
}
button:active, .cta-btn:active {
  filter: brightness(0.92);
}

/* MICRO-INTERACTIONS */
.service-list li:hover .cta-btn, .service-grid li:hover .cta-btn {
  filter: brightness(1.08);
}

/* CARD PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow-premium);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 22px;
  min-width: 218px;
  flex: 1 1 270px;
  border: 1px solid #e8dcbd;
  transition: box-shadow 0.13s, border-color 0.13s;
}
.card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 4px 16px #b1985677;
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 18px;
  background: #f7f6f4;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #fff;
  color: #25313a;
  box-shadow: 0 -2px 24px rgba(37,33,18,0.16);
  padding: 24px 16px 18px 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 36px;
  font-size: 1rem;
  transition: transform 0.32s cubic-bezier(.6,.24,0,1), opacity 0.19s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  outline: none;
  border-radius: 22px;
  padding: 9px 22px;
  margin: 0;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.15s;
}
.cookie-btn.accept {
  background: linear-gradient(90deg,var(--color-gold) 90%,#ebd8ae);
  color: #23292f;
  box-shadow: 0 2px 14px #b198563f;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: linear-gradient(90deg,#ebd8ae,var(--color-gold));
  color: #fff;
}
.cookie-btn.reject {
  background: #ede1c3;
  color: #333523;
  border: 1px solid #c0a96d;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b19856;
  color: #fff;
  border-color: #b19856;
}
.cookie-settings-btn {
  background: #e7f6fb;
  color: #19717d;
  border: 1.5px solid #19717d;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #19717d;
  color: #fff;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,48,64,0.63);
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 24px 28px;
  box-shadow: 0 4px 48px #004b6629;
  min-width: 320px;
  min-height: 180px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 2700;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.36rem;
  color: #004B66;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 14px;
  background: none;
  border: none;
  color: #b19856;
  font-size: 2rem;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 50%;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: #e7f6fb;
  color: #19717d;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-switch-label {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
}
.cookie-switch {
  width: 44px;
  height: 24px;
  background: #e7f6fb;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  border: 1.5px solid #b5d4dc;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch-slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #b19856;
  border-radius: 50%;
  transition: transform 0.23s cubic-bezier(.45,.2,.07,1);
}
.cookie-switch input:checked + .cookie-switch-slider {
  transform: translateX(18px);
  background: #29A5B8;
}
.cookie-category.essential .cookie-switch {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-category.essential .cookie-switch-slider {
  background: #bbbba8;
}

.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container {
    padding: 0 12px;
  }
  .main-nav {
    gap: 20px;
  }
  .feature-grid, .service-list, .service-grid, .contact-features ul {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 6vw;
  }
  .feature-grid, .service-list, .service-grid, .content-grid, .contact-features ul {
    gap: 10px;
  }
  .cta-final {
    border-radius: 18px;
    padding: 28px 6vw 28px 6vw;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .section, .features, .services-overview, .services-list, .about-section, .testimonial-section, .contact-section, .cta-final, .pricing-section,
  .legal-section, .confirmation-section, .service-promises, .contact-features {
    padding: 30px 3vw;
    border-radius: 16px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .feature-grid, .service-list, .service-grid, .contact-features ul {
    flex-direction: column;
    gap: 16px;
  }
  .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 16px;
  }
  .footer-brand {
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .cta-btn {
    padding: 11px 14px;
    font-size: 1rem;
  }
  .confirmation-section .content-wrapper {
    gap: 13px;
  }
  .map-placeholder img {
    width: 100%;
    max-width: 180px;
  }
  .testimonials, .features, .section, .contact-section {
    padding: 24px 3vw;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 18px 4vw 18px 4vw;
    font-size: 0.97rem;
  }
}
@media (max-width:420px) {
  h1 {
    font-size: 1.34rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .container {
    padding: 0 2vw;
  }
}

/* ANIMATION CLASSES */
.fade-in {
  opacity: 0;
  animation: fadeInAnim 0.62s 0.14s forwards cubic-bezier(0.47,0,0.74,0.71);
}
@keyframes fadeInAnim {
  0% { opacity: 0; filter: blur(6px); }
  100% { opacity: 1; filter: blur(0); }
}

/* FORM STYLE EXAMPLES (if any forms added) */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 14px;
  border: 1.3px solid #e0d8c3;
  border-radius: 8px;
  margin-bottom: 10px;
  background: #fff;
  transition: border-color 0.16s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-gold);
  background: #fbf9f4;
}

/* UTILITIES */
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }
.text-center { text-align: center !important; }

/* LUXURY REFINEMENT, SHADOWS & ACCENTS */
.section, .card, .feature-grid li, .service-list li, .service-grid li, .testimonials, .contact-section, .contact-features, .about-section, .pricing-section, .legal-section {
  border-radius: 18px;
  box-shadow: var(--shadow-premium);
}

/* GOLDED ACCENTS & STROKES */
.border-gold {
  border-left: 6px solid var(--color-gold);
}

::-webkit-scrollbar {
  width: 12px;
  background-color: #ede1c3;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg,#b19856 60%,#eacb8d 100%);
  border-radius: 8px;
}

/* SAFETY: Prevent copy-paste mistakes: NO grid, NO columns */
/* display: grid, grid-*, column-*, break-inside: all forbidden! */
