/* ========================================================================
   CSS RESET & BASELINE 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, 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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F5F0EA;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2D2D2D;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
a {
  color: #255A4B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,a:focus {
  color: #5CA884;
  text-decoration: underline;
}
ol, ul {
  list-style: none;
}
strong, b {
  font-weight: 700;
}

/* ========================================================================
   FONT IMPORT (GOOGLE FONTS)
   ======================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

/* ========================================================================
   TYPOGRAPHY SCALE
   ======================================================================== */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
  color: #255A4B;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #255A4B;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #255A4B;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #255A4B;
}
p, li, blockquote, .footer-contact, .testimonial-meta, .category {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #3E3E3E;
}
blockquote {
  border-left: 4px solid #5CA884;
  padding-left: 16px;
  font-style: italic;
  color: #255A4B;
  background: #F5F0EA;
}
.category {
  font-size: 0.95rem;
  font-weight: 600;
  color: #5CA884;
  text-transform: uppercase;
}

/* ========================================================================
   BRAND COLORS & CUSTOM PROPERTIES
   ======================================================================== */
:root {
  --color-primary: #255A4B;
  --color-secondary: #5CA884;
  --color-accent: #F5F0EA;
  --color-warm-orange: #FBBC77;
  --color-warm-pink: #F9D5D1;
  --color-white: #FFF;
  --color-dark: #2D2D2D;
  --color-shadow: rgba(80, 56, 28, 0.10);
  --radius-xs: 6px;
  --radius: 16px;
  --radius-lg: 28px;
}

/* ========================================================================
   CONTAINER & LAYOUT CLASSES
   ======================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: #FFF;
  box-shadow: 0 3px 20px var(--color-shadow);
}

/* ========================================================================
   HEADER/NAVIGATION
   ======================================================================== */
header {
  background: var(--color-primary);
  color: #FFF;
  position: relative;
  z-index: 10;
  box-shadow: 0 6px 24px var(--color-shadow);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
}
header img {
  max-height: 48px;
  border-radius: 0;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  transition: background 0.18s;
}
header nav a:hover, header nav a:focus {
  background: rgba(92,168,132,0.20);
  color: #F5F0EA;
}
header .btn-primary {
  display: inline-block;
  background: var(--color-warm-orange);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 26px;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-left: 10px;
  cursor: pointer;
  text-align: center;
}
header .btn-primary:hover, header .btn-primary:focus {
  background: #fba249;
  color: var(--color-white);
  box-shadow: 0 6px 16px var(--color-shadow);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFF;
  font-size: 2rem;
  margin-left: 16px;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 120;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FFF;
  outline-offset: 2px;
}
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========================================================================
   MOBILE MENU OVERLAY
   ======================================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  width: 100vw;
  height: 100vh;
  background: #255A4BCF;
  backdrop-filter: blur(2.5px);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.7,0,.3,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-warm-orange);
  color: var(--color-primary);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  margin: 24px 18px 0 0;
  padding: 7px 16px 7px 15px;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 2px 10px var(--color-shadow);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fba249;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 70px 30px 0 0;
}
.mobile-nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 14px 22px;
  transition: background 0.20s, color 0.20s;
  margin-bottom: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-warm-orange);
  color: var(--color-primary);
}

@media (max-width: 640px) {
  .mobile-nav {
    margin: 60px 8vw 0 0;
    gap: 13px;
  }
  .mobile-nav a {
    font-size: 1.10rem;
    padding: 12px 17px;
  }
}

/* ========================================================================
   HERO SECTION
   ======================================================================== */
.hero {
  background: linear-gradient(90deg, #F9D5D1 35%, #F5F0EA 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 5px 40px var(--color-shadow);
  margin-bottom: 56px;
  padding: 40px 0 40px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.1rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.hero p {
  font-size: 1.17rem;
  color: #3E3E3E;
  max-width: 660px;
}
.hero .btn-primary {
  margin-top: 18px;
}

@media (min-width: 600px) {
  .hero {
    padding: 52px 0 52px 0;
  }
  .hero h1 {
    font-size: 2.7rem;
  }
}

/* ========================================================================
   FEATURES SECTION
   ======================================================================== */
.features {
  background: #FFF3E5;
  border-radius: var(--radius-lg);
  margin-bottom: 62px;
  box-shadow: 0 1px 16px var(--color-shadow);
}
.features .content-wrapper {
  align-items: flex-start;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 26px 22px 22px 22px;
  min-width: 200px;
  flex: 1 1 245px;
  transition: box-shadow 0.24s, transform 0.2s;
}
.feature-item img {
  max-width: 48px;
  background: #F9D5D1;
  border-radius: 50%;
  padding: 9px;
  box-shadow: 0 2px 8px var(--color-shadow);
}
.feature-item:hover {
  box-shadow: 0 6px 25px var(--color-shadow);
  transform: translateY(-3px) scale(1.02);
}
.feature-item h3 {
  font-size: 1.16rem;
  margin-bottom: 6px;
}
.feature-item p {
  color: #3E3E3E;
  font-size: 1rem;
}

/* ========================================================================
   ARTICLES PREVIEW & LISTING
   ======================================================================== */
.articles-preview {
  background: #FFFAF4;
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  box-shadow: 0 1px 16px var(--color-shadow);
}
.article-list, .article-listing .article-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.article-list article, .article-listing .article-list article {
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 22px 16px 16px 18px;
  flex: 1 1 220px;
  min-width: 190px;
  transition: box-shadow 0.20s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-list article:hover, .article-listing .article-list article:hover {
  box-shadow: 0 6px 30px var(--color-shadow);
  transform: translateY(-2px) scale(1.015);
}
.article-list h3, .article-listing h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.article-list .category, .article-listing .category {
  background: #E3FBED;
  color: var(--color-primary);
  padding: 2px 10px;
  border-radius: var(--radius-xs);
  font-size: 0.98rem;
  margin-right: 7px;
}
.btn-secondary {
  display: inline-block;
  background: var(--color-secondary);
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 26px;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-top: 10px;
  transition: background 0.17s, color 0.16s, box-shadow 0.15s;
  cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #377c5f;
  color: #FFF;
  box-shadow: 0 6px 14px var(--color-shadow);
}

/* ========================================================================
   TESTIMONIALS
   ======================================================================== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper {
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: 0 2px 18px var(--color-shadow);
  padding: 24px 20px 20px 22px;
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 550px;
  transition: box-shadow 0.22s, transform 0.18s;
  border-left: 6px solid var(--color-secondary);
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  margin: 0;
  background: none;
  border-left: none;
  font-style: italic;
  color: #255A4B;
}
.testimonial-meta {
  font-size: 1rem;
  color: #AA7756;
  letter-spacing: 0.02em;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px var(--color-shadow);
  transform: scale(1.014);
}

/* ========================================================================
   CONTACT TEASER & CONTACT PAGE
   ======================================================================== */
.contact-teaser, .contact {
  background: #F5F0EA;
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  box-shadow: 0 1px 16px var(--color-shadow);
}
.contact-info-summary, .contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin: 18px 0;
}
.contact-info-summary div, .contact-info div {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #3E3E3E;
  font-size: 1rem;
}
.contact-info-summary img, .contact-info img {
  max-width: 24px;
  background: #FFF3E5;
  border-radius: 50%;
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 6px;
}
.map-embed {
  background: #FFF3E5;
  border-radius: var(--radius);
  padding: 13px 17px;
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-top: 18px;
}

/* ========================================================================
   VALUES, TIPS & FAQ, LEGAL SECTIONS
   ======================================================================== */
.values, .tips, .faq, .legal, .thank-you {
  background: #FFF;
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  box-shadow: 0 1px 18px var(--color-shadow);
  padding: 40px 20px;
}
.values ul, .faq-accordion, .service-highlights ul, .service-overview ul {
  margin-bottom: 20px;
  padding-left: 13px;
}
.values ul li, .tips ul li, .service-highlights ul li, .service-overview ul li {
  margin-bottom: 10px;
  padding-left: 0.4em;
  color: #255A4B;
}

.faq-accordion > div {
  background: #FFFAF4;
  border-radius: var(--radius);
  box-shadow: 0 1px 7px var(--color-shadow);
  padding: 18px 16px;
  margin-bottom: 17px;
}
.faq-accordion h3 {
  font-size: 1.08rem;
  margin-bottom: 5px;
  color: var(--color-primary);
}
.faq-accordion p {
  font-size: 1rem;
  color: #3E3E3E;
}

/* ========================================================================
   SERVICES PAGE STYLES
   ======================================================================== */
.services {
  margin-bottom: 60px;
  background: #FFF;
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 18px var(--color-shadow);
  padding: 40px 20px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-item {
  background: #FFFAF4;
  border-radius: var(--radius);
  box-shadow: 0 1px 7px var(--color-shadow);
  padding: 22px 18px 16px 20px;
  flex: 1 1 260px;
  min-width: 210px;
  transition: box-shadow 0.20s, transform 0.18s;
  margin-bottom: 20px;
}
.service-item:hover {
  box-shadow: 0 6px 22px var(--color-shadow);
  transform: translateY(-2px) scale(1.01);
}

.cta-section {
  background: #FFF3E5;
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 10px var(--color-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta-section h2 {
  color: #255A4B;
  margin-bottom: 22px;
}
.cta-section .btn-primary {
  margin-bottom: 24px;
}
.service-highlights ul,
.service-overview ul {
  font-size: 1.08rem;
  color: #5CA884;
  margin-left: 0;
  padding-left: 16px;
}
.service-highlights ul li:before,
.service-overview ul li:before {
  content: '✓';
  display: inline-block;
  color: #FBA249;
  margin-right: 5px;
}

/* ========================================================================
   ARTICLE CATEGORIES (articoli.html)
   ======================================================================== */
.article-categories {
  background: #E3FBED;
  border-radius: var(--radius-lg);
  margin-bottom: 56px;
  box-shadow: 0 1px 14px var(--color-shadow);
  padding: 36px 20px;
}
.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.categories-list > div {
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: 0 1px 7px var(--color-shadow);
  padding: 15px 13px;
  min-width: 170px;
  flex: 1 1 200px;
}
.categories-list strong {
  color: #5CA884;
}

/* ========================================================================
   PAGINATION
   ======================================================================== */
.pagination-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.pagination-controls a {
  color: #255A4B;
  background: #FFF3E5;
  border-radius: var(--radius-xs);
  padding: 7px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.16s, color 0.19s;
}
.pagination-controls a:hover, .pagination-controls a:focus {
  background: #FBA249;
  color: #FFF;
}
.pagination-controls span {
  color: #AA7756;
  line-height: 32px;
}

/* ========================================================================
   LEGAL DOCUMENTS / THANK YOU
   ======================================================================== */
.legal li {
  padding-left: 8px;
  margin-bottom: 10px;
  color: #255A4B;
}
.legal b {
  color: #5CA884;
}
.thank-you .btn-primary {
  margin-top: 32px;
}

/* ========================================================================
   FOOTER STYLES
   ======================================================================== */
footer {
  background: var(--color-primary);
  color: #FFF;
  padding: 50px 0 24px 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -1px 16px var(--color-shadow);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #FFF;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.97;
  padding: 7px 12px;
  border-radius: var(--radius-xs);
  transition: background 0.14s;
}
.footer-nav a:hover {
  background: rgba(92,168,132,0.24);
}
.footer-contact {
  color: #F5F0EA;
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.footer-cta {
  margin-top: 7px;
}
.footer-cta .btn-primary {
  font-size: 1rem;
  background: #FBBC77;
  color: #255A4B;
  padding: 11px 24px;
}
.footer-cta .btn-primary:hover {
  background: #FBA249;
  color: #FFF;
}

/* ========================================================================
   BUTTONS
   ======================================================================== */
.btn-primary {
  background: #FBBC77;
  color: #255A4B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 2px 8px var(--color-shadow);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s, transform 0.18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FBA249;
  color: #FFF;
  transform: translateY(-1px) scale(1.022);
  box-shadow: 0 8px 20px var(--color-shadow);
}
.btn-secondary:focus, .btn-primary:focus {
  outline: 2px solid #255A4B;
  outline-offset: 2px;
}

/* ========================================================================
   COOKIE CONSENT BANNER
   ======================================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 8000;
  background: #FFF;
  color: #2D2D2D;
  padding: 24px 22px;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -4px 34px var(--color-shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  transition: transform 0.34s cubic-bezier(.7,0,.3,1);
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-consent-banner button {
  border: none;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: var(--radius);
  padding: 11px 20px;
  cursor: pointer;
  margin: 0 3px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-consent-banner .cookie-accept {
  background: #FBBC77;
  color: #255A4B;
  font-weight: 700;
}
.cookie-consent-banner .cookie-accept:hover {
  background: #FBA249;
  color: #FFF;
}
.cookie-consent-banner .cookie-reject {
  background: #F9D5D1;
  color: #255A4B;
  font-weight: 600;
}
.cookie-consent-banner .cookie-reject:hover {
  background: #FBA249;
  color: #FFF;
}
.cookie-consent-banner .cookie-settings {
  background: #FFF3E5;
  color: #255A4B;
  font-weight: 600;
}
.cookie-consent-banner .cookie-settings:hover {
  background: #5CA884;
  color: #FFF;
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(37,90,75,0.16);
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: cookieModalIn 0.38s cubic-bezier(.7,0,.3,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translateY(70px); }
  to   { opacity: 1; transform: none; }
}
.cookie-modal-content {
  background: #FFF;
  padding: 34px 26px 28px 26px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 34px var(--color-shadow);
  min-width: 300px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal-content h2 {
  font-size: 1.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 16px;
  background: #F5F0EA;
  border: none;
  color: #255A4B;
  font-size: 1.3rem;
  border-radius: 50%;
  padding: 4px 11px 4px 11px;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal-content .cookie-modal-close:hover {
  background: #FBA249;
  color: #FFF;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0px;
}
.cookie-category label {
  font-weight: 600;
  color: #255A4B;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-category input[type=checkbox],
.cookie-category input[type=radio] {
  accent-color: #5CA884;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  cursor: pointer;
}
.cookie-category input[disabled] {
  accent-color: #FBBC77;
  background: #FFD5AA;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.cookie-modal-actions button {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: var(--radius);
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.19s, color 0.17s;
}
.cookie-modal-actions .cookie-save {
  background: #5CA884;
  color: #FFF;
  font-weight: 700;
}
.cookie-modal-actions .cookie-save:hover {
  background: #255A4B;
  color: #FFF;
}
.cookie-modal-actions .cookie-cancel {
  background: #F9D5D1;
  color: #255A4B;
  font-weight: 600;
}
.cookie-modal-actions .cookie-cancel:hover {
  background: #FBBC77;
  color: #FFF;
}

/* ========================================================================
   RESPONSIVE - MOBILE FIRST
   ======================================================================== */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .footer-contact {
    font-size: 0.93rem;
    text-align: center;
  }
  .feature-item, .service-item {
    min-width: 180px;
    padding: 16px 10px 13px 13px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .features-grid, .service-list,
  .article-list, .categories-list,
  .contact-info-summary, .contact-info,
  .article-listing .article-list, .testimonial-card, .footer-nav, .pagination-controls, .service-highlights ul {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 20px !important;
  }
  .features-grid,
  .categories-list,
  .article-listing .article-list {
    gap: 18px !important;
  }
  .feature-item, .service-item, .article-list article {
    min-width: 0;
    width: 100%;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    margin-bottom: 18px;
  }
  .footer-nav {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  header .btn-primary {
    padding: 9px 14px;
    font-size: 0.98rem;
  }
  .cta-section, .section, .hero,
  .articles-preview, .features, .contact-teaser,
  .values, .services, .tips, .faq, .legal, .thank-you {
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 580px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: 1.05rem; }
  .footer-contact, .footer-nav, .footer-cta {
    font-size: 0.97rem;
  }
  .footer-contact span { display: block; margin-bottom: 3px; }
  .hero h1, .hero p { max-width: 100%; }
  .container { padding-left: 2px; padding-right: 2px; }
}

/* ========================================================================
   UTILITY CLASSES & MICRO-INTERACTIONS
   ======================================================================== */
.rounded {
  border-radius: var(--radius);
}
.soft-shadow {
  box-shadow: 0 3px 22px var(--color-shadow);
}
.text-center {
  text-align: center;
}

/* ========================================================================
   Z-INDEX FOR MOBILE MENU / COOKIE / FIXED ELEMENTS
   ======================================================================== */
header, .mobile-menu, .cookie-consent-banner, .cookie-modal {
  z-index: 10010;
}

/* ========================================================================
   A11Y: Focus Styles
   ======================================================================== */
:focus {
  outline: 2px solid #FBA249;
  outline-offset: 2px;
}

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