/* CSS 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, 
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,  
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFF;
  color: #2A3756;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #117244;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #179960;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2A3756;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p {
  font-size: 1rem;
  color: #394164;
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
  color: #2A3756;
}

/* BRAND COLORS AS CSS VARIABLES */
:root {
  --primary: #2A3756;
  --secondary: #FFFFFF;
  --accent: #179960;
  --accent-dark: #117244;
  --grey-bg: #F7F7FA;
  --warm-bg: #FFF8F3;
  --border-soft: #E5E8EF;
  --warn: #FFC26D;
  --danger: #DE524C;
  --shadow: 0 2px 12px 0 rgba(169, 89, 57, 0.08);
}

body {
  background-color: var(--warm-bg);
  color: var(--primary);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

/* Header */
header {
  background: var(--secondary);
  border-bottom: 2px solid var(--border-soft);
  box-shadow: 0 2px 18px 0 rgba(220, 151, 111, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}
header img {
  height: 38px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 99px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: #fff;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 24px;
  padding: 10px 30px;
  font-weight: 700;
  font-size: 1.09rem;
  box-shadow: 0 2px 8px 0 rgba(23,153,96,0.10);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.12s;
  display: inline-block;
  margin-left: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px 0 rgba(23,153,96,0.18);
}

/* Hamburger Menu Button (Mobile) */
.mobile-menu-toggle {
  background: var(--accent);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 16px;
  padding: 7px 14px;
  display: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(23,153,96,0.09);
  transition: background 0.18s;
  margin-left: 8px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent-dark);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1002;
  background: rgba(250,235,215,0.99);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,.2,.05,1.0);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: var(--accent-dark);
  font-size: 2.2rem;
  border: none;
  margin: 25px 22px 0 0;
  padding: 4px 10px;
  cursor: pointer;
  transition: color 0.17s;
  z-index: 2;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--danger);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin: 32px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  color: var(--primary);
  font-weight: 700;
  border-radius: 24px;
  padding: 10px 22px;
  display: block;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}

/* Responsive: hide main nav, show mobile burger */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-right: 10px;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION */
.hero, .blog-hero {
  background: linear-gradient(98deg,#FFF6F0 55%, #F7FBF9 100%);
  border-radius: 24px;
  margin-bottom: 50px;
  padding: 50px 0 40px 0;
}
.hero .content-wrapper, .blog-hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  text-align: left;
}
.hero h1, .blog-hero h1 {
  color: var(--accent-dark);
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.hero p, .blog-hero p {
  color: #6d4b36;
  font-size: 1.12rem;
  margin-bottom: 22px;
}

/* FEATURES and BENEFITS */
.features, .benefits-section, .comparison {
  background: var(--secondary);
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: var(--shadow);
}
.features h2, .benefits-section h2 {
  margin-bottom: 22px;
}
.feature-grid, .benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
  margin: 0;
}
.feature-grid li,
.benefit-list li {
  flex: 1 1 260px;
  background: #FFF9F3;
  border-radius: 20px;
  padding: 28px 20px 20px 20px;
  box-shadow: 0 1px 9px #fbd0b0c0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  min-width: 210px;
  transition: box-shadow 0.22s, transform 0.2s;
}
.feature-grid li:hover, .benefit-list li:hover {
  box-shadow: 0 6px 18px 0 #fdbc8f37;
  transform: translateY(-4px) scale(1.03);
}
.feature-grid img, .benefit-list img {
  width: 44px; height: 44px;
}
.feature-grid h3, .benefit-list h3 {
  margin-bottom: 8px;
  color: var(--accent-dark);
}

.step-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 24px;
  align-items: center;
  list-style: none;
  counter-reset: step;
}
.step-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFF6F0;
  border-radius: 16px;
  padding: 18px 22px;
  min-width: 220px;
  box-shadow: 0 2px 8px 0 #ffbc7237;
}
.step-list img {
  width: 36px; height: 36px; flex: none;
}
.step-list strong {
  color: var(--accent-dark);
}

/* TESTIMONIALS */
.testimonials, .testimonial-list {
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fffdfb;
  border-radius: 18px;
  padding: 32px 28px 22px 28px;
  min-width: 280px;
  box-shadow: 0 2px 16px 0 #ffbc7211;
  border: 1.5px solid #FFEBCE;
  transition: box-shadow 0.18s, transform 0.14s;
  margin-bottom: 20px;
}
.testimonial-card:hover {
  box-shadow: 0 11px 32px 0 #faab4b25;
  transform: translateY(-3px) scale(1.04);
}
.testimonial-card p {
  font-size: 1.09rem;
  margin-bottom: 10px;
  color: #53321D;
}
.testimonial-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  color: #27353F;
}
.testimonial-info img {
  width: 86px;
  height: 22px;
}

/* PRICING TABLES */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #FFF9F5;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px #ffe3be45;
}
.pricing-table th,
.pricing-table td {
  padding: 19px 16px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: #ffe9d6;
  color: var(--accent-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #ffe4c0;
  background: #FFFDFB;
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}
.pricing-table td {
  color: #3F271B;
  vertical-align: top;
  font-family: 'Roboto', Arial, sans-serif;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(91deg, #f7fbf9 45%, #fff6f0 100%);
  border-radius: 20px;
  margin: 50px 0 38px 0;
  padding: 44px 0 34px 0;
  box-shadow: var(--shadow);
  display: flex;
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 22px;
  color: var(--accent-dark);
}

/* BLOG LIST & CATEGORIES */
.blog-list .post-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  margin: 0;
  margin-bottom: 20px;
}
.post-previews li {
  background: #FFF7F2;
  border-radius: 15px;
  box-shadow: 0 1px 10px #e7a05b2b;
  padding: 26px 22px 18px 22px;
  min-width: 230px;
  flex: 1 1 265px;
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  transition: box-shadow 0.16s, transform 0.15s;
}
.post-previews li:hover {
  box-shadow: 0 6px 16px #f2a75819;
  transform: translateY(-2.5px) scale(1.02);
}
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: disc inside;
}
.category-list li {
  background: #FFF9F3;
  border-radius: 13px;
  padding: 10px 18px;
  font-size: 1.02rem;
}

/* FOOTER */
footer {
  background: #ffe9d6;
  padding: 28px 0 0 0;
  border-top: 2px solid var(--border-soft);
  margin-top: 80px;
}
footer .container {
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-menu a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  transition: color 0.17s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: var(--accent-dark);
}
.footer-contact {
  color: #2A3756;
  font-size: 0.98rem;
  line-height: 1.7;
}
.footer-contact a {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin: 18px 0 0 0;
}
.footer-social img {
  width: 30px; height: 30px;
  cursor: pointer;
  border-radius: 8px;
  transition: box-shadow 0.2s;
}
.footer-social img:hover {
  box-shadow: 0 0 0 3px #ffe5ab;
}
.footer-copyright {
  font-size: 0.94rem;
  color: #836351;
  margin-top: 13px;
  margin-bottom: 6px;
}

/* --- EXTRA STYLES FOR LISTS, CARDS, GRIDS & FLEX LAYOUTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 11px #fdbc8f24;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 6px 24px #ffbd7122;
  transform: translateY(-3px) scale(1.03);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- ABOUT / TEAM / VALUES --- */
.about, .team, .values, .legal-section, .gdpr-section, .cookies-section, .terms-section {
  background: var(--secondary);
  border-radius: 22px;
  box-shadow: 0 2px 14px #ffcc9e1b;
  padding: 38px 18px;
  margin-bottom: 50px;
}
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}
.team-list li {
  background: #fff7f1;
  border-radius: 16px;
  box-shadow: 0 1px 9px #facc9a1e;
  padding: 24px 20px;
  min-width: 210px;
  flex: 1 1 250px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.icon-grid > div {
  background: #fff9f4;
  border-radius: 99px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  min-width: 80px;
  box-shadow: 0 0.5px 5px #fac79420;
}
.icon-grid img {
  width: 32px; height: 32px;
}
.value-statements {
  list-style: disc inside;
  margin-top: 8px;
}

/* FAQ SECTION */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.faq-list > div {
  flex: 1 1 320px;
  background: #FFF8F3;
  border-radius: 15px;
  padding: 16px 22px;
  box-shadow: 0 1px 7px #f6ae6722;
  transition: box-shadow 0.17s, transform 0.12s;
}
.faq-list > div:hover {
  box-shadow: 0 4px 18px #fbbd6e1e;
  transform: translateY(-3px) scale(1.03);
}

/* CONTACT PAGE DETAILS */
.contact-details ul {
  list-style: none;
  padding-left: 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #F7FBF7;
  border-radius: 13px;
  padding:10px 16px;
  font-size: 1.01rem;
  margin-bottom: 8px;
}
.contact-details img {
  width: 22px;
  height: 22px;
}
.company-info {
  background: #fff9f4;
  border-radius: 16px;
  box-shadow: 0 1px 9px #fab98317;
  margin-bottom: 36px;
  padding: 22px 20px;
}
.company-info ul {
  list-style: none;
}
.company-info li {
  margin-bottom: 13px;
}

/* THANK YOU PAGE */
.thank-you-section {
  background: linear-gradient(91deg,#fff6f0 60%,#f9fff8 100%);
  border-radius: 18px;
  box-shadow: 0 2px 16px #fab26014;
  padding: 64px 18px;
  text-align: center;
  margin: 38px 0 0 0;
}
.thank-you-section h1 {
  color: var(--accent-dark);
  font-size: 2.3rem;
  margin-bottom: 18px;
}
.success-message {
  margin-bottom: 28px;
}
.next-steps ul {
  list-style: disc inside;
  margin: 0 0 20px 0;
}
.next-steps ul li {
  margin-bottom: 8px;
}

/* --- ADDITIONAL LAYOUTS --- */
.legal-section,
.gdpr-section,
.cookies-section,
.terms-section {
  background: #fff2e3;
  padding: 46px 20px;
  border-radius: 18px;
  box-shadow: 0 1px 11px #e4a76c1a;
}
.policy-text, .gdpr-policy-text, .cookies-policy-text, .terms-of-service-text {
  margin-top: 28px;
  font-size: 1rem;
  color: #57432B;
}
.policy-text h2, .gdpr-policy-text h2, .cookies-policy-text h2, .terms-of-service-text h2 {
  color: var(--accent-dark);
  font-size: 1.05rem;
  margin-top: 16px;
}
.policy-text ul, .gdpr-policy-text ul, .cookies-policy-text ul, .terms-of-service-text ul {
  list-style: disc inside;
  margin-bottom: 18px;
}

/* TRANSITIONS/MICRO-INTERACTIONS */
section, .card, .btn-primary, .feature-grid li, .benefit-list li, .testimonial-card, .faq-list > div, .post-previews li, .icon-grid > div {
  transition: box-shadow 0.22s cubic-bezier(.61,.14,.36,1), transform 0.18s cubic-bezier(.45,1.2,.44,1), background 0.16s;
}

/* FORMS (if used in calculator) */
input, select, textarea, button {
  border-radius: 12px;
  border: 1.5px solid var(--border-soft);
  padding: 10px 16px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  color: var(--primary);
  background: #fff;
  transition: border 0.16s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1003;
  background: #fff7e3;
  border-top: 2px solid #f2dda7;
  box-shadow: 0 0 24px 0 #f9c27722;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 21px 20px;
  gap: 30px;
  font-size: 1rem;
  color: #502c12;
  transition: transform 0.25s cubic-bezier(.75,.23,.27,.98);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__text {
  flex: 2 1 340px;
  margin-right: 27px;
  font-size: 1rem;
  color: #894a11;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex: 1 1 120px;
  min-width: 120px;
}
.cookie-btn, .cookie-settings-btn {
  border: none;
  border-radius: 17px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  margin-right: 2px;
  transition: background 0.13s, color 0.13s;
}
.cookie-btn.accept {
  background: var(--accent);
  color: #fff;
}
.cookie-btn.accept:hover {
  background: var(--accent-dark);
}
.cookie-btn.reject {
  background: #FFE2D8;
  color: var(--danger);
}
.cookie-btn.reject:hover {
  background: #fdeae4;
}
.cookie-settings-btn {
  background: #E3F2F7;
  color: #1C423C;
  border: 1px solid #B8CBBA;
}
.cookie-settings-btn:hover {
  background: #d0e6e1;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 1005;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(43,36,19,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.25s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__content {
  background: #fffdfa;
  border-radius: 26px;
  padding: 36px 32px 26px 32px;
  max-width: 400px;
  min-width: 290px;
  box-shadow: 0 10px 30px #eeb47e23;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookie-modal-in 0.38s cubic-bezier(.66,.01,.29,1.29);
}
@keyframes cookie-modal-in {
  0% {transform: scale(0.8) translateY(70px); opacity: 0;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--accent-dark);
  margin-bottom: 4px;
}
.cookie-modal__close {
  position: absolute;
  top: 10px; right: 14px;
  background: #fff0e1;
  border: none;
  border-radius: 13px;
  color: var(--danger);
  font-size: 1.5rem;
  line-height: 1;
  padding: 3px 11px;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal__close:hover {
  background: #fde8d9;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category span {
  font-size: 1rem;
  color: #272C35;
}
.cookie-modal .cookie-toggle {
  width: 44px; height: 22px;
  border-radius: 14px;
  background: #e6e6e6;
  position: relative;
  transition: background 0.22s;
  cursor: pointer;
  border: 1px solid #e5e5e5;
}
.cookie-modal .cookie-toggle.enabled {
  background: var(--accent);
  border: 1px solid var(--accent-dark);
}
.cookie-modal .cookie-toggle .knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 99px;
  background: #fff;
  box-shadow: 0 1px 3px #faad582a;
  transition: left 0.2s, background 0.16s;
}
.cookie-modal .cookie-toggle.enabled .knob {
  left: 23px;
  background: #fff;
}
.cookie-modal .cookie-info {
  font-size: 0.97rem;
  color: #9B814E;
  margin-left: 6px;
}
.cookie-modal .cookie-category[aria-disabled="true"] {
  opacity: 0.55;
}
/* Modal actions */
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 21px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  min-width: 86px;
}

/* Price Box & Estimate */
.price-estimate-box {
  background: #FFF6EB;
  border-radius: 19px;
  border: 1.5px solid #FFD3B8;
  padding: 28px 23px;
  font-size: 1.08rem;
  color: #7f4a20;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px #eeb47e19;
}
.price-estimate-box span {
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 1.05rem;
}

.dynamic-results ul {
  background: #FFF9F0;
  border-radius: 14px;
  padding: 18px 28px;
  box-shadow: 0 1px 7px #fcefe1;
  margin-bottom: 10px;
}

/* Spacing between sections */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid,
  .benefit-list,
  .card-container,
  .team-list,
  .post-previews,
  .content-grid,
  .category-list {
    gap: 18px;
  }
}
@media (max-width: 992px) {
  .feature-grid li, .benefit-list li, .team-list li {
    min-width: 190px;
    padding: 18px 13px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .container {
    padding: 0 8px;
    max-width: 100vw;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    padding: 0 8px;
    min-height: 64px;
  }
  .btn-primary {
    padding: 9px 13px;
    font-size: 1rem;
  }
  .hero, .blog-hero, .cta-section, .features, .benefits-section, .comparison, .about, .team, .values, .company-info, .legal-section, .gdpr-section, .cookies-section, .terms-section, section {
    padding: 20px 8px 20px 8px !important;
    border-radius: 11px;
    margin-bottom: 34px;
  }
  .feature-grid, .benefit-list, .post-previews, .team-list, .category-list {
    flex-direction: column;
    gap: 13px;
  }
  .step-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 10px;
  }
  .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 10px;
  }
  .footer-contact, .footer-social, .footer-copyright {
    text-align: left !important;
    margin-left: 0;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 19px 10px;
  }
  .cookie-banner__text {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .cookie-modal__content {
    max-width: 98vw;
    min-width: 0;
    padding: 25px 14px 18px 14px;
  }
}
@media (max-width: 480px) {
  h1 {font-size: 1.38rem;}
  h2 {font-size: 1.16rem;}
  h3 {font-size: 1.01rem;}
  .footer-social img {width: 24px; height: 24px;}
  .feature-grid li, .benefit-list li, .team-list li {font-size: 0.93rem;}
}

/* Prevent overlap for all elements */
section *, .card, .testimonial-card, .feature-grid li, .benefit-list li, .faq-list > div, .post-previews li, .category-list li, .team-list li {
  margin-bottom: 0 !important;
  box-sizing: border-box;
}

/* Hide scrollbars on mobile menu */
.mobile-menu {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Accessibility focus styles */
:focus-visible {
  outline: 2px dashed var(--accent-dark);
  outline-offset: 2px;
}
