/* ===== 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,
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #f8fafc;
  color: #232f37;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: transparent;
}
hr {
  border: none;
  border-top: 1.5px solid #dbe2e8;
  margin: 32px 0;
}

/* ===== BRAND VARIABLES ===== */
:root {
  --primary: #25405A;
  --secondary: #ffffff;
  --accent: #39734C;
  --accent-light: #79A37E;
  --neutral: #f8fafc;
  --neutral-dark: #232f37;
  --shadow: 0 4px 20px 0 rgba(37,64,90,0.12);
  --radius-lg: 36px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

/* ===== LAYOUT + CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

@media (max-width: 800px) {
  .section {
    margin-bottom: 36px;
    padding: 28px 8px;
    border-radius: var(--radius-md);
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Roboto Slab', Cambria, serif;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.19;
  margin-bottom: 14px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.18rem;
  }
}
p, ul, ol, li, span, label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
.hero h1, .hero h2 {
  color: var(--accent);
  text-shadow: 0 2px 6px var(--accent-light);
}
.hero p {
  font-size: 1.1rem;
  font-weight: 400;
}
.bold, b, strong {
  font-weight: 700;
}

/* ===== CREATIVE & ARTISTIC Elements ===== */
.section {
  background: linear-gradient(105deg, var(--neutral) 75%, var(--accent-light) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
 
.section > * {
  position: relative;
  z-index: 1;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  width: 100%;
  background: var(--primary);
  color: var(--secondary);
  border-bottom: 3px solid var(--accent-light);
  box-shadow: 0 4px 18px 0 rgba(37,64,90,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  color: var(--secondary);
  padding: 6px 0 4px 0;
  border-bottom: 2px solid transparent;
  position: relative;
  transition: color 0.18s, border-bottom 0.18s;
}
header nav a:hover, header nav a.active {
  color: var(--accent-light);
  border-bottom: 2px solid var(--accent-light);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 26px;
  font-family: 'Roboto Slab', serif;
  font-size: 1.08rem;
  background: var(--accent);
  color: var(--secondary);
  border-radius: 32px;
  box-shadow: 0 2px 10px 0 rgba(121,163,126,0.10);
  font-weight: bold;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.21s, color 0.21s, box-shadow 0.21s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent-light);
  color: var(--primary);
  box-shadow: 0 6px 16px 0 rgba(121,163,126,0.24);
  text-decoration: none;
}
header img {
  height: 42px;
  width: auto;
}
@media (max-width: 800px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 8px;
  }
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
    font-size: 1rem;
  }
}

/* ===== MOBILE NAV MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--secondary);
  font-size: 2rem;
  border-radius: 50%;
  padding: 6px 14px 6px 14px;
  border: none;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.14s, color 0.13s;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent-light);
  color: var(--primary);
}
@media (max-width: 800px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(110deg, var(--primary) 80%, var(--accent) 100%);
  color: var(--secondary);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 36px 32px 24px 22px;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.66,.11,.23,1.15);
  box-shadow: 0 6px 30px 0 rgba(37,64,90,0.24);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  background: var(--accent-light);
  color: var(--primary);
  font-size: 2.4rem;
  border-radius: 45%;
  border: none;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.11s, color 0.12s;
  z-index: 1210;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--accent);
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Roboto Slab', serif;
  font-size: 1.3rem;
  color: var(--secondary);
  padding: 9px 0 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border-bottom 0.16s;
  border-radius: 12px;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--accent-light);
  border-bottom: 2px solid var(--accent-light);
}
@media (min-width: 801px) {
  .mobile-menu {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(93deg, var(--primary) 50%, var(--accent-light) 100%);
  color: var(--secondary);
  padding: 64px 0 56px 0;
  border-radius: 0 0 42px 42px;
  margin-bottom: 44px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.hero h1, .hero h2 {
  color: var(--secondary);
}
.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  font-weight: 400;
  color: var(--accent-light);
}
.hero .cta-btn {
  margin-top: 22px;
  font-size: 1.12rem;
}
@media (max-width: 600px) {
  .hero {
    padding: 26px 0 24px 0;
    border-radius: 0 0 20px 20px;
    margin-bottom: 24px;
  }
  .hero .container {
    padding: 0 6px;
  }
}

/* ===== FEATURES GRID & CARDS ===== */
.features-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature, .service-block {
  background: var(--secondary);
  box-shadow: 0 3px 15px 0 rgba(37,64,90,0.11);
  border-radius: var(--radius-md);
  padding: 28px 20px 18px 20px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.18s, transform 0.14s;
  border: 2.5px solid transparent;
}
.feature img, .service-block img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-light);
  box-shadow: 0 1px 6px 0 rgba(121,163,126,0.14);
}
.feature:hover, .service-block:hover {
  box-shadow: 0 8px 28px 0 rgba(37,64,90,0.19);
  transform: translateY(-5px) scale(1.02);
  border: 2.5px solid var(--accent-light);
}
.service-price {
  margin-top: auto;
  font-family: 'Roboto Slab', serif;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.04rem;
  background: var(--accent-light);
  padding: 3px 14px;
  border-radius: 14px;
  margin-left: -4px;
}
@media (max-width: 900px) {
  .features-grid, .services-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/* ===== CARDS & FLEX CONTAINERS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--secondary);
  box-shadow: 0 1.5px 9px 0 rgba(37, 64, 90, 0.11);
  border-radius: var(--radius-md);
  padding: 26px 16px;
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.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: var(--neutral);
  border: 2.5px solid var(--accent-light);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 rgba(37,64,90,0.15);
  margin-bottom: 20px;
  font-size: 1.08rem;
  position: relative;
  color: var(--neutral-dark);
}
.testimonial-card span {
  font-size: 0.96rem;
  color: var(--primary);
  font-weight: bold;
  margin-left: 14px;
}
@media (max-width: 700px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== BENEFIT / VALUES / TARGET LISTS ===== */
.benefit-list, .values-list, .target-group-list, .benefit-points, .step-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 12px;
}
.benefit-list li, .values-list li, .target-group-list li, .benefit-points li, .step-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--neutral);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  line-height: 1.5;
  box-shadow: 0 0px 8px 0 rgba(121,163,126,0.09);
  position: relative;
}
.benefit-list img, .target-group-list img, .benefit-points img {
  width: 32px;
  height: 32px;
  background: var(--accent-light);
  border-radius: 50%;
  box-shadow: 0 1px 6px 0 rgba(121,163,126,0.13);
}
.step-list {
  counter-reset: step;
}
.step-list li {
  padding-left: 2.2em;
  position: relative;
  font-size: 1rem;
}
.step-list li b {
  color: var(--accent);
}
.step-list li:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0.6em;
  top: 0.91em;
  background: var(--accent);
  color: var(--secondary);
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1rem;
  width: 1.8em;
  height: 1.8em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px 0 rgba(121,163,126,0.13);
}
@media (max-width: 700px) {
  .benefit-list li, .values-list li, .target-group-list li, .benefit-points li, .step-list li {
    padding: 8px 9px;
    font-size: 0.97rem;
  }
}

/* ===== FAQ BLOCK ===== */
.faq-block {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  padding: 19px 16px 16px 16px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px 0 rgba(37,64,90,0.10);
  border-left: 4px solid var(--accent);
}
.faq-block h3 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 2px;
  font-weight: 700;
  font-family: 'Roboto Slab', serif;
}
.faq-block p {
  color: var(--primary);
  font-size: 1rem;
}

/* ===== CONTACT / SUCCESS BLOCKS ===== */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.contact-block {
  background: var(--secondary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 18px 14px 14px 16px;
  flex: 1 1 160px;
  min-width: 160px;
  max-width: 320px;
  font-size: 1rem;
}
.text-section {
  margin-top: 10px;
  padding-left: 2px;
}
.success-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: var(--neutral);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px 0 rgba(121,163,126,0.24);
  padding: 32px 24px;
  margin-top: 26px;
  border: 2.5px solid var(--accent-light);
}
.success-block h2 {
  color: var(--accent);
}
.success-block .cta-btn {
  margin-top: 16px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 46px 0 30px;
  border-radius: 34px 34px 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: var(--secondary);
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color 0.15s, border-bottom 0.16s;
}
footer nav a:hover {
  color: var(--accent-light);
  border-bottom: 2px solid var(--accent-light);
}
.footer-contact {
  font-size: 0.96rem;
  color: var(--accent-light);
}
.footer-copy {
  display: block;
  margin-top: 21px;
  color: #cdd6dd;
  font-size: 0.93rem;
  text-align: right;
}
footer img {
  width: 57px;
  height: auto;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  footer .container {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 8px;
  }
}

/* ===== COOKIE CONSENT BANNER & MODAL ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 5000;
  background: linear-gradient(97deg, var(--accent-light) 88%, var(--primary) 100%);
  color: var(--primary);
  padding: 20px 12px 16px 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  box-shadow: 0 -2px 14px 0 rgba(37,64,90,0.13);
  border-radius: 22px 22px 0 0;
  font-size: 1rem;
  animation: bounceInUp 0.9s;
}
.cookie-banner__text {
  flex: 1 1 210px;
  font-size: 1.07rem;
}
.cookie-banner__btns {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  padding: 8px 19px;
  border-radius: 18px;
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  color: var(--secondary);
  background: var(--accent);
  box-shadow: 0 1px 4px 0 rgba(121,163,126,0.13);
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.17s, color 0.15s, box-shadow 0.17s;
}
.cookie-btn.settings {
  background: var(--accent-light);
  color: var(--primary);
}
.cookie-btn.reject {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-btn:focus, .cookie-btn:hover {
  box-shadow: 0 3px 13px 0 rgba(37,64,90,0.19);
  background: var(--primary);
  color: var(--accent-light);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 6px 9px 11px;
    gap: 10px;
    font-size: 0.92rem;
  }
  .cookie-banner__btns {
    gap: 7px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(37,64,90,0.41);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.33s;
}
.cookie-modal.hidden {
  display: none;
}
.cookie-modal__content {
  background: var(--secondary);
  border-radius: 22px;
  min-width: 270px;
  max-width: 95vw;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 6px 36px 0 rgba(37,64,90,0.15);
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1rem;
  position: relative;
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 11px;
  background: var(--neutral);
  padding: 10px 16px;
  border-radius: 12px;
}
.cookie-category .toggle {
  appearance: none;
  width: 42px;
  height: 22px;
  border-radius: 14px;
  background: var(--accent-light);
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-category .toggle:checked {
  background: var(--accent);
}
.cookie-category .toggle:before {
  content: "";
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: var(--secondary);
  border-radius: 50%;
  transition: transform 0.23s cubic-bezier(.52,.16,.36,1.16);
  box-shadow: 0 0.5px 2px rgba(37,64,90,0.14);
}
.cookie-category .toggle:checked:before {
  transform: translateX(20px);
}
.cookie-modal__close {
  position: absolute;
  top: 10px;
  right: 18px;
  border: none;
  background: var(--accent-light);
  color: var(--primary);
  border-radius: 60%;
  font-size: 1.3rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.1s;
  z-index: 9030;
}
.cookie-modal__close:focus, .cookie-modal__close:hover {
  background: var(--accent);
  color: var(--secondary);
}
.cookie-modal__actions {
  margin-top: 10px;
  display: flex;
  gap: 16px;
}
@media (max-width:500px) {
  .cookie-modal__content {
    padding: 14px 10px 24px 10px;
    border-radius: 13px;
  }
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes bounceInUp {
  0% { transform: translateY(120%); opacity: 0; }
  70% { transform: translateY(-12%); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}

/* ===== GENERAL TRANSITIONS ===== */
button, a, .card, .feature, .service-block, .faq-block {
  transition: box-shadow 0.16s, background 0.15s, color 0.14s, border 0.17s, transform 0.13s;
}

/* ===== INTERACTIVE ELEMENTS ===== */
input, textarea, select {
  border: 1.5px solid var(--accent-light);
  padding: 9px 14px;
  border-radius: 10px;
  background: var(--neutral);
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--neutral-dark);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  background: #f0f6f3;
}
label {
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--primary);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1070px) {
  .container {
    max-width: 97vw;
    padding: 0 5vw;
  }
}
@media (max-width: 700px) {
  .container {
    max-width: 100vw;
    padding: 0 2vw;
  }
  .content-wrapper {
    gap: 18px;
  }
  .contact-details {
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }
}

/* ===== UNIQUE DESIGN ELEMENTS ===== */
::-webkit-scrollbar {
  width: 7px;
  background: #e9f2f0;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: var(--accent-light);
  border-radius: 8px;
}

/* Artistic font for hero sections and big headlines */
.hero h1, .hero h2, .success-block h2 {
  font-family: 'Roboto Slab', serif;
  font-style: italic;
  letter-spacing: 1.3px;
  text-shadow: 0 3px 14px rgba(121,163,126,0.11);
}

 

/* Artistic underline for h2 in sections */
.content-wrapper h2 {
  position: relative;
  z-index: 1;
}
.content-wrapper h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 5px;
  background: var(--accent-light);
  border-radius: 8px;
  margin-top: 5px;
  margin-bottom: -3px;
  opacity: 0.55;
}

/* Focus Show Outline */
:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 2px;
}

/* ================ END ================ */
