/* RESET & NORMALIZE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #2E3936;
  background: #FAF9F5;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #225578;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #4C6E69;
}
button {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 600;
}

/* BRAND FONTS */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #18322B;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
h5 { font-size: 1rem; margin-bottom: 6px; }
p, .text-section p, .subheadline { font-size: 1rem; margin-bottom: 16px; color: #2E3936; }

@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.6rem; }
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* SECTION SPACING */
.section, section {
  margin-bottom: 60px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .section, section {
    padding: 32px 0;
    margin-bottom: 40px;
  }
}

/* ACCENT BACKGROUND */
.accent-bg {
  background: #F1F1F1;
  border-radius: 32px 32px 0 0;
}

/* LAYOUTS (Flexbox only) */
.content-wrapper, .feature-grid, .testimonial-slider, .testimonial-card, .footer-nav, .contact-info, .project-list, .service-list, .faq-list, .terms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-wrapper {
  gap: 32px;
}

@media (max-width: 1000px) {
  .content-wrapper, .feature-grid, .testimonial-slider {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .content-wrapper,
  .feature-grid,
  .service-list,
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
}

.footer-nav {
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(49, 70, 44, 0.08);
  transition: box-shadow 0.2s;
  margin-bottom: 20px;
  border-left: 5px solid #79B4A9;
}
.testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(34, 85, 120, 0.12);
}
.testimonial-card p {
  color: #1C3022;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-card .stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(49, 70, 44, 0.08);
  padding: 28px 22px 22px 22px;
  gap: 15px;
  min-width: 240px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow .2s;
}
.feature:hover {
  box-shadow: 0 4px 18px rgba(34, 85, 120, 0.13);
}
.feature img {
  width: 46px;
  height: 46px;
}

/* BUTTONS */
.cta-btn {
  background: #225578;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  padding: 14px 34px;
  font-size: 1.07rem;
  border-radius: 28px 12px 25px 13px;
  border: 0;
  box-shadow: 0 2px 8px rgba(34, 85, 120, 0.08);
  transition: background .22s, box-shadow .18s, transform .12s;
  display: inline-block;
  margin-top: 18px;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #79B4A9;
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 8px 24px rgba(34, 85, 120, .14);
}
.cta-btn.secondary {
  background: #fff;
  color: #225578;
  border: 2px solid #225578;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #225578;
  color: #fff;
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(119,128,113,0.07);
  padding: 0;
  position: sticky; top: 0; left: 0; width: 100%; z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 76px;
  gap: 18px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-size: 1rem;
  color: #225578;
  padding: 8px 0; 
  font-weight: 500;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.main-nav a:hover, .main-nav a.active {
  color: #79B4A9;
  background: #F1F1F1;
}

@media (max-width: 992px) {
  header .container { flex-wrap: wrap; height: auto; padding: 8px 12px; }
  .main-nav { gap: 14px; }
}
@media (max-width: 768px) {
  header .container { flex-direction: row; height: 56px; }
  .main-nav, .cta-btn {
    display: none;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #eaf5e5 60%, #79b4a910 100%);
  padding: 56px 0 34px 0;
  margin-bottom: 54px;
}
.hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  max-width: 540px;
}
.hero h1 {
  font-size: 2.4rem;
  color: #18322B;
  margin-bottom: 0;
}
.hero .subheadline {
  font-size: 1.13rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #205441;
  margin-bottom: 10px;
}
@media(min-width: 600px) {
  .hero h1 { font-size: 3rem; }
}

/* SECTION HEADINGS */
.section h2, section h2 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 24px;
}

/* FEATURES GRID */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
@media (max-width: 768px) {
  .features .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.feature h3 {
  margin-bottom: 8px;
}

/* BADGES */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 14px 0 16px 0;
  list-style: none;
}
.trust-badges li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.98rem;
  background: #e9efd9;
  color: #205441;
  border-radius: 14px;
  padding: 6px 16px 6px 9px;
  font-weight: 500;
}

/* CARD CONTAINER */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(49,70,44,0.09);
  transition: box-shadow 0.13s;
}
.card:hover { box-shadow: 0 6px 23px rgba(49,70,44,0.13); }

/* TESTIMONIALS slider */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 768px){
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
}

/* VISUAL CARDS (Project/Example) */
.project-example {
  background: #fff;
  border-radius: 12px 28px 12px 12px;
  box-shadow: 0 2px 7px rgba(34, 85, 120, 0.07);
  padding: 26px 22px 20px 22px;
  margin-bottom: 20px;
}
.project-example h3 {
  font-size: 1.18rem;
  color: #225578;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .project-example { padding: 20px 14px; }
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 13px rgba(49,70,44,.07);
}
.pricing-table th, .pricing-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #eae8e1;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: #79B4A9;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* SERVICE INCLUSIONS AND PROMO NOTE */
.service-inclusions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.promo-note {
  background: #e9efd9;
  color: #225578;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 14px;
}

/* FAQ ACCORDION */
.accordion-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 12px 20px 12px 12px;
  box-shadow: 0 1px 4px rgba(34, 85, 120, 0.08);
  padding: 22px 18px;
  margin-bottom: 14px;
  transition: box-shadow .16s;
}
.faq-item h2 {
  font-size: 1.14rem;
  cursor: pointer;
  margin-bottom: 7px;
  position: relative;
  padding-right: 22px;
}
.faq-item.open { box-shadow: 0 6px 19px rgba(34, 85, 120, 0.085); }

/* ADDRESS, ICONS IN FOOTER */
address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.97rem;
  color: #365249;
  margin-top: 14px;
}
address div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 0;
}
address img {
  width: 16px; height: 16px; opacity: 0.8;
}

/* FOOTER */
footer {
  background: #f6f8ec;
  border-radius: 32px 32px 0 0;
  padding: 32px 0 26px 0;
  margin-top: 50px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
}
.footer-brand img {
  height: 48px;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  footer .container { flex-direction: column; align-items: stretch; gap: 30px; }
  .footer-nav { flex-wrap: wrap; justify-content: flex-start; }
}
@media (max-width: 500px) {
  footer { padding: 24px 0 10px 0; }
  .footer-brand img { height: 34px; }
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 110;
  background: #fff;
  border-radius: 8px;
  height: 42px;
  width: 42px;
  color: #225578;
  font-size: 2.1rem;
  box-shadow: 0 2px 10px rgba(120,180,169,0.07);
  border: 1px solid #e4ede6;
  transition: background .18s, box-shadow .19s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #eaf5e5;
  color: #18322B;
  box-shadow: 0 4px 24px rgba(34,85,120,.13);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #e9efd9fa;
  box-shadow: 0 8px 30px rgba(49,70,44,0.09);
  z-index: 200;
  transform: translateX(-103vw);
  transition: transform 0.34s cubic-bezier(.87,-0.09,.42,1.12);
  padding-top: 48px;
  opacity: 1;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #fff;
  color: #225578;
  border-radius: 8px;
  width: 44px; height: 44px;
  font-size: 1.8rem;
  z-index: 220;
  box-shadow: 0 2px 12px rgba(34, 85, 120, 0.10);
  border: 1px solid #e4ede6;
  transition: background .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #d7ecd6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 0 30px;
  padding: 0;
  width: calc(100vw - 60px);
  max-width: 400px;
}
.mobile-nav a {
  color: #2E3936;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0 14px 0;
  border-bottom: 1px solid #d5e4dd;
  background: none;
  border-radius: 0 18px 18px 0;
  display: block;
  transition: background .17s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #225578;
  background: #d7ecd6;
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none!important; }
}

/* CONTACT + MAP */
.contact-section .contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  align-items: flex-start;
}
.contact-section .text-section {
  max-width: 380px;
  min-width: 220px;
}
.contact-section .map-location {
  background: #eaf5e5;
  border-radius: 14px;
  padding: 20px 18px;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #f1f1f1;
  border-top: 2px solid #79B4A9;
  box-shadow: 0 -2px 8px rgba(49,70,44,0.08);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 5000;
  align-items: center;
  transition: transform .4s cubic-bezier(.57,0,.37,1.04), opacity .3s;
  opacity: 1;
  transform: translateY(0%);
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-content {
  max-width: 900px;
  width: 100%;
  font-size: 1rem;
  color: #18322B;
  text-align: center;
}
.cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  padding: 10px 24px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 12px 31px 16px 17px;
  margin-top: 0;
  border: 0;
  background: #79B4A9;
  color: #fff;
  transition: background .18s, transform .19s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #225578;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cookie-btn.reject {
  background: #ebc8aa;
  color: #225578;
}
.cookie-btn.reject:hover {
  background: #e8a463;
  color: #fff;
}
.cookie-btn.settings {
  background: #eaf5e5;
  color: #18322B;
  border: 1.5px solid #79B4A9;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #79B4A9;
  color: #fff;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,85,120,0.19);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: opacity .28s;
  opacity: 1;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #f1f1f1;
  box-shadow: 0 6px 32px rgba(49,70,44,0.20);
  border-radius: 26px;
  padding: 36px 32px 28px 32px;
  width: 95vw; max-width: 420px;
  color: #18322B;
  position: relative;
  transition: transform .2s;
  animation: fadeInCookie .3s;
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: scale(.94);} to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.cookie-modal .cookie-categories {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 1.03rem;
}
.cookie-category.essential {
  background: #eaf5e5;
  color: #18322B;
}
.cookie-toggle {
  font-size: 1rem;
  font-family: inherit;
  width: 40px; height: 23px;
  appearance: none;
  background: #ccc;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .16s;
}
.cookie-toggle:checked {
  background: #79B4A9;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: left .19s;
}
.cookie-toggle:checked:before {
  left: 21px;
}
.cookie-modal .cookie-btns {
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-btn {
  min-width: 86px;
}
.cookie-modal-close {
  position: absolute;
  top: 19px; right: 19px;
  background: transparent;
  color: #225578;
  font-size: 1.3rem;
  border: none;
  border-radius: 8px;
  padding: 5px 10px 5px 10px;
  transition: background .17s;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #eaf5e5;
}

/* LINKS (GENERAL, EG. IN TEXT) */
.text-section a {
  color: #79B4A9;
  text-decoration: underline;
  border-radius: 4px;
  transition: color .18s, background .18s;
}
.text-section a:hover, .text-section a:focus {
  color: #225578;
  background: #eaf5e5;
}

/* SECTION BG TEXTURE & ORGANIC SHAPES */
.hero, .about-preview, .accent-bg, .faq-cta-section, .benefit-section, .cta-section {
  position: relative;
  overflow: hidden;
}
.hero:before, .accent-bg:before {
  content: '';
  position: absolute;
  top: -140px;
  right: -120px;
  width: 330px;
  height: 330px;
  background: #c8ddbc;
  opacity: 0.1;
  border-radius: 46% 54% 49% 51% / 51% 60% 40% 49%;
  z-index: 0;
}
@media (max-width: 768px){
  .hero:before, .accent-bg:before {
    width: 200px; height: 200px; right: -60px; top: -70px;
  }
}
.hero .container, .accent-bg .container, .faq-cta-section .container, .benefit-section .container {
  position: relative;
  z-index: 2;
}

/* UTILITY */
.d-none { display: none !important; }
.d-block { display: block !important; }

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 600px) {
  .container { padding-left: 6px; padding-right: 6px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.15rem; }
  .cta-btn, .cookie-btn { font-size: 0.96rem; padding: 10px 16px; }
}

/* ORGANIC SHADOWS */
.hero, 
.feature, 
.testimonial-card, 
.project-example, 
.card, 
.promo-note, 
.faq-item, 
.pricing-table, 
.cookie-modal {
  box-shadow: 0 2px 8px rgba(49,70,44,0.08);
}

/* ORGANIC SHAPES FOR BUTTONS AND CARDS */
.cta-btn, .cookie-btn, .feature, .testimonial-card, .project-example, .faq-item, .promo-note, .pricing-table{
  border-radius: 26px 18px 24px 13px;
}

/* TABLET font and spacing adj */
@media (max-width: 1100px){
  .feature, .testimonial-card, .project-example, .card{ min-width: 180px !important; padding: 14px 12px; }
}

/*********************
* END OF CSS STYLES  *
*********************/
