/* =========================================================
   CSS 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,
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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fafaff;
  color: #374151;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
}

/* =========================================================
   CSS VARIABLES (Soft Pastel Palette + Brand Colors)
   ========================================================= */
:root {
  --primary: #374151;
  --secondary: #E8C87E;
  --accent: #FFFFFF;
  /* Soft Pastel Palette */
  --pastel-blue: #dbeafe;
  --pastel-yellow: #fff7d6;
  --pastel-pink: #ffecef;
  --pastel-mint: #e8fff7;
  --pastel-lavender: #f1eaff;
  --pastel-beige: #f8f6f3;
  --pastel-green: #d5fde0;
  --shadow: 0 4px 24px rgba(120,140,170,0.08), 0 1.5px 2px rgba(85,90,100,0.04);
  --radius-md: 20px;
  --radius-sm: 10px;
  --trans: 0.25s cubic-bezier(.4,0,.2,1);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* Fallbacks for browsers without custom properties */
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fafaff;
  color: #374151;
}

/* =========================================================
   TYPOGRAPHY - SOFT PASTEL STYLE
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol, li, span, a, label, input, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #403944;
  font-weight: 400;
}
.subheadline {
  font-size: 1.2rem;
  color: #6e7281;
  font-family: var(--font-body);
  margin-bottom: 18px;
  font-weight: 500;
}
.cta-text {
  font-size: 1.1rem;
  color: #526174;
  margin-bottom: 26px;
}
strong {
  color: var(--primary);
}

/* =========================================================
   CONTAINER & LAYOUT (MOBILE FIRST, FLEXBOX ONLY)
   ========================================================= */
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pastel-beige);
  border-radius: var(--radius-md);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--pastel-mint);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 24px;
  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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: var(--pastel-blue);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  color: #2d2d2d;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Special layout for highlight-cards on mobile (all pages) */
.highlight-card {
  background: var(--pastel-pink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--trans), transform var(--trans);
}
.highlight-card:hover {
  box-shadow: 0 8px 32px rgba(120,120,190,0.14);
  transform: translateY(-3px) scale(1.015);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #403944;
}

/* Layout for lists inside features and info sections */
.features ul,
.info-section ul,
.values ul,
.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 10px;
}

/* =========================================================
   HEADER & NAVIGATION (Main + Burger Mobile)
   ========================================================= */
header {
  width: 100%;
  background: var(--pastel-lavender);
  box-shadow: 0 2px 14px rgba(195,200,230,0.09);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
header a img {
  height: 46px;
  aspect-ratio: 1/1;
}
.main-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-weight: 500;
  font-family: var(--font-display);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--trans), color var(--trans), box-shadow var(--trans);
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--pastel-yellow);
  color: #b6820b;
  box-shadow: 0 2px 6px rgba(232,200,126,0.08);
}
.main-nav .btn-primary {
  background: var(--secondary);
  color: #5d4a00;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: background var(--trans), box-shadow var(--trans), color var(--trans);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
}
.main-nav .btn-primary:hover,
.main-nav .btn-primary:focus {
  background: #f5e3a0;
  color: #473803;
  box-shadow: 0 2px 10px rgba(232,200,126,0.1);
}

/* ============ MOBILE NAV BUTTON (HAMBURGER) ============ */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  width: 42px;
  font-size: 2.1rem;
  color: var(--primary);
  background: var(--pastel-yellow);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition: background var(--trans), color var(--trans), box-shadow var(--trans);
  z-index: 1001;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #f8ecbe;
  color: #b6820b;
  box-shadow: 0 2px 10px rgba(232,200,126,0.13);
}

/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 900px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ============ MOBILE MENU OVERLAY ============ */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(240,241,255,0.98);
  box-shadow: 0 4px 48px rgba(150,150,230,0.11);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-105%);
  transition: transform var(--trans);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 18px 10px 0;
  font-size: 2rem;
  background: var(--pastel-yellow);
  color: var(--primary);
  border-radius: 50%;
  padding: 8px 14px;
  box-shadow: var(--shadow);
  transition: background var(--trans), color var(--trans);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffecc1;
}
.mobile-nav {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.mobile-nav a {
  width: 100%;
  font-family: var(--font-display);
  font-size: 1.15rem;
  padding: 10px 28px;
  margin: 0;
  color: var(--primary);
  border-radius: var(--radius-sm);
  transition: background var(--trans), color var(--trans);
}
.mobile-nav .btn-primary {
  background: var(--secondary);
  color: #5d4a00;
  font-weight: bold;
  padding: 13px 30px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
  margin-top: 10px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-yellow);
  color: #b6820b;
}

/* Overlay z-index management */
body.mobilemenu-open {
  overflow: hidden;
}

/* =========================================================
   HERO SECTIONS
   ========================================================= */
.hero {
  background: linear-gradient(120deg, var(--pastel-yellow) 0%, var(--pastel-beige) 100%);
  padding: 62px 0 40px 0;
  margin-bottom: 60px;
}
.hero .container {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.hero h1 {
  font-size: 2.4rem;
  color: #31425b;
  letter-spacing: 0.01em;
}
.hero .btn-primary {
  margin-top: 18px;
}

/* =========================================================
   FEATURES & HIGHLIGHTS (SOFT VISUALS)
   ========================================================= */
.features, .highlights, .highlights-list, .recipe-list, .blog-list {
  background: var(--pastel-mint);
  border-radius: var(--radius-md);
  margin-bottom: 60px;
  padding: 36px 0px;
}
.features h2, .highlights-list h2, .highlights h2, .recipe-list h2, .blog-list h2 {
  font-size: 1.8rem;
  color: #495278;
}
.features .content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.features li {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: var(--pastel-beige);
  border-radius: var(--radius-sm);
  padding: 18px 18px 16px 10px;
  box-shadow: var(--shadow);
  min-width: 220px;
}
.features li img {
  width: 40px;
  min-width: 40px;
  height: 40px;
  object-fit: contain;
  margin-top: 3px;
}
.features .text-section {
  padding-top: 2px;
}

/* =========================================================
   CTA SECTIONS
   ========================================================= */
.cta {
  background: var(--pastel-lavender);
  border-radius: var(--radius-md);
  margin-bottom: 60px;
  padding: 36px 0;
  text-align: center;
}
.cta h2 {
  font-size: 1.7rem;
}
.cta .btn-primary {
  margin-top: 20px;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials, .testimonial-card {
  background: var(--pastel-blue);
  border-radius: var(--radius-md);
  margin-bottom: 60px;
}
.testimonials .content-wrapper,
.values .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonials h2 {
  font-size: 1.6rem;
  color: #415177;
}
.testimonial-card {
  box-shadow: var(--shadow);
  font-size: 1.05rem;
  color: #243140;
  background: var(--pastel-blue);
}
.testimonial-card p {
  font-style: italic;
  color: #34425c;
}
.testimonial-card span {
  font-size: 0.97rem;
  font-family: var(--font-body);
  color: #888da9;
  font-weight: 500;
}

/* =========================================================
   FORM & INFO SECTIONS
   ========================================================= */
.form-section, .info-section, .about, .values, .faq, .legal, .contact, .thank-you-section {
  background: var(--pastel-beige);
  border-radius: var(--radius-md);
  margin-bottom: 60px;
  padding: 40px 0;
}
.form-section h1, .info-section h2, .about h1, .values h2, .faq h2, .legal h1, .legal h2, .contact h1 {
  color: #4d547a;
}
.info-section ul {
  gap: 12px;
}
.info-section p img,
.form-section ol img {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-right: 7px;
}
.form-section ol {
  margin-left: 18px;
  margin-bottom: 18px;
  gap: 8px;
}
.form-section li {
  font-size: 1rem;
  margin-bottom: 3px;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--pastel-blue);
  padding: 35px 0 18px 0;
  margin-top: 30px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  box-shadow: 0 -2px 10px rgba(120,150,186,0.04);
}
footer .container {
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #566177;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--trans), color var(--trans);
}
.footer-nav a:hover {
  background: var(--pastel-lavender);
  color: #5e5c95;
}
.footer-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.contact-box {
  background: var(--pastel-mint);
  border-radius: var(--radius-sm);
  padding: 11px 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: var(--shadow);
  font-size: 0.99rem;
}
.contact-box img {
  width: 20px;
  height: 20px;
  display: inline-block;
}
.footer-logo {
  margin-top: 16px;
}
.footer-logo img {
  height: 36px;
  display: inline-block;
}

/* =========================================================
   BUTTONS & INTERACTIONS
   ========================================================= */
.btn-primary {
  display: inline-block;
  background: var(--secondary);
  color: #4b3d0a;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 12px 28px;
  cursor: pointer;
  transition: background var(--trans), color var(--trans), box-shadow var(--trans), transform var(--trans);
  border: none;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #f5e3a0;
  color: #473803;
  box-shadow: 0 4px 18px rgba(232,200,126,0.16);
  transform: scale(1.025);
}

/* Links in content */
.text-section a {
  color: #8072c9;
  font-weight: 500;
  transition: color var(--trans), text-decoration var(--trans);
  text-decoration: underline dotted 1.5px #cacfef;
}
.text-section a:hover, .text-section a:focus {
  color: #593b90;
  text-decoration: underline solid 2px #d4cafe;
}

/* =========================================================
   UTILS: SPACING, GAPS, HIERARCHY, SOFT SHADOWS
   ========================================================= */
section, .section, .highlights, .features, .cta, .testimonials, .form-section,
.info-section, .about, .values, .faq, .legal, .contact, .thank-you-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-wrapper, .content-grid, .footer-info {
  gap: 20px;
}

/* Special: highlight-card gap for grids */
.content-wrapper {
  gap: 28px;
}

@media (min-width: 700px) {
  .content-wrapper,
  .content-grid, .card-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 28px;
    align-items: stretch;
  }
  .highlight-card {
    margin-bottom: 0;
    min-width: 280px;
    flex-basis: 30%;
  }
  .testimonial-card {
    flex: 1 1 300px;
    max-width: 360px;
  }
}

/* Responsive flex-direction control */
@media (max-width: 768px) {
  .content-wrapper, .content-grid, .footer-info, .text-image-section {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .highlight-card, .testimonial-card {
    min-width: 0;
    width: 100%;
    margin-bottom: 20px;
    flex-basis: unset;
  }
}

/* Ensure no overlap and proper white space */
.card, .highlight-card, .testimonial-card, .section, .features, .highlights, .values, .faq,
.legal, .contact, .form-section, .about, .info-section, .thank-you-section {
  margin-bottom: 24px;
  margin-top: 0;
  box-shadow: var(--shadow);
}

/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */
@media (max-width: 600px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.2rem; }
  .btn-primary { font-size: 1rem; padding: 10px 18px; }
  .hero { padding: 32px 0; }
  .section, .features, .highlights, .cta, .testimonials, .form-section, .info-section, .about, .values, .faq, .legal, .contact, .thank-you-section {
    padding: 20px 6px;
    margin-bottom: 40px;
    border-radius: var(--radius-sm);
  }
  .container {
    padding: 0 5px;
  }
}

/* =========================================================
   COOKIE BANNER (BOTTOM, FIXED + MODAL)
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 4000;
  background: var(--pastel-yellow);
  box-shadow: 0 -2px 16px rgba(235,197,125,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 18px 20px 22px;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  font-family: var(--font-body);
  color: #665232;
  animation: fadeInUp 0.7s;
}
.cookie-banner p {
  font-size: 0.98rem;
  color: #573e18;
  margin-right: 24px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: none;
  transition: background .22s, color .22s, transform .18s;
  font-size: 1.02rem;
  cursor: pointer;
  outline: none;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: #503400;
}
.cookie-banner .accept:hover {
  background: #f5e3a0;
  color: #473803;
}
.cookie-banner .reject {
  background: var(--pastel-mint);
  color: #19403f;
}
.cookie-banner .reject:hover {
  background: #cffbe2;
  color: #3e6b5f;
}
.cookie-banner .settings {
  background: var(--pastel-blue);
  color: #3357a7;
}
.cookie-banner .settings:hover {
  background: #c7e9ff;
  color: #183b7d;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 7px 18px 11px;
  }
}

@keyframes fadeInUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,41,60,0.18);
  z-index: 4500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.31s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .modal-content {
  background: var(--pastel-blue);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(50,80,150,0.17);
  max-width: 420px;
  width: 95vw;
  padding: 35px 22px 26px 22px;
  font-family: var(--font-body);
  color: #423e44;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 4600;
  animation: fadeInUp .3s;
}
.cookie-modal h3 {
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #3a4583;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--pastel-mint);
  padding: 13px 17px;
  border-radius: var(--radius-sm);
  margin-bottom: 7px;
  gap: 10px;
  font-size: 1rem;
  font-family: var(--font-body);
  box-shadow: 0 1px 4px rgba(160,220,180,0.04);
}
.cookie-modal .category input[type='checkbox'] {
  accent-color: #6ec2ad;
  width: 17px;
  height: 17px;
  margin-right: 8px;
}
.cookie-modal .category.essential label {
  font-weight: bold;
  color: #19312a;
  opacity: 0.78;
}
.cookie-modal .category.essential input[type='checkbox'] {
  display: none;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 17px;
  background: var(--pastel-yellow);
  color: #423e44;
  border-radius: 50%;
  font-size: 1.3rem;
  padding: 4px 11px;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  z-index: 4650;
  transition: background .2s, color .2s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #fff7d6;
  color: #584630;
}
.cookie-modal .modal-btns {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .modal-btns button {
  background: var(--secondary);
  color: #503400;
  font-weight: bold;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  border: none;
  cursor: pointer;
  transition: background .22s, color .22s, box-shadow .18s;
}
.cookie-modal .modal-btns button:hover, .cookie-modal .modal-btns button:focus {
  background: #f5e3a0;
  color: #473803;
}

/* =========================================================
   MICRO-INTERACTIONS & ANIMATIONS
   ========================================================= */
.card,
.highlight-card,
.btn-primary,
.testimonial-card {
  transition: box-shadow var(--trans), transform var(--trans), background var(--trans), color var(--trans);
}
.card:hover, .highlight-card:hover {
  box-shadow: 0 8px 36px rgba(180,198,222,0.16);
  background: #fff8fa;
  transform: translateY(-2px) scale(1.011);
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(180,198,222,0.13);
  background: #eef7fe;
  transform: translateY(-1.5px) scale(1.009);
}

/* Subtle fade for section appearance */
section, .section {
  animation: appearSection 1.1s cubic-bezier(.23,.69,.35,.97);
}
@keyframes appearSection {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========== MISCELLANEOUS: HIDE SCROLL ON MOBILE MENU/BANNER ========== */
body.modal-open, body.mobilemenu-open {
  overflow: hidden!important;
}

/* =========== Utility for button size consistency =========== */
button, .btn-primary {
  min-width: 120px;
  min-height: 40px;
}

/* =========== Ensure NO grid, NO columns, NO absolute (for content) =========== */
/* (No forbidden properties used) */
