/* 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #faf9f6;
  font-family: 'Roboto', Arial, sans-serif;
  color: #181818;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

/* TYPOGRAPHY (creative_artistic + Brand) */
h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #17202A;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2ECC71;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #212F3C;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
}
p, ul, ol, li, span, label, .text-section {
  font-size: 1rem;
  color: #17202A;
}
strong { font-weight: 700; }
a {
  color: #2ECC71;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #27ae60;
  text-decoration: underline;
}

/* CREATIVE_ARTISTIC FONTS EXTRAS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;600;400&family=Roboto:wght@400;500&display=swap');

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  border-radius: 24px 60px 24px 60px;
  box-shadow: 0 6px 28px 4px rgba(44, 204, 113, 0.03), 0 2px 12px 0 rgba(23,32,42,0.09);
  padding: 40px 36px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .section { padding: 24px 6px; }
  .container { padding: 0 8px; }
  .content-wrapper { padding: 20px 12px; border-radius: 20px 30px 20px 30px; }
}

/* HEADER */
header {
  background: linear-gradient(90deg, #2ECC71 0 35%, #E8F8F5 100%);
  box-shadow: 0 3px 24px rgba(23,32,42,0.08);
  position: sticky;
  top: 0;
  z-index: 80;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px 16px 0;
}
.main-nav {
  display: flex;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 0 6px;
  color: #17202A;
  border-bottom: 2px solid transparent;
  border-radius: 0 0 10px 10px;
  transition: color 0.2s, border-bottom-color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #2ECC71;
  border-bottom: 2px solid #2ECC71;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}
@media (max-width: 900px) {
  .main-nav { gap: 12px; }
  header .container img { height: 36px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  header .container {
    padding-right: 8px;
  }
}

/* CTA BUTTONS & LINKS */
.cta {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: #2ECC71;
  color: #fff;
  padding: 13px 34px;
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(44,204,113,0.09);
  border: none;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.18s, transform 0.16s, box-shadow 0.18s;
  position: relative;
  outline: none;
}
.cta.primary {
  background: #17202A;
  color: #fff;
}
.cta:hover, .cta:focus {
  background: #27ae60;
  color: #fff;
  transform: translateY(-2px) scale(1.02) rotate(-1.2deg);
  box-shadow: 0 6px 18px 0 rgba(44,204,113,0.15);
}
.cta.primary:hover, .cta.primary:focus {
  background: #2ECC71;
}

/* FLEX LAYOUTS */
.card-container, .content-grid, .features, .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FDFEFE;
  border-radius: 24px 15px 24px 48px;
  box-shadow: 0 2px 12px 0 rgba(23,32,42,0.07);
  padding: 32px 28px;
  flex: 1 1 280px;
  transition: box-shadow 0.18s, transform 0.16s;
  z-index: 1;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 32px 0 rgba(44,204,113,0.14), 0 2px 12px 0 rgba(23,32,42,0.10);
  transform: translateY(-4px) scale(1.02);
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  margin: 0 0 24px 0;
  background: #fff;
  border: 2.5px dashed #2ECC71;
  border-radius: 32px 14px 36px 17px;
  box-shadow: 0 2px 10px 0 rgba(44,204,113,0.08);
  font-size: 1.11rem;
  color: #1A252F;
  min-width: 240px;
  max-width: 520px;
  transition: border-color 0.14s, box-shadow 0.18s;
}
.testimonial-card p {
  color: #17202A;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #21825C;
  font-style: italic;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: #17202A;
  box-shadow: 0 6px 18px 0 rgba(44,204,113,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
ul, ol {
  margin-left: 30px;
  margin-top: 12px;
  margin-bottom: 8px;
  padding-left: 0;
}
li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* LINKS INSIDE SECTION/LIST */
ul li a.cta,
ol li a.cta {
  margin-left: 10px;
  font-size: 1rem;
  padding: 7px 19px;
}

/* Unique Artistic Elements */
.section {
  position: relative;
  overflow: visible;
  /* artistic accent circle */
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  top: 10%;
  right: -48px;
  width: 85px;
  height: 85px;
  background: #2ECC71;
  opacity: 0.07;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.section:nth-of-type(even):after {
  left: -48px;
  right: auto;
  top: 60%;
}
@media (max-width: 768px) {
  .section:after {
    display: none;
  }
}

/* FORM ELEMENTS */
input,textarea,select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid #b1eac9;
  margin-bottom: 16px;
  transition: border-color 0.15s, box-shadow 0.16s;
}
input:focus,textarea:focus,select:focus {
  outline: 2px solid #2ECC71;
  border-color: #2ECC71;
}
label {
  font-size: 1rem;
  color: #212F3C;
  margin-bottom: 4px;
  display: block;
}

/* FOOTER */
footer {
  background: #17202A;
  color: #fff;
  margin-top: 80px;
  border-top-left-radius: 60px;
  border-top-right-radius: 28px;
  padding: 64px 0 32px 0;
  box-shadow: 0 -3px 24px rgba(44,204,113,0.08);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  flex: 0 1 320px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #2ECC71;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 3px;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.text-section {
  flex: 1 1 280px;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}
.footer-legal {
  flex: 1 1 240px;
  color: #eafaf1;
  font-size: 0.97rem;
  margin-top: 12px;
}
.footer-legal a {
  color: #b1eac9;
  text-decoration: underline;
}
.footer-legal a:hover,
.footer-legal a:focus {
  color: #2ECC71;
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 26px; align-items: flex-start; }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 14px;
  background: #2ECC71;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2.1rem;
  z-index: 100;
  box-shadow: 0 2px 12px 0 rgba(44,204,113,0.09), 0 1px 4px 0 rgba(23,32,42,0.13);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #17202A;
  color: #2ECC71;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 101;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(0.6, 0.05, 0.3, 1), box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(23,32,42,0);
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  box-shadow: 10px 0 32px 4px rgba(44,204,113,0.12);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #2ECC71;
  align-self: flex-end;
  margin: 22px 22px 0 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #17202A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 36px;
  width: 80vw;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.4rem;
  color: #17202A;
  padding: 13px 0;
  border-radius: 10px;
  transition: background 0.13s, color 0.15s;
  text-align: left;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #2ECC71;
  color: #fff;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .main-nav { display: none !important; }
  .mobile-menu { padding-top: 10px; }
}

/* Ensure hamburger and desktop nav never overlap*/
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #17202A;
  color: #fff;
  box-shadow: 0 -8px 38px 10px rgba(44,204,113,0.09);
  padding: 26px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
  z-index: 999;
  border-top-left-radius: 38px;
  border-top-right-radius: 15px;
  transition: transform 0.32s;
}
.cookie-banner.hide {
  transform: translateY(140%);
  pointer-events: none;
}
.cookie-banner p {
  color: white;
  margin: 0 16px 0 0;
  max-width: 400px;
  font-size: 1rem;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 23px;
  margin: 0 6px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px 0 rgba(44,204,113,0.14);
  transition: background 0.18s, color 0.13s, box-shadow 0.15s;
  outline: none;
}
.cookie-banner .cookie-btn.accept {
  background: #2ECC71;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #17202A;
  border: 1.4px solid #2ECC71;
}
.cookie-banner .cookie-btn.settings {
  background: #FDFEFE;
  color: #2ECC71;
  border: 1.4px solid #2ECC71;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #27ae60;
  color: #fff;
  box-shadow: 0 4px 12px 0 rgba(44,204,113,0.17);
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #f7f7f7;
  color: #17202A;
  box-shadow: 0 1px 4px 0 rgba(23,32,42,0.09);
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; gap: 13px; border-radius: 18px 18px 0 0; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,32,42,0.67);
  justify-content: center;
  align-items: center;
  animation: fadein 0.32s;
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #17202A;
  border-radius: 30px 50px 18px 32px;
  max-width: 410px;
  width: 92vw;
  box-shadow: 0 6px 28px 4px rgba(44,204,113,0.13);
  padding: 38px 30px 33px 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalbounce 0.34s;
}
@keyframes modalbounce {
  0% { transform: scale(0.9) translateY(60px); opacity: 0; }
  90% { transform: scale(1.03) translateY(-7px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  color: #2ECC71;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  margin: 10px 0;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #2ECC71;
  width: 22px; height: 22px;
}
.cookie-category .locked {
  font-size: 1.06rem;
  color: #7d8e8e;
  margin-left: 6px;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 13px;
  justify-content: flex-end;
}
.cookie-modal-content .cookie-btn {
  min-width: 100px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.85rem;
  color: #2ECC71;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #17202A;
}

/* SPECIALS: Thank You & Artistic Details */
.thank-you {
  background: #F3FEF5;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 0 70px 0;
  gap: 30px;
}
.thank-you h1 {
  color: #27ae60;
}
.thank-you a {
  margin-top: 10px;
}

/* General spacing and hierarchy */
.section, .content-wrapper, .card, .testimonial-card, .footer-nav, .feature-item {
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width:600px) {
  h1 { font-size: 2rem; }
  h2 { font-size:1.2rem; }
}

/* Subtle animations and micro-interactions */
.card, .cta, .testimonial-card, .cookie-banner {
  transition: box-shadow 0.19s, border-color 0.16s, background 0.14s, color 0.15s, transform 0.14s;
}
.card:active, .cta:active {
  transform: scale(0.98) translateY(1px);
}

/* Accessibility (Focus) */
:focus {
  outline: 2px solid #2ECC71;
  outline-offset: 2px;
}
::-webkit-input-placeholder {color:#99bbaa;opacity:1;}
::-moz-placeholder {color:#99bbaa;opacity:1;}
:-ms-input-placeholder {color:#99bbaa;opacity:1;}
::placeholder {color:#99bbaa;opacity:1;}
