/* ============================== */
/*    CSS RESET & BASE LAYER      */
/* ============================== */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F1F3F5;
  color: #22292f;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}
a:hover, a:active {
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
ul, ol {
  margin-left: 1.25em;
}

/* ============================== */
/*    BRAND COLORS & TYPOGRAPHY   */
/* ============================== */
:root {
  --color-primary: #29547A;
  --color-secondary: #F1F3F5;
  --color-bg: #FFFFFF;
  --color-accent: #9FC63A;
  --color-accent-alt: #839B2A;
  --color-text: #22292f;
  --color-muted: #6b7a8f;
  --color-light-neutral: #F7F9FA;
  --color-shadow: rgba(41, 84, 122, 0.06);
  --radius: 11px;
  --shadow: 0 2px 8px var(--color-shadow);
}

body {
  background: var(--color-secondary);
  color: var(--color-text);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
p, ul, ol, li { font-size: 1rem; line-height: 1.7; }
p { margin-bottom: 16px; }
ul, ol {
  margin-bottom: 16px;
}
strong { font-weight: bold; }

/* Typography scaling for small devices */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
}
/* ============================== */
/*   CONTAINER & GENERAL SPACING  */
/* ============================== */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 24px 8px;
  }
}

/* ========================= */
/*        HEADER/NAV         */
/* ========================= */
header {
  background: var(--color-bg);
  box-shadow: 0 2px 8px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 111;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
}
header a img {
  max-height: 50px;
}
nav.main-nav {
  display: flex;
  gap: 28px;
}
nav.main-nav a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  padding: 6px 2px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-accent-alt);
  outline: none;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.15s, box-shadow 0.2s, transform 0.17s;
  margin-left: 16px;
}
.cta-button.primary {
  background: var(--color-accent);
  color: #fff;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 5px 12px var(--color-shadow), 0 1.5px 3px 0 var(--color-accent, #839B2A);
}
.secondary-cta {
  font-weight: 500;
  color: var(--color-muted);
  margin-top: 8px;
}
button.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Hamburger button */
.mobile-menu-toggle {
  display: none;
  background: var(--color-bg);
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  padding: 8px 13px;
  margin-left: 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.17s, color 0.13s;
  line-height: 1;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 980px) {
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

/* ======================== */
/*         MOBILE MENU      */
/* ======================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(41, 84, 122, 0.87);
  z-index: 9999;
  transform: translateX(100vw);
  transition: transform 0.32s cubic-bezier(0.68,0,0.27,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin: 24px 30px 10px 0;
  cursor: pointer;
  align-self: flex-end;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(159,198,58,0.18);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 30px;
  align-items: flex-end;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 4px;
  transition: background 0.13s, color 0.13s;
  display: block;
  min-width: 220px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* ============================== */
/*          HERO SECTION          */
/* ============================== */
.hero {
  background: linear-gradient(120deg, var(--color-bg) 78%, #EDF1F6 100%);
  min-height: 295px;
  display: flex;
  align-items: center;
  padding: 0;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 200px;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 34px;
  padding-bottom: 34px;
}
.hero .content-wrapper {
  max-width: 620px;
  gap: 16px;
}
.hero h1 {
  color: var(--color-primary);
  margin-bottom: 8px;
}
.hero p {
  font-size: 1.18rem;
  color: var(--color-muted);
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 20px;
    min-height: 170px;
  }
  .hero .container {
    min-height: 120px;
    padding: 15px 0 26px;
  }
  .hero .content-wrapper {
    max-width: 100%;
  }
}

/* =========================== */
/*         FEATURES GRID       */
/* =========================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
}
.features-grid > div {
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 23px 26px 19px 24px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.16s, transform 0.13s;
  margin-bottom: 20px;
}
.features-grid > div:hover {
  box-shadow: 0 5px 15px var(--color-shadow);
  transform: translateY(-2px) scale(1.02);
}
.features-grid img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 0;
  filter: grayscale(35%) contrast(1.12);
}
.features-grid h3 {
  font-size: 1.16rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.features-grid p {
  color: var(--color-muted);
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .features-grid {
    gap: 20px;
  }
  .features-grid > div {
    padding: 18px 15px;
    min-width: 180px;
  }
}
@media (max-width: 600px) {
  .features-grid {
    flex-direction: column;
  }
  .features-grid > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 14px 11px;
  }
}

/* ============================= */
/*         SERVICES LIST         */
/* ============================= */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 13px;
}
.services-list > div {
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  flex: 1 1 230px;
  max-width: 320px;
  min-width: 220px;
  padding: 25px 24px 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.services-list > div:hover {
  box-shadow: 0 6px 20px var(--color-shadow);
  transform: translateY(-3px) scale(1.025);
}
.services-list h3 {
  font-size: 1.11rem;
  color: var(--color-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
}
.services-list h3 span {
  background: var(--color-accent);
  color: #fff;
  border-radius: 6px;
  font-size: 0.98rem;
  padding: 3px 9px;
  margin-left: 10px;
  font-weight: 600;
}
.services-list p {
  margin-bottom: 0;
  color: var(--color-muted);
}

@media (max-width: 800px) {
  .services-list {
    flex-direction: column;
    gap: 17px;
  }
  .services-list > div {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 16px 14px 14px 12px;
  }
}

/* ============================== */
/*           TESTIMONIALS         */
/* ============================== */
.testimonial-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-bottom: 20px;
  padding: 20px 26px 16px 22px;
  flex-direction: column;
  max-width: 680px;
  min-width: 0;
  transition: box-shadow 0.17s, transform 0.15s;
  border-left: 5px solid var(--color-accent);
}
.testimonial-card:hover {
  box-shadow: 0 8px 22px var(--color-shadow);
  transform: scale(1.02);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.testimonial-card strong {
  font-weight: 600;
}
.testimonial-card span {
  color: var(--color-muted);
  font-size: 0.97rem;
  font-style: italic;
}
@media (max-width:600px) {
  .testimonial-card {
    padding: 14px 10px 12px 10px;
  }
}

/* =========================== */
/*           FAQ               */
/* =========================== */
.faq-accordion, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-accordion > div,
.faq-list > div {
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 16px 19px 12px 16px;
  margin-bottom: 13px;
  transition: box-shadow 0.13s, transform 0.14s;
}
.faq-accordion > div:hover,
.faq-list > div:hover {
  box-shadow: 0 5px 18px var(--color-shadow);
  transform: translateY(-2px) scale(1.01);
}
.faq-list h4, .faq-accordion h4 {
  font-size: 1.04rem;
  color: var(--color-primary);
  margin-bottom: 8px;
  font-weight: 600;
}
.faq-list p, .faq-accordion p {
  color: var(--color-muted);
  font-size: 1rem;
}

/* ============================== */
/*            CARDS/GRIDS         */
/* ============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 16px;
  min-width: 220px;
  flex: 1 1 230px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 7px 22px var(--color-shadow);
  transform: scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
.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;
    gap: 20px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* ============================== */
/*            CONTACT             */
/* ============================== */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.contact-details > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 0 7px 0 0;
  min-width: 165px;
  font-size: 1rem;
}
.contact-details h2 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 3px;
}
.contact-details a {
  color: var(--color-primary);
  text-decoration: underline;
}
@media (max-width: 600px) {
  .contact-details {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 6px;
  }
  .contact-details > div {
    padding: 0;
  }
}

/* ============================ */
/*       CONFIRMATION BLOCK     */
/* ============================ */
.confirmation-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 28px 20px 18px 18px;
  margin-top: 8px;
}
.confirmation-block p {
  font-size: 1.14rem;
  margin-bottom: 6px;
  color: var(--color-primary);
}

/* ========================== */
/*        FOOTER              */
/* ========================== */
footer {
  background: var(--color-bg);
  padding: 33px 0 18px;
  border-top: 1.5px solid #e1e5ea;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
footer nav.footer-nav a {
  color: var(--color-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.13s;
}
footer nav.footer-nav a:hover
 {
  color: var(--color-primary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--color-muted);
  font-size: 0.98rem;
  margin-top: 4px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}
footer a img {
  max-height: 44px;
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  footer nav.footer-nav {
    gap: 18px;
  }
}

/* ============================== */
/*         COOKIE BANNER           */
/* ============================== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 -5px 24px rgba(41,84,122,0.11);
  padding: 24px 24px 16px 24px;
  z-index: 12000;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(.68,0,.27,1);
}
.cookie-banner p {
  font-size: 1.02rem;
  color: var(--color-primary);
}
.cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  font-weight: 600;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 1px 4px var(--color-shadow);
  transition: background 0.13s, color 0.13s;
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-btn.reject {
  background: #ececec;
  color: var(--color-muted);
}
.cookie-btn.settings {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  opacity: 0.9;
}

.cookie-banner.hide {
  transform: translateY(135%);
  pointer-events: none;
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 16px 7px 11px 7px;
    gap: 12px;
  }
}
/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  z-index: 13000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(41,84,122,0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.24s;
  animation: fadeIn 0.32s;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 42px var(--color-shadow);
  padding: 32px 24px 22px 24px;
  min-width: 340px;
  max-width: 98vw;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: modalOpen 0.32s cubic-bezier(.68,0,.27,1);
}
@keyframes modalOpen {
  from {transform: translateY(80px) scale(0.98); opacity: 0;}
  to {transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 50%;
  transition: background 0.19s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--color-secondary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 1rem;
  background: #f7f9fa;
  border-radius: 8px;
  padding: 6px 7px 6px 13px;
}
.cookie-category label {
  font-weight: 500;
  margin-left: 2px;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 11px;
  background: #c8d2de;
  position: relative;
  transition: background 0.18s;
  margin-right: 7px;
  flex-shrink: 0;
  border: none;
  outline: none;
  cursor: pointer;
  appearance: none;
}
.cookie-toggle.enabled {
  background: var(--color-accent);
}
.cookie-toggle[disabled] {
  background: #e6ede3;
  cursor: not-allowed;
}
.cookie-toggle::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.18s;
}
.cookie-toggle.enabled::after {
  left: 18px;
}

.cookie-actions-modal {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .cookie-modal-dialog {
    min-width: 0;
    width: 98vw;
    padding: 12px 5px 12px 5px;
  }
}

/* ============================== */
/*             OTHERS             */
/* ============================== */
::-webkit-input-placeholder { color: #B3BAC8; }
::-moz-placeholder { color: #B3BAC8; }
:-ms-input-placeholder { color: #B3BAC8; }
::placeholder { color: #B3BAC8; }

hr {
  border: none;
  border-top: 1px solid #e6eaf0;
  margin: 24px 0;
}

/* Utility */
.hide { display: none !important; }

/* ============================== */
/*      SCANDINAVIAN DETAILS      */
/* ============================== */
.card, .testimonial-card, .features-grid > div, .services-list > div, .faq-list > div, .faq-accordion > div {
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  background: var(--color-bg);
}
img, .card img, .features-grid img {
  border-radius: 7px;
  box-shadow: none;
}
strong {
  color: var(--color-accent-alt);
}
abbr, code {
  font-family: inherit;
  background: #f1f3f5;
  padding: 2px 4px;
  border-radius: 6px;
  font-size: 95%;
}

/* Nice focus rings */
a:focus, button:focus, .cta-button:focus, .mobile-menu-toggle:focus, .cookie-btn:focus, .cookie-modal-close:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================== */
/*      INTERACTIONS/ANIMATION    */
/* ============================== */
.card, .testimonial-card, .features-grid > div, .services-list > div, .faq-list > div, .faq-accordion > div, .confirmation-block {
  transition: box-shadow 0.15s, transform 0.13s;
}
.card:hover, .features-grid > div:hover, .services-list > div:hover, .testimonial-card:hover, .faq-list > div:hover, .faq-accordion > div:hover {
  transform: translateY(-2px) scale(1.017);
  box-shadow: 0 8px 22px var(--color-shadow);
}

/* Transitions for CTA, links, menu */
.cta-button, .cta-button.primary, button, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn {
  transition: 
    background 0.18s, 
    color 0.13s, 
    box-shadow 0.12s, 
    transform 0.11s;
}

/* ============================== */
/*    RESPONSIVE ADJUSTMENTS      */
/* ============================== */
@media (max-width: 992px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 500px) {
  body, .container {
    font-size: 15px;
    padding-left: 6px;
    padding-right: 6px;
  }
}

@media (max-width: 400px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
}

/* ============================== */
/*      CLEAR FLOATS AND SPACE    */
/* ============================== */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
