/* 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,
main, 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;
  font-family: "Roboto", Arial, sans-serif;
  background: #F3F8F2;
  color: #265D3A;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
  margin-bottom: 24px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #265D3A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  text-decoration: underline;
  color: #f6c101;
}

/* Variables / Fallbacks */
:root {
  --va-primary: #265D3A;
  --va-secondary: #86A47C;
  --va-accent: #F3F8F2;
  --va-yellow: #F6C101;
  --va-pink: #FF9AAD;
}

/* Fonts */
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.1;
  color: #265D3A;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li{
  font-size: 1.06rem;
  font-family: "Roboto", Arial, sans-serif;
  margin-bottom: 13px;
}
strong {
  font-weight: 800;
  font-family: "Roboto", Arial, sans-serif;
}

/* Container and Layouts */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 24px 0 rgba(38,93,58,0.11);
  position: relative;
}
/* Playful accents added through pseudo-elements */
.section::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: var(--va-yellow);
  border-radius: 100% 80% 90% 90% / 100% 80% 90% 100%;
  position: absolute;
  top: -30px;
  left: -30px;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  animation: floatblob 8s infinite alternate ease-in-out;
}
@keyframes floatblob {
  0% { transform: scale(1) translateY(0px); }
  100% { transform: scale(1.2) translateY(8px); }
}

/* FLEXBOX PATTERNS: ENFORCED */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 14px 0 rgba(38,93,58,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 28px;
  transition: transform 0.17s, box-shadow 0.19s;
  display: flex;
  flex-direction: column;
  min-width: 260px;
}
.card:hover {
  transform: translateY(-6px) scale(1.04) rotate(-1.5deg);
  box-shadow: 0 8px 22px 2px rgba(255,154,173,0.13);
}
.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;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 18px 0 rgba(255, 154, 173, 0.07), 0 2px 8px 0 rgba(38, 93, 58, 0.04);
  margin-bottom: 20px;
  border-left: 6px solid var(--va-primary);
  transition: box-shadow 0.18s, border-color 0.22s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px 0 rgba(134,164,124,0.17), 0 6px 26px 0 rgba(246,193,1,0.10);
  border-left: 6px solid var(--va-yellow);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--va-accent);
  border-radius: 16px;
  padding: 22px 20px;
  margin-bottom: 20px;
}

/* -- HERO STYLES -- */
.hero {
  margin-bottom: 60px;
  background: linear-gradient(96deg, #F3F8F2 77%, #FF9AAD 100%);
  border-bottom-left-radius: 54px;
  border-bottom-right-radius: 54px;
  min-height: 320px;
  box-shadow: 0 8px 34px 0 rgba(246,193,1,0.06);
  display: flex;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 670px;
  gap: 12px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero h1 {
  color: #265D3A;
  font-size: 2.7rem;
  line-height: 1.1;
}
.hero p {
  font-size: 1.3rem;
  color: #265D3A;
  margin-bottom: 17px;
}

/* CTA BUTTON */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 37px;
  font-size: 1.12rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #fff;
  background: #265D3A;
  border: none;
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(38,93,58,0.09);
  margin-top: 17px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: background 0.18s, transform 0.14s, box-shadow 0.16s;
  position: relative;
  z-index: 2;
}
.cta-button:hover, .cta-button:focus {
  background: #F6C101;
  color: #265D3A;
  transform: translateY(-3px) scale(1.035);
  box-shadow: 0 8px 28px 0 rgba(255,154,173,0.13);
  text-decoration: none;
}

/* Feature and Service Grid Styling */
.feature-grid, .service-grid, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-grid > div, .service-grid > div {
  background: var(--va-accent);
  border-radius: 18px;
  padding: 26px 20px;
  flex: 1 1 225px;
  box-shadow: 0 4px 15px 0 rgba(246,193,1,0.09);
  min-width: 230px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.16s, box-shadow 0.16s;
}
.feature-grid > div:hover, .service-grid > div:hover {
  background: #fffbe6;
  transform: scale(1.03) rotate(-2deg);
  box-shadow: 0 8px 30px 0 rgba(255,154,173,0.12);
}
.feature-grid img, .service-grid img {
  width: 48px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px #86A47C44);
}

/* Blog List */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.blog-list article {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 14px 0 rgba(246,193,1,0.07);
  padding: 22px 16px;
  transition: box-shadow 0.18s, transform 0.14s;
  text-align: left;
}
.blog-list article:hover {
  box-shadow: 0 12px 26px 0 rgba(255,154,173,0.13);
  transform: scale(1.02) rotate(1deg);
}

/* Footer Styling */
footer {
  background: #265D3A;
  color: #fff;
  padding: 48px 0 24px 0;
  margin-top: 38px;
  border-top-left-radius: 84px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}
.footer-brand img {
  max-width: 80px;
}
.footer-contact {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  opacity: 0.92;
}
.footer-contact img {
  width: 18px;
  margin-right: 8px;
  vertical-align: middle;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #F6C101;
  font-weight: 600;
  font-size: 1rem;
  transition: color .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FF9AAD;
  text-decoration: underline;
}
.copyright {
  font-size: 0.96rem;
  color: #fff5;
  margin-top: 12px;
}

/* Header & Navigation */
header {
  background: #fff;
  box-shadow: 0 4px 22px 0 rgba(246,193,1,0.08);
  min-height: 70px;
  z-index: 1110;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 18px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  color: #265D3A;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.11rem;
  padding: 4px 3px;
  border-radius: 8px;
  transition: color 0.17s, background 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FF9AAD;
  color: #265D3A;
  text-decoration: none;
}
.mobile-menu-toggle {
  display: none;
  background: #FF9AAD;
  border: none;
  color: #265D3A;
  font-size: 2.2rem;
  border-radius: 14px;
  padding: 8px 14px;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.15s, color 0.17s;
  z-index: 1202;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F6C101;
  color: #fff;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1201;
  box-shadow: 0 2px 20px 2px rgba(38, 93, 58, 0.13);
  padding: 32px 24px 20px 24px;
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(.47,1.64,.41,.8);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #f3f8f2;
  color: #265D3A;
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  position: absolute;
  top: 22px;
  right: 24px;
  cursor: pointer;
  padding: 6px 13px;
  z-index: 99;
  transition: background 0.15s, color 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FF9AAD;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 38px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.28rem;
  color: #265D3A;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  padding: 14px 8px 14px 0;
  border-radius: 0 22px 22px 0;
  background: none;
  transition: background .16s, color .18s;
  min-width: 180px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #FF9AAD88;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .footer-nav, .main-nav {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.12rem; }
  .section {
    padding: 22px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-brand img { max-width: 54px; }
  .footer-nav {flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer-contact { font-size: 0.96rem; }
  .content-grid, .feature-grid, .service-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .blog-list {
    gap: 12px;
  }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  /* Hide left accent blob for mobile for visual clarity */
  .section::before {
    display: none;
  }
}
@media (max-width: 540px) {
  .hero .content-wrapper { padding-top: 14px; padding-bottom: 14px; }
  .footer-contact { font-size: 0.85rem; }
  .cta-button {
    font-size: 1rem;
    padding: 10px 15px;
  }
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe6;
  color: #265D3A;
  box-shadow: 0 -2px 28px 0 rgba(246,193,1,0.19);
  z-index: 1700;
  padding: 26px 18px 18px 18px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  max-width: 360px;
  margin-left: auto;
  margin-right: 20px;
  animation: slideinbanner 0.7s cubic-bezier(.84,-0.01,.37,.94);
}
@keyframes slideinbanner {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  font-size: 1.04rem;
  margin-bottom: 0;
}
.cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.96rem;
  border: none;
  padding: 9px 19px;
  border-radius: 24px;
  margin-top: 2px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  font-weight: 600;
}
.btn-accept {
  background: #265D3A;
  color: #fff;
}
.btn-accept:hover, .btn-accept:focus {
  background: #F6C101;
  color: #265D3A;
}
.btn-reject {
  background: #FF9AAD;
  color: #fff;
}
.btn-reject:hover, .btn-reject:focus {
  background: #86A47C;
  color: #fff;
}
.btn-settings {
  background: #fff;
  color: #265D3A;
  border: 2px solid #86A47C;
}
.btn-settings:hover, .btn-settings:focus {
  background: #F3F8F2;
  box-shadow: 0 2px 8px 0 rgba(255,154,173,0.15);
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0; right: 0; bottom: 0;
  background: rgba(134,164,124,0.24);
  z-index: 1711;
  align-items: center;
  justify-content: center;
  animation: fadeinmodal .5s cubic-bezier(.84,-0.01,.37,.94);
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeinmodal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 23px;
  padding: 36px 24px 26px 24px;
  min-width: 260px;
  max-width: 378px;
  box-shadow: 0 8px 34px 0 rgba(246,193,1,0.19);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
  position: relative;
}
.cookie-modal-close {
  border: none;
  background: #F3F8F2;
  color: #265D3A;
  border-radius: 11px;
  font-size: 1.4rem;
  position: absolute;
  top: 13px;
  right: 13px;
  cursor: pointer;
  padding: 4px 9px;
  transition: background 0.17s, color 0.13s;
}
.cookie-modal-close:hover {
  background: #FF9AAD;
  color: #fff;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-toggle {
  margin-left: auto;
}
.cookie-toggle input[type='checkbox'] {
  width: 34px; height: 20px;
  appearance: none;
  border-radius: 14px;
  background: #86A47C;
  outline: none;
  transition: background 0.16s;
  position: relative;
  cursor: pointer;
}
.cookie-toggle input[type='checkbox']:checked {
  background: #F6C101;
}
.cookie-toggle input[type='checkbox']::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1px; left: 2px;
  transition: left 0.15s;
}
.cookie-toggle input[type='checkbox']:checked::before {
  left: 14px;
}
/* Essential always on */
.cookie-category .essential {
  color: #86A47C;
  font-weight: 900;
  font-size: 1.13rem;
}

/* ---- General Spacing ---- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 17px;
}

/* -------- Misc ----------- */
::-webkit-input-placeholder { color: #86A47C; }
::-moz-placeholder { color: #86A47C; }
:-ms-input-placeholder { color: #86A47C; }
::placeholder { color: #86A47C; }

/* Focus States Accessibility */
a:focus, button:focus, .cta-button:focus {
  outline: 3px dotted #F6C101;
  outline-offset: 3px;
}

/* Misc Elements */
ul li, ol li {
  margin-bottom: 12px;
  padding-left: 0;
  position: relative;
}
ul li {
  padding-left: 17px;
}
ul li:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #F6C101;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 8px; left: 0;
  opacity: 0.7;
}

input, textarea, select {
  border: 1.5px solid #86A47C;
  border-radius: 11px;
  padding: 8px 12px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 16px;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #F6C101;
  outline: none;
}

/* ---- Animations for playful style ---- */
@keyframes bounce-in {
  0% {transform: scale(0.95); opacity: 0;}
  60% {transform: scale(1.04); opacity: 1;}
  100% {transform: scale(1);}
}
.card, .testimonial-card, .cta-button, .feature-grid > div, .service-grid > div, .blog-list article {
  animation: bounce-in 0.3s cubic-bezier(.7,1.7,.6,1.1);
}

/* Emphasize stars in testimonials */
.testimonial-card span {
  color: #F6C101;
  font-size: 1.18em;
  font-weight: 700;
  letter-spacing: 1px;
  margin-left: 3px;
}

/* --- Playful Typography --- */
h1, h2, h3 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  height: 7px;
  width: 44px;
  margin-top: 7px;
  border-radius: 4px;
  background: #FF9AAD;
  opacity: 0.5;
  position: relative;
}
h2::after {
  width: 24px;
  height: 6px;
  background: #F6C101;
}
@media (max-width: 480px) {
  h1::after, h2::after {display: none;}
}

/* --- End --- */

/* --- END OF CSS --- */
