/* RESET & BASE TYPOGRAPHY */
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, menu, 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 {
  font-family: 'Roboto', Arial, sans-serif;
  color: #134C31;
  background: linear-gradient(135deg, #f7faf6 0%, #e9f7f0 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #134C31;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #FFD642;
  outline: none;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #134C31;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }
h4 { font-size: 1.15rem; margin-bottom: 12px; }

p, li, address {
  font-size: 1rem;
  margin-bottom: 12px;
}

strong { font-weight: bold; }

ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
ul { list-style-type: disc; }

/* CONTAINERS & LAYOUT PATTERNS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(19,76,49,0.07);
}

@media (max-width: 768px) {
  .section, main section {
    padding: 24px 8px;
    margin-bottom: 40px;
  }
  .container { padding: 0 8px; }
  .content-wrapper { gap: 18px; }
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #134C31 70%, #FFD642 100%);
  box-shadow: 0 4px 24px rgba(19,76,49,0.03);
  position: relative;
  z-index: 20;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0 10px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.main-nav img {
  height: 46px;
  width: auto;
  margin-right: 24px;
}
.main-nav a {
  color: #fff;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:not(.btn-primary):hover,
.main-nav a:not(.btn-primary):focus {
  background: rgba(255, 214, 66, 0.13);
  color: #FFD642;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #FFD642 0%, #f4e153 100%);
  color: #134C31 !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  margin-left: 18px;
  font-size: 1.13rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(19,76,49,0.08);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.17s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(90deg, #e3c900 0%, #FFD642 100%);
  color: #134C31;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 18px rgba(19,76,49,0.15);
  outline: none;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #FFD642;
  color: #134C31;
  border: none;
  padding: 8px 16px;
  font-size: 2.1rem;
  border-radius: 8px;
  margin-right: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 60;
}
.mobile-menu-toggle:focus { outline: 2px solid #FFD642; }

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(135deg, #134C31 95%, #FFD642 100%);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.63,.01,.36,.99);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 32px 24px 10px auto;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #FFD642;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.16s;
  z-index: 102;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 10px 36px;
  width: 100%;
}
.mobile-nav a {
  color: #FFD642;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 8px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD642;
  color: #134C31;
  outline: none;
}
@media (max-width: 1024px) {
  .main-nav a { font-size: 0.98rem; }
}
@media (max-width: 900px) {
  .main-nav { gap: 10px; }
  .btn-primary { margin-left: 6px; }
}
@media (max-width: 850px) {
  .main-nav > a:not(:first-child):not(.btn-primary) { display: none; }
  .btn-primary { margin-left: 0; }
  .mobile-menu-toggle {
    display: inline-block;
    position: absolute;
    right: 18px; top: 24px;
  }
}
@media (max-width: 520px) {
  .main-nav img { height: 34px; margin-right: 8px; }
  .main-nav { padding: 14px 0 6px 0; }
  .mobile-menu-toggle { top: 18px; }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #FFD642 0%, #e9f7f0 100%);
  position: relative;
  min-height: 350px;
  box-shadow: 0 8px 28px rgba(255,214,66,0.08);
  display: flex;
  align-items: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}
.hero .container {
  padding-top: 45px;
  padding-bottom: 45px;
}
.hero h1 {
  font-size: 2.4rem;
  color: #134C31;
  margin-bottom: 16px;
  line-height: 1.18;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero p {
  font-size: 1.19rem;
  margin-bottom: 28px;
  color: #216246;
  font-family: 'Roboto', Arial, sans-serif;
}

@media (max-width: 600px) {
  .hero { min-height: 0; border-radius: 0 0 24px 24px; }
  .hero h1 { font-size: 1.5rem; }
  .hero .container { padding: 28px 6px; }
}

/* FEATURE GRID & CARDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.feature-grid > div {
  background: #f4f9f5;
  border-radius: 18px;
  padding: 28px 18px 20px 18px;
  flex: 1 1 220px;
  min-width: 220px;
  box-shadow: 0 2px 12px rgba(19,76,49,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.20s, transform 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 32px rgba(19,76,49,0.21);
  transform: translateY(-2px) scale(1.025);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}
.feature-grid h3 {
  font-size: 1.22rem;
}

/* CARDS & LISTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(19,76,49,0.07);
  transition: box-shadow 0.2s, transform 0.18s;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 4px 28px rgba(19,76,49,0.18);
  transform: translateY(-1.5px) scale(1.01);
}
.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;
}
@media (max-width: 800px) {
  .feature-grid, .content-grid, .text-image-section, .card-container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/***** TESTIMONIALS *****/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: linear-gradient(112deg, #fff 0%, #f2f6f3 100%);
  border-radius: 15px;
  box-shadow: 0 2px 18px rgba(19,76,49,0.08);
  font-family: 'Roboto', Arial, sans-serif;
  color: #134C31;
  min-height: 70px;
}
.testimonial-card blockquote {
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.5;
  color: #134C31;
  margin: 0 8px 0 0;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #216246;
  font-weight: 700;
}
@media (max-width: 600px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/***** CTA SECTION *****/
.cta {
  background: linear-gradient(90deg, #FFD642 60%, #f6ec7a 100%);
  box-shadow: 0 0 56px rgba(19,76,49,0.09);
  padding: 40px 20px;
  border-radius: 18px;
  margin-bottom: 60px;
}
.cta h2 {
  color: #134C31;
  margin-bottom: 18px;
}
@media (max-width: 620px) {
  .cta { padding: 28px 8px; border-radius: 12px; }
  .cta h2 { font-size: 1.25rem; }
}

/***** FOOTER *****/
footer {
  background: #134C31;
  color: #fff;
  padding: 36px 0 22px 0;
  border-radius: 38px 38px 0 0;
  margin-top: 60px;
  box-shadow: 0 -4px 36px rgba(19,76,49,0.05);
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #FFD642;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
footer address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 0.98rem;
  color: #e8ffde;
}
footer address img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 8px;
  opacity: 0.8;
}
footer address a {
  color: #FFD642;
  text-decoration: underline;
}
footer address a:hover { color: #FFEE93; }
@media (max-width: 600px) {
  .footer-nav { flex-direction: column; gap: 12px; }
}

/***** TABLES *****/
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 10px rgba(19,76,49,0.06);
}
thead {
  background: #134C31;
  color: #FFD642;
}
thead th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 12px 8px;
  font-weight: 700;
  text-align: left;
}
tbody td {
  padding: 12px 8px;
  border-bottom: 1px solid #e9f7f0;
  font-size: 1rem;
}
tbody tr:last-child td { border: none; }
tbody tr:hover {
  background: #f6f9f7;
}

@media (max-width: 640px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  thead { display: none; }
  tr { margin-bottom: 18px; }
  td { padding: 10px 6px; font-size: 0.98rem; }
  td:before {
    font-weight: bold;
    color: #134C31;
    display: block;
    margin-bottom: 4px;
    content: attr(data-label);
  }
}

/***** MISCELLANEOUS ELEMENTS *****/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul, .text-section ol {
  margin-left: 21px;
  margin-bottom: 16px;
}
.text-section > div, .text-section > ul, .text-section > ol {
  margin-bottom: 12px;
}

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

/***** SPACING AND ALIGNMENT UTILITY CLASSES *****/
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-40 { margin-top: 40px; }

/***** COOKIE CONSENT BANNER & MODAL *****/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #FFD642 60%, #f4e153 100%);
  color: #134C31;
  box-shadow: 0 -2px 20px rgba(19,76,49,0.10);
  padding: 22px 16px 22px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 3000;
  transition: transform 0.45s cubic-bezier(.95,.01,.5,.99);
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-message {
  font-size: 1.02rem;
  margin-right: 14px;
  flex: 1 1 250px;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  outline: none;
  border-radius: 24px;
  padding: 9px 24px;
  font-size: 0.97rem;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(19,76,49,0.07);
  transition: background 0.19s, color 0.19s, transform 0.13s;
}
.cookie-accept {
  background: #134C31;
  color: #FFD642;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #18623e;
  color: #FFD642;
}
.cookie-reject {
  background: #fff;
  color: #134C31;
  border: 1px solid #134C31;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #f4f9f5;
  color: #FFD642;
  border-color: #FFD642;
}
.cookie-settings {
  background: transparent;
  color: #134C31;
  border: 1px solid #FFD642;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #FFD642;
  color: #134C31;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 8px 16px 8px;
  }
  .cookie-banner-message { margin-right: 0; }
}

/**** COOKIE MODAL ****/
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 3500;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(19,76,49,0.28);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.18s linear;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 38px 36px;
  max-width: 340px;
  box-shadow: 0 6px 40px rgba(19,76,49,0.17);
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  animation: modalPopIn 0.26s cubic-bezier(.8,.11,.09,.93);
}
.cookie-modal-close {
  position: absolute;
  right: 16px; top: 14px;
  background: none;
  border: none;
  color: #134C31;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 9999;
}
.cookie-category {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-size: 1rem;
  color: #134C31;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
  margin-left: auto;
  width: 36px;
  height: 20px;
  background: #e9f7f0;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  border: 1px solid #134C31;
  transition: background 0.17s;
}
.cookie-toggle.switch-on { background: #FFD642; }
.cookie-toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #134C31;
  transition: left 0.21s cubic-bezier(.59,.14,.38,1.09);
}
.cookie-toggle.switch-on .cookie-toggle-knob {
  left: 18px;
  background: #FFD642;
  box-shadow: 0 1px 2px #134c3136;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes modalPopIn {
  0%{ transform: scale(.88); opacity: 0; }
  100%{ transform: scale(1); opacity: 1; }
}

/***** RESPONSIVE FIXES *****/
@media (max-width: 480px) {
  .cookie-modal-content { padding: 24px 6px; max-width: 97vw; }
}

/***** ANIMATIONS & ACCESS CUSTOM CURSOR *****/
.btn-primary, .cookie-banner button, .cookie-modal-close, .mobile-menu-toggle, .mobile-menu-close, .cookie-toggle { user-select: none; }

/**** FOCUS STYLES ****/
:focus {
  outline: 2px solid #FFD642;
  outline-offset: 2px;
}

/***** FINAL ADJUSTMENTS TO AESTHETIC & SPACING *****/
main section:not(.hero):not(.cta) { margin-bottom: 60px; }
main section .container { padding: 0; }
main .content-wrapper {
  background: none;
  box-shadow: none;
  border-radius: 0;
}

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