/* ==== CSS Reset and 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #E8EEF2;
  color: #223B53;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #F5A623;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #223B53;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.2em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  background: none;
  border: none;
  box-sizing: border-box;
}

/* ==== Font Face Declarations ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* ==== Brand Variables ==== */
:root {
  --primary: #223B53;
  --secondary: #F5A623;
  --accent: #E8EEF2;
  --white: #fff;
  --text-dark: #223B53;
  --text-light: #fff;
  --shadow: 0 6px 32px 0 rgba(34, 59, 83, 0.12);
  --radius: 18px;
  --cta-gradient: #F5A623;
}

/* ==== General Container and Layout ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  transition: box-shadow 0.28s;
}
.section:hover {
  box-shadow: 0 8px 40px 0 rgba(34,59,83,0.18);
}

/* ==== Creative Artistic Touches ==== */
section {
  position: relative;
  z-index: 1;
}
section:before {
  content: '';
  display: block;
  position: absolute;
  top: -14px;
  left: 16px;
  width: 48px;
  height: 8px;
  background: var(--secondary);
  border-radius: 4px;
  opacity: 0.32;
  z-index: 0;
}

/* ==== Typography ==== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.16;
}
h2 {
  font-size: 2rem;
  line-height: 1.22;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
}
h4 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.22;
}
blockquote {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.18rem;
  color: var(--primary);
  font-style: italic;
  background: var(--accent);
  border-left: 3px solid var(--secondary);
  margin-bottom: 16px;
  padding: 12px 18px;
  border-radius: 10px;
}
p, ul, li, .content-wrapper {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
}
small {
  font-size: 0.92rem;
  color: #466489;
}

/* Artistic font accent for main headings */
h1, h2 {
  letter-spacing: 2.5px;
  text-shadow: 2px 4px 0 rgba(245,166,35,.06);
}

/* ==== Buttons ==== */
.btn-primary, .btn-primary:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92em 2.2em;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  background: var(--secondary);
  color: var(--text-dark);
  border-radius: 42px;
  box-shadow: 0 4px 16px 0 rgba(245, 166, 35, 0.18);
  border: none;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 16px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-shadow: 0 1px 0 #fff6b7;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
  box-shadow: 0 6px 24px 0 rgba(245, 166, 35, 0.23);
  text-decoration: none;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em 1.6em;
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 42px;
  box-shadow: 0 2px 8px rgba(34,59,83,0.14);
  transition: background 0.2s, color 0.2s;
  margin: 8px 0;
  border: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* ==== Header & Navigation ==== */
header {
  background: var(--white);
  box-shadow: 0 2px 16px 0 rgba(34, 59, 83, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 18px 10px 18px;
}
.logo-link img {
  height: 58px;
}
.main-navigation {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.main-navigation a {
  color: var(--primary);
  border-radius: 30px;
  padding: 0.4em 1.2em;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-navigation a:hover{
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
}
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 202;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 40px;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 12px rgba(245, 166, 35, 0.09);
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--secondary);
}

/* ==== Mobile Menu ==== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  box-shadow: -8px 0 64px 0 rgba(34,59,83,0.17);
  position: fixed;
  top: 0;
  right: 0;
  width: 84vw;
  max-width: 340px;
  height: 100vh;
  padding: 32px 22px 22px 36px;
  transform: translateX(100%);
  z-index: 201;
  transition: transform 0.39s cubic-bezier(.5,.09,.36,1);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 1.7rem;
  border-radius: 50%;
  border: none;
  width: 42px;
  height: 42px;
  box-shadow: 0 1px 6px 0 rgba(245, 166, 35, 0.18);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 210;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 38px;
  width: 100%;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.13rem;
  padding: 0.78em 0.8em 0.78em 0;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (max-width: 1100px) {
  header .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .main-navigation {
    gap: 14px;
    font-size: 0.98rem;
  }
  .logo-link img {
    height: 44px;
  }
}

@media (max-width: 980px) {
  .main-navigation {
    gap: 10px;
    font-size: 0.91rem;
  }
  .btn-primary {
    font-size: 1.02rem;
    padding: 0.85em 1.9em;
  }
}

@media (max-width: 860px) {
  .main-navigation {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* === Section Content === */
@media (max-width: 768px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 16px;
  }
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.35rem; }
}

/* ==== Feature Grids, Cards & Testimonials ==== */
.feature-grid,
.service-list,
.equipment-grid,
.team-list,
.machine-list,
.case-list,
.service-cards,
.testimonial-slider,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
}
.feature-grid > div,
.service-list > div,
.equipment-grid > div,
.team-list > div,
.machine-list > div,
.case-list > div,
.service-cards > div {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 rgba(34,59,83,0.10);
  padding: 30px 22px 22px 22px;
  flex: 1 1 234px;
  min-width: 210px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.14s;
  margin-bottom: 20px;
}
.feature-grid > div:hover,
.service-list > div:hover,
.equipment-grid > div:hover,
.team-list > div:hover,
.machine-list > div:hover,
.case-list > div:hover,
.service-cards > div:hover {
  box-shadow: 0 12px 32px rgba(245, 166, 35, 0.11);
  transform: translateY(-3px) scale(1.023);
}
.feature-grid img, .service-cards img {
  width: 42px; min-height: 36px; margin-bottom: 16px;
}

.testimonial-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px 20px 24px;
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  box-shadow: 0 3px 20px 0 rgba(34, 59, 83, 0.09);
  background: #fafcff;
  border: 1.5px solid #ebf0f7;
  z-index: 2;
}
.testimonial-card blockquote {
  color: var(--primary);
  background: none;
  border-left: 4px solid var(--secondary);
  margin-bottom: 10px;
  padding-left: 18px;
  font-size: 1.09rem;
}
.testimonial-card p {
  color: var(--primary);
}
.star-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
}
.star-rating img { width: 21px; }

.benefit-points li, .benefit-list li, .rental-terms-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}
.benefit-points img, .benefit-list img, .rental-terms-list img {
  width: 22px;
  min-width: 20px;
}

.process-steps li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}
.process-steps img {
  width: 28px;
  min-width: 22px;
}

.privacy-notice {
  background: #f7efd9;
  border-radius: 8px;
  padding: 8px 15px;
  margin-top: 16px;
  font-size: 0.96em;
  font-family: 'Roboto', Arial, sans-serif;
  color: #856c32;
}

.cta {
  background: linear-gradient(96deg, #F5A623 0%, #fbde8b 100%);
  box-shadow: 0 6px 36px 0 rgba(245,166,35,0.16);
  border: none;
  padding: 32px 22px;
  border-radius: 28px;
  align-items: center;
  text-align: center;
  color: var(--primary);
}
.cta h2 {
  color: var(--primary);
  font-size: 2.2rem;
}
.cta p {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Text sections under policies */
.text-section, .text-image-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==== Footer ==== */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0 12px 0;
  margin-top: 50px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px 44px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--secondary);
  text-decoration: underline;
  transition: color 0.2s;
  padding-left: 4px;
}
.footer-nav a:hover {
  color: var(--white);
}
.footer-contact {
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}
.footer-contact img {
  height: 42px;
  margin-bottom: 10px;
}
.footer-copy {
  font-size: 0.89rem;
  color: #e6e1d6;
  margin-top: 18px;
}

/* =================== COOKIE CONSENT BANNER & MODAL =================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fffaf3;
  color: var(--primary);
  box-shadow: 0 -2px 28px 0 rgba(34,59,83,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 22px;
  z-index: 501;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  animation: slide-up-banner 0.55s cubic-bezier(.5,-.03,.47,1.01);
  transition: bottom 0.25s;
}
@keyframes slide-up-banner {
  from { bottom: -120px; opacity:0; } to { bottom:0; opacity:1; }
}
.cookie-banner p {
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 0.6em 1.7em;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 24px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, transform 0.11s;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .accept:hover { background: var(--primary); color: var(--secondary); }
.cookie-banner .reject {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-banner .reject:hover { background: #c1c6da; color: var(--primary); }
.cookie-banner .settings {
  background: #faf6e5;
  color: var(--primary);
  border: 1px solid var(--secondary);
}
.cookie-banner .settings:hover { background: var(--secondary); color: var(--primary); }

/* Cookie categories modal */
.cookie-modal-bg {
  display: none;
  position: fixed;
  z-index: 505;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(34, 59, 83, 0.18);
  align-items: center;
  justify-content: center;
  animation: fade-in-bg 0.19s;
}
@keyframes fade-in-bg { from {opacity:0;} to {opacity:1;} }
.cookie-modal-bg.open { display: flex; }
.cookie-modal {
  background: #fffaf3;
  color: var(--primary);
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(34,59,83,0.16);
  padding: 38px 28px 28px 28px;
  min-width: 310px; max-width: 95vw; max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modal-fade-in 0.38s cubic-bezier(.5,.09,.36,1);
}
@keyframes modal-fade-in { from { transform: scale(0.88); opacity:0;} to { transform:scale(1); opacity:1; } }
.cookie-modal h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  font-size: 1.22rem;
  margin-bottom: 8px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal .toggle {
  width: 38px;
  height: 23px;
  border-radius: 12px;
  background: #e0e6ef;
  position: relative;
  cursor: pointer;
  transition: background 0.19s;
  margin-left: auto;
}
.cookie-modal .toggle.enabled {
  background: var(--secondary);
}
.cookie-modal .toggle-knob {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 19px;
  height: 19px;
  background: var(--primary);
  border-radius: 50%;
  transition: left 0.22s, background 0.13s;
}
.cookie-modal .toggle.enabled .cookie-modal .toggle-knob {
  background: var(--primary);
}
.cookie-modal .toggle.enabled .cookie-modal .toggle-knob {
  left: 17px;
}
/* show right position for enabled */
.cookie-modal .toggle.enabled .toggle-knob {
  left: 17px;
  background: var(--secondary);
}
.cookie-modal .toggle.disabled .toggle-knob {
  left: 2px;
  background: #c2cbe0;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 20px;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  border: none;
  font-size: 1.28rem;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
}
.cookie-modal .close-modal:hover { background: var(--secondary); color: var(--primary); }

/****** Responsive: Cookie Banner/Modal ******/
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.97rem;
    padding: 13px 5vw;
  }
  .cookie-modal { padding: 22px 4vw 18px 4vw; }
}

/* =================== FLEX WRAPPER UTILITY CLASSES =================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px 0 rgba(34,59,83,0.10);
  padding: 28px 20px;
  min-width: 240px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 10px 28px 0 rgba(34,59,83,0.17);
  transform: translateY(-2px) scale(1.01);
}
.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;
}

@media (max-width: 900px) {
  .feature-grid, .service-cards, .team-list, .equipment-grid, .case-list, .machine-list {
    gap: 16px;
  }
  .feature-grid > div, .service-cards > div, .team-list > div, .equipment-grid > div, .case-list > div, .machine-list > div {
    min-width: 170px;
    font-size: 0.98rem;
    padding: 20px 12px;
  }
}

@media (max-width: 768px) {
  .feature-grid, .service-cards, .testimonial-list, .team-list, .equipment-grid, .case-list, .service-list, .machine-list {
    flex-direction: column;
    gap: 13px;
  }
  .content-grid, .card-container {
      flex-direction: column;
      gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .card {
    min-width: unset;
  }
}

/* =================== ACCESSIBILITY & MISC =================== */
:focus {
  outline: 2px dashed var(--secondary);
  outline-offset: 2px;
}
::selection {
  background: var(--secondary);
  color: var(--primary);
}

/* Micro-interactions for links and buttons */
a, button {
  transition: background 0.18s, color 0.18s, border 0.16s, transform 0.12s;
}

/* Micro pulse on cta */
.cta .btn-primary {
  animation: cta-pulse 2.9s infinite ease-in-out;
  box-shadow: 0 3px 30px 0 rgba(245,166,35,0.07);
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 7px 36px 0 rgba(245,166,35,0.09); }
  60% { box-shadow: 0 0px 18px 3px rgba(245,166,35,0.21); }
}

/* ==== Responsive Font Sizes ==== */
@media (max-width: 500px) {
  h1 {font-size: 1.4rem;}
  h2 {font-size: 1.17rem;}
  h3 {font-size: 1rem;}
  .btn-primary {font-size: 0.97em;}
  .feature-grid>div, .service-cards>div, .team-list>div, .equipment-grid>div, .case-list>div, .machine-list>div {
    font-size: 0.96em;
    padding: 11px 6px;
  }
}

/* =================== Custom Artistic Decorative Accents =================== */
section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -17px;
  right: 28px;
  width: 36px;
  height: 8px;
  background: var(--primary);
  border-radius: 7px;
  opacity: 0.12;
  z-index: 0;
}

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