/* --------------------------------------------------------
   Élégance Instinctive – NATURE ORGANIC STYLE CSS
   Author: Senior CSS Developer & UI Designer
   --------------------------------------------------------
   - Nature-inspired organic design: earth tones, organic shapes,
     natural textures, green accent, gentle shadows, modern Parisian feel
   - Responsive, mobile-first, flexbox-only layout (NO CSS GRID!)
   - Brand font: 'Playfair Display', 'Roboto', serif, sans-serif
   - Brand colors: 
       Primary:   #23214C (midnight blue)
       Secondary: #DAA520 (golden straw)
       Accent:    #F3F6F9 (soft natural white)
       Organic green: #447A5D  (added for nature accent)
       Earth beige: #EFEDE6  (background blocks)
   - Transitions, hover/focus, modern card & section styles
   -------------------------------------------------------- */

/* RESET & BASE ------------------------------------------- */
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #EFEDE6;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #23214C;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #447A5D;
  text-decoration: none;
  transition: color .18s;
}
a:hover, a:focus {
  color: #DAA520;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
button, .cta-button {
  cursor: pointer;
  user-select: none;
}

/* TYPOGRAPHY --------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #23214C;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: .02em;
}
h1 { font-size: 2.6rem; line-height: 1.12; margin-bottom: 20px; }
h2 { font-size: 2rem;  line-height: 1.2;  margin-bottom: 16px; }
h3 { font-size: 1.3rem;  line-height: 1.2; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.95rem; }
p, li, .subheadline {
  font-family: 'Roboto', Arial, sans-serif;
}
p, .subheadline { font-size: 1rem; margin-bottom: 16px; }
.subheadline {
  color: #447A5D;
  font-size: 1.15rem;
  margin-bottom: 18px;
  font-weight: 500;
  font-style: italic;
}
main strong { color: #23214C; font-weight: 700; }

/* LAYOUT & CONTAINERS ------------------------------------ */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section, section.hero, section.about, .services, .policy, .thankyou, .contact-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 30px 16px 30px 16px;
  background: #F3F6F9;
  box-shadow: 0 2px 16px 0px rgba(68, 122, 93, 0.09);
}

.content-wrapper{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* FLEX FEATURE GRIDS & ALIGNMENT ------------------------- */
.feature-grid, .feature-list, .plan-details, .service-list, .service-highlights, .selling-points, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #EFEDE6;
  border-radius: 22px 12px 22px 12px;
  padding: 26px 20px 22px 22px;
  box-shadow: 0 5px 28px 0 rgba(35, 33, 76, 0.06);
  color: #23214C;
  min-width: 220px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .16s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}
.feature-item h3 {
  font-size: 1.2rem;
  color: #447A5D;
  margin-bottom: 6px;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 4px 32px 0 rgba(68, 122, 93, 0.12);
  transform: translateY(-3px) scale(1.025);
}
.selling-points, .service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 16px 0;
}
.selling-points li, .service-highlights li {
  background: #FFF;
  color: #447A5D;
  font-size: 1.07rem;
  font-weight: 500;
  border-radius: 18px 18px 12px 12px;
  padding: 10px 20px;
  margin-bottom: 0;
  box-shadow: 0 1px 6px rgba(35, 89, 66, 0.08);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.service-list li {
  background: #EFEDE6;
  border-radius: 18px 12px 18px 12px;
  padding: 20px 20px 16px 25px;
  font-size: 1.07rem;
  margin-bottom: 0;
  box-shadow: 0 1px 8px rgba(68, 122, 93, 0.07);
}
.feature-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.feature-list li {
  font-size: 1rem;
  padding: 0 0 0 0;
  color: #23214C;
}
.plan-details, .trend-description, .subscription-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #F3F6F9;
  padding: 24px 20px 16px 24px;
  border-radius: 16px 28px 16px 22px;
  box-shadow: 0 1px 6px rgba(35, 33, 76, 0.04);
}
.faq h3 { color: #447A5D; font-size: 1.06rem; margin-bottom: 8px; }
.faq ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy .text-section, .thankyou .content-wrapper {
  gap: 20px;
}

/* TESTIMONIALS ------------------------------------------- */
.testimonials h2, .testimonials h3 {
  color: #447A5D;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
  justify-content: flex-start;
}
.testimonial-card {
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 24px 20px 32px;
  border-radius: 26px 12px 22px 16px;
  box-shadow: 0 5px 22px 0 rgba(35, 33, 76, 0.07);
  margin-bottom: 20px;
  color: #23214C;
  font-size: 1.05rem;
  font-style: italic;
  min-width: 260px;
  max-width: 390px;
  transition: box-shadow .19s, transform .16s;
}
.testimonial-card p {
  color: #23214C;
  margin-bottom: 12px;
}
.testimonial-card footer {
  color: #447A5D;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 44px 0 rgba(68, 122, 93, 0.12);
}

/* HERO / CALL TO ACTION ---------------------------------- */
.hero, .thankyou {
  background: linear-gradient(120deg, #EFEDE6 87%, #F3F6F9 100%);
  border-radius: 30px 24px 30px 24px;
  margin-bottom: 60px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .container, .thankyou .container {
  display: flex;
  align-items: center;
  min-height: 280px;
}
.hero .content-wrapper, .thankyou .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.cta-button {
  display: inline-block;
  background: #447A5D;
  color: #FFF;
  padding: 14px 36px;
  border-radius: 32px 14px 32px 18px;
  font-family: 'Playfair Display', serif;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  box-shadow: 0 4px 21px rgba(68, 122, 93, 0.14);
  transition: background .18s, box-shadow .23s, transform .12s;
  margin-top: 12px;
  margin-bottom: 10px;
}
.cta-button:hover, .cta-button:focus {
  background: #23214C;
  color: #FFF;
  box-shadow: 0 7px 32px rgba(68, 122, 93, 0.19);
  transform: translateY(-1.5px) scale(1.03);
}

/* MAIN NAVIGATION / HEADER ------------------------------- */
header {
  background: #F3F6F9;
  box-shadow: 0 2px 9px rgba(35, 33, 76, 0.05);
  position: relative;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
}
.main-nav > a img {
  height: 46px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav li {
  margin-bottom: 0;
}
.main-nav a {
  font-family: 'Playfair Display', serif;
  color: #23214C;
  font-size: 1.07rem;
  font-weight: 500;
  border-radius: 10px;
  padding: 6px 12px;
  transition: background .16s, color .17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EFEDE6;
  color: #447A5D;
}

.mobile-menu-toggle {
  display: none;
  background: #447A5D;
  color: #FFF;
  width: 44px;
  height: 44px;
  border-radius: 14px 24px 16px 10px;
  font-size: 2.2rem;
  align-items: center;
  justify-content: center;
  transition: background .16s;
  position: absolute;
  right: 22px;
  top: 18px;
  z-index: 101;
  border: none;
  box-shadow: 0 4px 18px rgba(35, 33, 76, 0.07);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #23214C;
}
/* MOBILE MENU OVERLAY ------------------------------- */
.mobile-menu {
  position: fixed;
  z-index: 102;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(68, 122, 93, 0.92);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.83,.01,.26,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  padding: 32px 24px 20px 24px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: #FFF;
  color: #447A5D;
  width: 44px;
  height: 44px;
  border-radius: 18px 9px 13px 21px;
  font-size: 2.1rem;
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 104;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background .13s;
  box-shadow: 0 2px 7px rgba(246, 238, 191, 0.13);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #DAA520;
  color: #FFF;
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  width: 90vw;
  max-width: 400px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  border-radius: 8px;
  padding: 10px 12px;
  transition: background .16s, color .19s;
  margin-left: 6px;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #DAA520;
  color: #23214C;
}

/* FOOTER -------------------------------------- */
footer {
  background: #F3F6F9;
}
.footer-main {
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 20px 12px 20px;
  border-radius: 20px 36px 20px 16px;
  box-shadow: 0 1px 16px rgba(68,122,93,0.07);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #447A5D;
  font-size: 1rem;
  margin-bottom: 2px;
  border-radius: 8px;
  padding: 5px 10px;
  transition: background .14s, color .16s;
}
.footer-nav a:hover{
  background: #EFEDE6;
  color: #23214C;
}
.footer-contact p {
  font-size: 1rem;
  color: #23214C;
  margin-bottom: 8px;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 7px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #DAA52017;
  border-radius: 12px;
  transition: background .18s;
}
.footer-social a:hover {
  background: #447A5D1b;
}
.footer-social img {
  width: 20px;
  height: 20px;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 18px 8px;
}
.footer-bottom small {
  color: #447A5D;
  font-size: 0.91rem;
  font-family: 'Roboto', Arial, sans-serif;
}

/* CONTACT SECTION ----------------------------- */
.contact-section ul {
  margin-bottom: 18px;
  margin-top: 0;
}
.contact-section ul li {
  margin-bottom: 6px;
  color: #23214C;
}
.contact-info {
  margin-top: 16px;
  color: #447A5D;
  font-size: 1.04rem;
  background: #F3F6F9;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 1px 8px rgba(68,122,93,0.03);
}

/* MISC ORGANIC NATURAL DECORATIVE SHAPES (optional backgrounds) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #EFEDE6;
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(68,122,93,0.07);
  padding: 22px 20px;
  transition: box-shadow .18s;
}
.card:hover, .card:focus {
  box-shadow: 0 4px 28px rgba(68,122,93,0.14);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* COOKIE CONSENT BANNER --------------------------- */
.cookie-banner {
  position: fixed;
  z-index: 2000;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #447A5D;
  color: #F3F6F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px 18px 30px;
  gap: 20px;
  box-shadow: 0 -4px 24px rgba(35,33,76,0.15);
  font-size: 1rem;
  transition: transform .34s cubic-bezier(.81,.08,.18,1.01);
}
.cookie-banner button {
  background: #EFEDE6;
  border-radius: 28px 10px 24px 12px;
  padding: 9px 22px;
  color: #447A5D;
  font-weight: 700;
  margin-left: 10px;
  font-size: 1rem;
  border: none;
  transition: background .13s, color .13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #DAA520;
  color: #FFF;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
/* COOKIE MODAL POPUP ----------------------------------- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2100;
  background: rgba(35, 33, 76, 0.33);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal .27s cubic-bezier(.83,.01,.26,.99);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #F3F6F9;
  color: #23214C;
  border-radius: 26px 14px 32px 16px;
  padding: 36px 32px 28px 32px;
  max-width: 420px;
  width: 94vw;
  box-shadow: 0 7px 46px rgba(68,122,93,0.17);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 22px;
  background: #FFF;
  color: #447A5D;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 1.34rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #DAA520;
  color: #FFF;
}
.cookie-modal h3 {
  color: #447A5D;
  font-size: 1.23rem;
  margin-bottom: 3px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  color: #23214C;
}
.cookie-category input[type="checkbox"] {
  accent-color: #447A5D;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  margin-left: 0;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #DAA520;
}
.cookie-category.essential label {
  color: #DAA520;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-actions button {
  min-width: 110px;
  font-size: 1rem;
  border-radius: 18px 10px 20px 12px;
  background: #447A5D;
  color: #FFF;
  font-weight: 600;
  padding: 10px 15px;
  transition: background .15s, color .15s;
}
.cookie-modal-actions button.secondary {
  background: #EFEDE6;
  color: #447A5D;
}
.cookie-modal-actions button.secondary:hover, .cookie-modal-actions button.secondary:focus {
  background: #DAA520;
  color: #FFF;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #23214C;
}

/* RESPONSIVE: MOBILE FIRST ----------------------------- */
@media (max-width: 1399px) {
  .container { max-width: 1000px; }
}
@media (max-width: 1200px) {
  .container { max-width: 980px; }
  .footer-main { gap: 26px; }
}
@media (max-width: 1024px) {
  .container { max-width: 830px; }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 30px; }
}
@media (max-width: 900px) {
  .main-nav ul { gap: 14px; }
}
@media (max-width: 768px) {
  /* Nav */
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main-nav {
    justify-content: flex-start;
    gap: 10px;
  }
  /* General layouts to column */
  .feature-grid, .testimonial-list, .card-container, .content-grid, .footer-main {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .hero .container, .thankyou .container {
    min-height: 200px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .container { padding: 0 8px; }
  header { padding: 0; }
  .footer-main, .section, section.hero, .thankyou, .policy, .about, .services {
    padding: 26px 8px;
  }
  .cta-button {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
  .testimonial-card {
    padding: 20px 12px;
    min-width: unset;
    max-width: 96vw;
  }
}

/* SCROLLBARS, SELECTION, MISC -------------------------- */
::-webkit-scrollbar {
  width: 7px;
  background: #F3F6F9;
}
::-webkit-scrollbar-thumb {
  background: #EFEDE6;
  border-radius: 3.5px;
}
::selection {
  background: #447A5D22;
}

/* FOCUS STYLES ------------------------------------------ */
a:focus, button:focus, .cta-button:focus {
  outline: 2px dashed #447A5D;
  outline-offset: 2px;
}

/* ANIMATIONS & MICRO-INTERACTIONS ---------------------- */
.cta-button, .feature-item, .testimonial-card, .card, .footer-social a, .main-nav a, .cookie-banner button, .cookie-modal-actions button, .mobile-nav a {
  transition: background .16s, box-shadow .18s, color .16s, transform .12s;
}
.cookie-banner, .cookie-modal {
  transition: transform .32s cubic-bezier(.81,.08,.18,1.01);
}

/* PRINT STYLE SIMPLIFICATION --------------------- */
@media print {
  header, footer, .cookie-banner, .cookie-modal, .mobile-menu {
    display: none !important;
  }
  .section, .about, .policy, .thankyou {
    background: #fff;
    box-shadow: none;
    padding: 0;
  }
}

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