/* =============================
   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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F4E8DB;
  color: #364156;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #A7C95D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, .main-nav a:focus, .mobile-nav a:focus {
  color: #364156;
  text-decoration: underline;
}
strong {
  font-weight: bold;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 12px;
}

/* =============================
   BRAND COLORS & FONTS
============================= */
:root {
  --primary: #364156;
  --secondary: #F4E8DB;
  --accent: #A7C95D;
  --white: #fff;
  --error: #e94545;
  --shadow: rgba(54,65,86,0.07);
}

/* =============================
   TYPOGRAPHY
============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  line-height: 1.14;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  background: linear-gradient(90deg, #A7C95D 0%, #364156 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 4px 12px rgba(167,201,93,0.10);
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
}
h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-top: 32px;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
}
h4 {
  font-size: 1.15rem;
  color: var(--primary);
}
p, li, dd {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #364156;
}
.subtitle {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  color: #364156;
  font-size: 1.2rem;
  margin-bottom: 28px;
}

/* Artistic & playful headings and stylings */
.hero h1 {
  font-family: 'Montserrat', 'Caveat', cursive, sans-serif;
  font-size: 2.2rem;
  letter-spacing: 1.5px;
}
.hero .subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
}

/* =============================
   LAYOUT & CONTAINER
============================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}

/* Page sections spacing */
.section, section {
  padding: 40px 20px;
  background: none;
  border-radius: 24px;
}
@media (max-width: 768px) {
  .section, section {
    padding: 26px 8px;
    border-radius: 12px;
  }
}

/* =============================
   HEADER & NAVIGATION
============================= */
header {
  background: var(--white);
  border-bottom: 4px solid var(--accent);
  box-shadow: 0 4px 18px -8px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 18px;
}
header img {
  height: 48px;
  max-width: 180px;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 10px 0 var(--shadow);
}
.cta-primary {
  background: var(--accent);
  color: var(--primary) !important;
  font-weight: bold;
  border-radius: 14px;
  padding: 11px 22px;
  font-size: 1.08rem;
  margin-left: 10px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 3px 18px -6px var(--accent);
  border: none;
  cursor: pointer;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: var(--accent)!important;
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 6px 34px -6px #a7c95d99;
}

/* Hamburger menu */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 22;
  box-shadow: 0 2px 18px 0 #a7c95d44;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--accent);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(95deg, #F4E8DB 40%, #A7C95D 95%);
  box-shadow: 0 8px 24px -6px var(--primary);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
  will-change: transform;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 34px 28px 20px 18px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: var(--primary);
  color: var(--accent);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  margin-bottom: 16px;
  margin-right: 12px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover {
  background: var(--accent);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--primary);
  padding: 14px 8px 13px 16px;
  border-radius: 10px;
  background: none;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
  margin: 0 0 2px 0;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--primary);
  color: var(--secondary);
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    height: 64px;
    padding: 0 8px;
  }
}

/* Overlay for mobile menu (if needed, add)
.mobile-menu-backdrop {
  position: fixed;
  z-index: 80;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(54,65,86,0.17);
  display: none;
}
.mobile-menu.active ~ .mobile-menu-backdrop {
  display: block;
}
*/

/* =============================
   HERO & ARTISTIC COLOR FIELDS
============================= */
.hero {
  background: linear-gradient(90deg, #F4E8DB 83%, #A7C95D 100%);
  border-radius: 0 0 60px 60px/0 0 18px 18px;
  min-height: 300px;
  margin-bottom: 32px;
  box-shadow: 0 4px 60px -22px #36415622;
}
.hero .container {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  min-height: 270px;
  gap: 32px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 24px 24px/0 0 10px 10px;
    min-height: inherit;
    margin-bottom:18px;
  }
  .hero .container {
    min-height: 180px;
    flex-direction: column;
    gap: 8px;
    padding: 20px 4px 24px 4px;
  }
}

/* =============================
   FEATURE SECTIONS
============================= */
.features-grid, .team-container, .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--white);
  border-radius: 19px;
  box-shadow: 0 5px 19px -8px var(--shadow);
  padding: 28px 20px 22px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  border: 2.5px solid #A7C95D33;
  transition: box-shadow 0.22s, border 0.18s, transform 0.24s;
}
.features-grid > div:hover {
  box-shadow: 0 8px 28px -2px #A7C95D33, 0 18px 44px -10px #36415618;
  border-color: var(--accent);
  transform: scale(1.04) rotate(-1deg);
}
.features-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
}
.team-container {
  gap: 24px;
  margin-top: 16px;
}
.team-container > div {
  flex: 1 1 200px;
  min-width: 200px;
  background: #fffbe3;
  border-radius: 15px;
  box-shadow: 0 3px 9px -8px var(--accent);
  padding: 18px 16px 14px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 5px solid var(--accent);
  position: relative;
}
.team-container > div:before {
  content: '';
  position: absolute;
  top: 16px; left: -8px;
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 60% 35% 60% 35%/43% 60% 50% 55%;
  z-index: 1;
  opacity: 0.08;
}

@media (max-width: 820px) {
  .features-grid, .team-container, .footer-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* ===============
   Content cards
================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 17px;
  box-shadow: 0 4px 16px -6px var(--primary);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 20px 20px 18px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .card-container, .content-grid, .text-image-section, .features-grid, .footer-grid, .team-container {
    flex-direction: column;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================
   LISTS (ICONS & HOVER EFFECTS)
============================= */
ul img, li img {
  vertical-align: middle;
  width: 30px;
  margin-right: 10px;
  filter: drop-shadow(0 2px 3px #a7c95d22);
}
.section ul li {
  background: #fffbe3;
  border-radius: 12px;
  padding: 11px 15px 12px 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 9px -6px var(--primary);
}
.section ul li strong {
  color: var(--primary);
}

/* =============================
   TESTIMONIALS
============================= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 7px 23px -10px #36415633;
  border-left: 7px solid var(--accent);
  transition: box-shadow 0.21s, border 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 16px 42px -6px #a7c95d44, 0 2px 24px -8px #36415622;
  border-color: #364156;
}
.testimonial-content p {
  font-size: 1.12rem;
  color: #2d2630;
  line-height: 1.5;
}
.testimonial-content strong {
  color: var(--primary);
  font-weight: 700;
}

/* =============================
   BUTTONS & INTERACTIVE
============================= */
button, input[type="button"], input[type="submit"], .cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  cursor: pointer;
  outline: none;
  border-radius: 14px;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 3px 18px -6px var(--accent);
  transition: background 0.22s, color 0.18s, box-shadow 0.19s, transform 0.22s;
}
button:hover, button:focus, .cta-primary:focus, .cta-primary:hover {
  background: var(--primary);
  color: var(--accent)!important;
  transform: scale(1.06);
  box-shadow: 0 8px 32px -8px #36415666;
}

/* Smooth hover for links (brand accent underline) */
a:hover:not(.cta-primary)::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--accent);
  border-radius: 5px;
  width: 60%;
  margin: 3px 0 0;
  transition: width 0.2s;
}

/* =============================
   FORMS & INPUTS
============================= */
input, textarea, select {
  border: 2px solid #e2ddb2;
  border-radius: 10px;
  font-size: 1rem;
  padding: 10px 14px;
  margin-bottom: 10px;
  background: #fffbe3;
  font-family: 'Roboto', Arial, sans-serif;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.18s, background 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  background: #F4E8DB;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 0.97rem;
  font-weight: bold;
}

/* =============================
   FOOTER
============================= */
footer {
  background: linear-gradient(97deg, #F4E8DB 83%, #A7C95D 99%);
  box-shadow: 0 -4px 30px -10px #36415611;
  margin-top: 55px;
  padding-top: 52px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1.5px solid #A7C95D33;
}
.footer-brand {
  flex: 1 1 200px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.footer-brand img {
  width: 56px;
  height: auto;
  margin-bottom: 9px;
}
.footer-nav {
  flex: 1 1 180px;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 0.98rem;
}
.footer-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.17s;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-contact {
  flex: 1 1 250px;
  min-width: 200px;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin: 0 8px 0 0;
}
.footer-bottom {
  padding: 15px 0 9px 0;
  text-align: center;
  font-size: 0.97rem;
  color: #606060;
}

@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
}

/* =============================
   COOKIE CONSENT BANNER
============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100%;
  background: var(--primary);
  color: var(--secondary);
  padding: 26px 14px 22px 14px;
  z-index: 140;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 34px;
  box-shadow: 0 -10px 36px -16px #2d2d2d33;
  border-top: 4px solid var(--accent);
  animation: cookie-slide-in 0.75s cubic-bezier(.25,.99,.48,.80);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 7px 14px 7px;
  }
}
@keyframes cookie-slide-in {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--secondary);
  font-size: 1rem;
  margin-right: 23px;
  max-width: 390px;
}
.cookie-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-btns button {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  border-radius: 11px;
  padding: 10px 15px;
  border: none;
  box-shadow: 0 2px 13px -7px #a7c95d99;
  font-size: 1rem;
  transition: background 0.18s, color 0.12s, box-shadow 0.15s;
}
.cookie-btns button.cookie-accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-btns button.cookie-reject {
  background: #fffbe3;
  color: var(--error);
}
.cookie-btns button.cookie-settings {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.cookie-btns button:hover, .cookie-btns button:focus {
  background: var(--primary);
  color: var(--accent);
}

/* Cookie modal popover */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 150;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(54,65,86,0.23);
  display: none;
}
.cookie-modal-backdrop.active {
  display: block;
}
.cookie-modal {
  position: fixed;
  z-index: 151;
  left: 50%; top: 50%;
  transform: translate(-50%,-70%) scale(0.97);
  min-width: 296px;
  max-width: 94vw;
  width: 440px;
  background: var(--white);
  color: var(--primary);
  border-radius: 19px;
  box-shadow: 0 5px 26px 2px #36415644;
  padding: 34px 22px 30px 24px;
  display: none;
  flex-direction: column;
  gap: 18px;
  animation: modalbounce 0.4s cubic-bezier(.28,.83,.47,1.12);
}
@keyframes modalbounce {
  from { transform: translate(-50%,-90%) scale(0.92); opacity: 0;} 
  to   { transform: translate(-50%,-70%) scale(1); opacity: 1;}
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 2px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 21px 0 14px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.cookie-toggle {
  width: 38px; height: 22px;
  background: #e2ddb2;
  border-radius: 14px;
  position: relative;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.12s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .switch {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 50%;
  transition: left 0.18s, background 0.13s;
}
.cookie-toggle input:checked + .switch {
  left: 18px;
  background: var(--accent);
}
.cookie-category.essential .cookie-toggle,
.cookie-category.essential label {
  opacity: 0.7;
  cursor: not-allowed;
}
.cookie-modal .cookie-btns {
  justify-content: flex-end;
  gap: 16px;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 660px) {
  h1 {
    font-size: 1.38rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  h3 {
    font-size: 1rem;
  }
  .footer-brand img {
    width: 41px;
  }
  footer {
    padding-top: 22px;
  }
}
@media (max-width: 480px) {
  .footer-contact {
    font-size: 0.95rem;
  }
  .cookie-modal { padding: 19px 5vw 15px 5vw; min-width: unset; }
  .cookie-category { font-size: 0.96rem; }
}

/* =============================
   ARTISTIC & CREATIVE DECOR
============================= */
.section {
  position: relative;
  background: #fffbe3;
  border-radius: 30px;
  box-shadow: 0 2px 20px -8px #A7C95D22;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: -32px; left: -28px;
  width: 92px; height: 32px;
  background: #F4E8DB;
  border-radius: 60% 35% 60% 35%/43% 60% 50% 55%;
  z-index: 1;
  opacity: 0.08;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -38px; right: -22px;
  width: 70px; height: 30px;
  background: var(--accent);
  border-radius: 36% 60% 67% 51%/34% 75% 42% 59%;
  z-index: 1;
  opacity: 0.09;
}

/* =============================
   OTHER ELEMENTS & UTILITIES
============================= */
.thankyou-nextsteps {
  background: #fffbe3;
  border-radius: 13px;
  padding: 19px 17px 17px;
  margin-bottom: 27px;
  box-shadow: 0 2px 10px -7px #A7C95D22;
}
.thankyou-nextsteps ul { margin-left: 20px; }

/* DL FAQ STYLES */
dl {
  margin-bottom: 24px;
}
dl dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 4px;
}
dl dd {
  margin-bottom: 18px;
  margin-left: 0;
  color: var(--primary);
}

/* =============================
   ACCESIBILITY & FOCUS
============================= */
a, button, .cta-primary {
  outline: none;
}
a:focus, button:focus, .cta-primary:focus {
  outline: 2px dashed var(--accent);
  outline-offset: 2px;
}

::-webkit-input-placeholder { color: #a1a1a1; font-style: italic; }
::-moz-placeholder { color: #a1a1a1; font-style: italic; }
:-ms-input-placeholder { color: #a1a1a1; font-style: italic; }
::placeholder { color: #a1a1a1; font-style: italic; }

/* =============================
   PRINT-FRIENDLY
============================= */
@media print {
  header, nav, .main-nav, .mobile-menu, .cookie-banner, footer { display: none !important; }
  body { background: #fff; color: #000; }
}


/* =============================
   END OF STYLE.CSS
============================= */