/* ==== 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,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.5;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F3F6F9;
  color: #20436A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}

/* ==== BRAND VARIABLES ==== */
:root {
  --primary: #20436A;
  --secondary: #6EB985;
  --accent: #F3F6F9;
  --accent-contrast: #fff;
  --error: #EF4741;
  --success: #43BC6E;
  --radius: 14px;
  --shadow-card: 0 2px 16px 0 rgba(32,67,106,0.09);
  --shadow-hover: 0 4px 20px 0 rgba(32,67,106,0.17);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--accent);
  color: var(--primary);
}

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

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


/* ==== TYPOGRAPHY ==== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--primary);
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
h4,h5,h6 {
  font-size: 1.15rem;
}
p,li,dt,dd {
  font-size: 1rem;
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--primary);
}
strong, b {
  font-weight: 700;
  color: var(--secondary);
}

/* Visual hierarchy for links */
a {
  font-weight: 600;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: var(--secondary);
  outline: none;
  text-decoration: underline;
}


/* ==== HEADER & NAV ==== */
header {
  background: var(--accent);
  box-shadow: 0 1px 8px 0 rgba(32,67,106,0.07);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  height: 54px;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
}
.cta-btn {
  padding: 14px 32px;
  border-radius: var(--radius);
  background: var(--secondary);
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  box-shadow: var(--shadow-card);
  border: none;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.17s, transform 0.14s;
  display: inline-block;
  margin-left: 16px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.04);
}
/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--primary);
  background: none;
  border: none;
  margin-left: 20px;
  height: 48px;
  width: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #e6eef6;
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: #fff;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.85,0,0.15,1);
  flex-direction: column;
  display: flex;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #fff;
  align-self: flex-end;
  margin: 24px 32px 0 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0 48px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 12px 0;
  width: 100%;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 840px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ==== HERO SECTIONS ==== */
.hero {
  margin-bottom: 60px;
  padding: 60px 0 52px 0;
  background: linear-gradient(90deg, var(--primary) 65%, var(--secondary) 100%);
  color: #fff;
  position: relative;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  gap: 28px;
  max-width: 600px;
}
.hero h1 {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.11;
  font-weight: 800;
}
.hero p {
  color: #e8f2fa;
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.hero .cta-btn {
  background: var(--secondary);
  color: #fff;
  margin-left: 0;
  margin-top: 10px;
}
.hero .cta-btn:hover { background: #3c8963; }

@media (max-width: 768px) {
  .hero {
    padding: 36px 0 38px 0;
  }
  .hero .content-wrapper {
    max-width: 100%;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* ==== SECTION SPACING AND LAYOUT ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.025);
}
.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: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

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

/* ==== FEATURE LIST ==== */
.features {
  margin-bottom: 60px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.features li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 20px;
  font-size: 1.1rem;
  max-width: 420px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.features li:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-1.5px) scale(1.024);
}
.features li img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.features li strong {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 800;
}

@media (max-width: 900px) {
  .features ul {
    gap: 14px;
  }
  .features li {
    padding: 20px 12px;
    font-size: 1rem;
  }
}
@media (max-width: 630px) {
  .features ul {
    flex-direction: column;
    gap: 0;
  }
  .features li {
    min-width: 0;
    width: 100%;
    max-width: unset;
    margin-bottom: 20px;
  }
}

/* ==== SERVICES OVERVIEW / LIST ==== */
.services-overview ul,
.services-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 30px;
}
.services-overview li,
.services-list li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px 20px;
  gap: 18px;
  min-width: 220px;
  flex: 1 1 220px;
  font-size: 1.1rem;
  font-family: var(--font-body);
  margin-bottom: 16px;
  transition: box-shadow 0.17s, transform 0.15s;
}
.services-overview li img,
.services-list li img {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
}
.services-overview li strong,
.services-list li strong {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
}
.services-overview li:hover, .services-list li:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.022);
}
@media (max-width: 700px) {
  .services-overview ul, .services-list ul {
    flex-direction: column;
    gap: 0;
  }
  .services-overview li,
  .services-list li {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
    margin-bottom: 18px;
  }
}

.services-cta, .pricing-cta, .faq-cta, .contact-cta, .about-summary {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.services-cta h2,
.pricing-cta h2,
.faq-cta h2,
.contact-cta h2,
.about-summary h2 {
  color: #fff;
}
.services-cta .cta-btn,
.pricing-cta .cta-btn,
.faq-cta .cta-btn,
.contact-cta .cta-btn,
.about-summary .cta-btn {
  background: #fff;
  color: var(--primary);
  margin-top: 16px;
}
.services-cta .cta-btn:hover,
.pricing-cta .cta-btn:hover,
.faq-cta .cta-btn:hover,
.contact-cta .cta-btn:hover,
.about-summary .cta-btn:hover {
  background: var(--primary);
  color: #fff;
}


/* ==== TESTIMONIALS ==== */
.testimonials {
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  gap: 28px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  position: relative;
  max-width: 620px;
  font-size: 1.15rem;
  color: var(--primary);
  transition: box-shadow 0.18s, transform 0.16s;
}
.testimonial-card strong {
  display: block;
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 14px;
  letter-spacing: 0.2px;
}
.testimonial-card:before {
  content: '“';
  font-family: var(--font-display);
  font-size: 2.9rem;
  color: var(--secondary);
  position: absolute;
  left: 22px;
  top: 10px;
  opacity: 0.23;
  line-height: 1;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-1.5px) scale(1.015);
}
.testimonials .testimonial-card {
  width: 100%;
}
@media (max-width: 700px) {
  .testimonial-card { max-width: 100%; padding: 18px 12px; }
}

/* ==== ABOUT PAGE ==== */
.about {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.about h1 {
  margin-bottom: 18px;
}
.about p { margin-bottom: 8px; }
.about ul {
  margin-top: 20px;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==== PRICING TABLE ==== */
.pricing-table {
  margin-bottom: 60px;
}
.pricing-table table {
  margin: 0 0 24px 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.pricing-table th {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
}
.pricing-table td {
  font-size: 1rem;
  color: var(--primary);
}
.pricing-table tr {
  border-bottom: 1px solid #e2ecef;
}
.pricing-table ul {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==== FAQ PAGE ==== */
.faq-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.faq-section h1 {
  margin-bottom: 24px;
}
.faq-section dl {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-section dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 3px;
  color: var(--primary);
}
.faq-section dd {
  padding-left: 0.7em;
  color: #4e6a92;
}

/* ==== PROJECT HIGHLIGHTS (reference) ==== */
.project-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 10px;
}
.project-highlights li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 20px 18px;
  font-size: 1.07rem;
  margin-bottom: 15px;
  min-width: 200px;
  flex: 1 1 210px;
}
.project-highlights li img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
@media (max-width: 740px) {
  .project-highlights ul {
    flex-direction: column;
    gap: 0;
  }
  .project-highlights li {
    min-width: 0;
    width: 100%;
    margin-bottom: 18px;
  }
}

/* ==== COMPANY DETAILS (contact) ==== */
.company-details {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
  color: var(--primary);
  font-size: 1.11rem;
}
.company-details a { color: var(--secondary); }

@media (max-width: 700px) {
  .about-summary, .services-cta, .pricing-cta, .faq-cta, .contact-cta {
    padding: 24px 5vw;
  }
}

/* ==== LEGAL & INFORMATION PAGES ==== */
.privacy-policy, .terms, .gdpr, .cookie-policy {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.privacy-policy ul,
.terms ul,
.gdpr ul,
.cookie-policy ul {
  margin: 22px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 15px;
}

/* ==== THANK YOU PAGE ==== */
.thank-you {
  margin-bottom: 60px;
  padding: 44px 20px;
  background: var(--secondary);
  border-radius: var(--radius);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-card);
}
.thank-you h1 { color: #fff; }
.thank-you .cta-btn {
  background: #fff;
  color: var(--primary);
  margin-top: 24px;
}
.thank-you .cta-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* ==== FOOTER ==== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 16px 0;
  letter-spacing: 0.2px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.logo-footer img {
  height: 38px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  align-items: flex-start;
}
.footer-nav a {
  color: #fff;
  transition: color 0.16s;
  font-size: 1rem;
}
.footer-nav a:hover {
  color: var(--secondary);
}
.footer-contact {
  font-size: 0.97rem;
}
.footer-contact a {
  color: var(--secondary);
  font-weight: bold;
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .logo-footer img {
    margin-bottom: 0;
    margin-top: 12px;
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  z-index: 1800;
  background: #fff;
  box-shadow: 0 -2px 16px rgba(32,67,106,0.14);
  color: var(--primary);
  padding: 28px 18px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: 18px 18px 0 0;
  font-size: 1rem;
  animation: cookie-slide-in 0.35s cubic-bezier(.71,.21,.3,.98) both;
}
@keyframes cookie-slide-in {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  flex: 1 1 0;
  min-width: 0;
}
.cookie-banner-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner-btn {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 13px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  transition: background 0.19s, box-shadow 0.14s;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}
.cookie-banner-btn.settings {
  background: var(--primary);
}
.cookie-banner-btn.reject {
  background: #eeeeee;
  color: var(--primary);
  font-weight: 700;
}
.cookie-banner-btn:hover,
.cookie-banner-btn:focus {
  background: #3c8963;
  color: #fff;
}
.cookie-banner-btn.settings:hover,
.cookie-banner-btn.settings:focus {
  background: #18304a;
}
.cookie-banner-btn.reject:hover,
.cookie-banner-btn.reject:focus {
  background: #e6ecef;
  color: var(--secondary);
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 7vw 14px 7vw;
  }
  .cookie-banner-btn {
    width: 100%;
    min-width: 120px;
  }
}

/* ==== COOKIE PREFERENCE MODAL ==== */
.cookie-modal-backdrop {
  position: fixed;
  top:0; left: 0; right: 0; bottom: 0;
  background: rgba(32,67,106,0.12);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: fade-in-cookie .25s linear both;
}
@keyframes fade-in-cookie {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 48px 6px rgba(32,67,106,0.17);
  max-width: 380px;
  width: 92vw;
  padding: 36px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modal-slide-in .32s cubic-bezier(.74,.07,.37,1.04) both;
}
@keyframes modal-slide-in {
  0% { transform: translateY(30px) scale(0.97); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: var(--primary);
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 15px 0;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-modal-category label {
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
}
.cookie-modal-toggle {
  appearance: none;
  width: 44px;
  height: 26px;
  background: #e3eaf1;
  border-radius: 16px;
  position: relative;
  outline: none;
  border: none;
  transition: background 0.17s;
}
.cookie-modal-toggle:checked {
  background: var(--secondary);
}
.cookie-modal-toggle:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
  box-shadow: 0 1px 4px rgba(32,67,106,0.08);
}
.cookie-modal-toggle:checked:before {
  left: 22px;
}
.cookie-modal-category .locked {
  font-size: 1.13em;
  color: #999;
  margin-left: 6px;
}
.cookie-modal-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.cookie-modal-btn {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.16s;
  cursor: pointer;
}
.cookie-modal-btn.close {
  background: #e6ecee;
  color: var(--primary);
  font-weight: 700;
}
.cookie-modal-btn:hover,
.cookie-modal-btn:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-modal-btn.close:hover,
.cookie-modal-btn.close:focus {
  background: #d5e1ee;
  color: var(--secondary);
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--secondary);
}

@media (max-width: 490px) {
  .cookie-modal {
    padding: 24px 10vw 20px 7vw;
    max-width: 97vw;
  }
}


/* ==== GENERAL UTILITIES ==== */
.mt-1 { margin-top: 8px; }
.mb-1 { margin-bottom: 8px; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }

/* ==== ACCESSIBILITY ==== */
:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ==== RESPONSIVE LAYOUT ==== */
@media (max-width: 980px) {
  html { font-size: 15px; }
  .container { max-width: 98vw; }
}
@media (max-width: 700px) {
  html { font-size: 14px; }
  .container { padding: 0 10px; }
  .footer-contact { font-size: 0.93rem; }
}

/* ==== PRINT ==== */
@media print {
  .cookie-banner,.cookie-modal-backdrop,.header,.footer,.mobile-menu { display: none !important; }
  * { background: #fff !important; color: #000 !important; box-shadow: none !important; }
}

