/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFF;
  color: #284346;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #284346;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #F4A259;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* BASE CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

/* HEADER */
header {
  background: #284346;
  color: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 20;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 3px 12px rgba(40,67,70,0.07);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}
header img {
  height: 44px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 4px;
  border-radius: 4px;
  position: relative;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #F4A259;
  background: rgba(244,162,89,0.08);
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  background: #F4A259;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  padding: 12px 32px;
  margin-left: 18px;
  transition: background 0.24s cubic-bezier(.61,.09,.27,1), box-shadow 0.24s;
  box-shadow: 0 7px 20px rgba(244,162,89,0.13);
}
.btn-primary:hover,
.btn-primary:focus {
  background: #284346;
  color: #fff;
  box-shadow: 0 2px 18px rgba(40,67,70,0.18);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  background: none;
  color: #F4A259;
  border: none;
  font-size: 2.2rem;
  margin-left: 24px;
  display: none;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F4A259;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: #284346;
  color: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.66,-0.12,0.35,1.21);
  box-shadow: -7px 0 32px rgba(40,67,70,0.27);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #F4A259;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 12px 18px 12px 18px;
  cursor: pointer;
  margin: 16px 16px 0 0;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #284346;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 48px 0 0 0;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 14px 0 14px 8px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F4A259;
  background: rgba(244,162,89,0.14);
}

/* HERO SECTION */
.hero {
  width: 100vw;
  background: #D0CFCF;
  padding: 64px 0 56px 0;
  display: flex;
  align-items: center;
}
.hero .container {
  min-height: 340px;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #284346;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.hero p {
  font-size: 1.24rem;
  color: #284346;
  margin-bottom: 36px;
  font-family: 'Roboto', Arial, sans-serif;
}
.hero .btn-primary {
  font-size: 1.2rem;
  margin-left: 0;
}

/* PAGE SECTIONS: GENERIC */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 4px 22px rgba(40,67,70,0.07);
}
.section:last-child {
  margin-bottom: 0;
}

/* FEATURES, SERVICES, GRIDS, FLEXBOX */
.feature-grid, .service-list, .stats, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.feature-grid {
  flex-direction: row;
  justify-content: flex-start;
}
.feature-grid li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: #F8F8F8;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(40,67,70,0.05);
  padding: 18px 24px;
  min-width: 265px;
  margin-bottom: 0;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #284346;
  font-weight: 500;
}
.feature-grid img {
  width: 38px;
  height: 38px;
}
.service-list {
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.service-list li {
  background: #D0CFCF;
  border-radius: 20px;
  margin-bottom: 0;
  padding: 18px 24px;
  font-size: 1.1rem;
  color: #284346;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: 500;
  box-shadow: 0 3px 14px rgba(40,67,70,0.08);
}
.service-list .price {
  font-weight: 700;
  color: #F4A259;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 8px;
  font-size: 1rem;
}
.stats {
  gap: 32px;
  align-items: flex-start;
}
.stats li {
  background: #fff;
  color: #284346;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  border-radius: 18px;
  box-shadow: 0 2px 15px rgba(244,162,89,0.11);
  padding: 16px 24px;
  margin-bottom: 0;
  text-align: center;
}

/* TESTIMONIALS */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  color: #284346;
  padding: 24px 26px;
  border-radius: 20px;
  box-shadow: 0 3px 18px rgba(40,67,70,0.10);
  min-width: 260px;
  max-width: 380px;
  margin-bottom: 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  min-height: 150px;
}
.testimonial-card p {
  color: #284346;
  font-size: 1.04rem;
  line-height: 1.42;
}
.testimonial-card span {
  color: #F4A259;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
}
.testimonial-card img {
  width: 92px;
  height: 18px;
  margin-top: 8px;
}

/* FAQ */
.faq-list {
  width: 100%;
  font-size: 1.09rem;
  margin-top: 30px;
  font-family: 'Roboto', Arial, sans-serif;
}
.faq-list dt {
  font-weight: bold;
  color: #284346;
  margin-top: 28px;
}
.faq-list dd {
  margin: 12px 0 8px 0;
  margin-left: 18px;
  color: #284346;
  line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
  background: #284346;
  color: #fff;
  padding: 48px 0;
  border-radius: 26px;
  margin-top: 44px;
}
.cta-section h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}
.cta-section p {
  font-size: 1.2rem;
  color: #D0CFCF;
  margin-bottom: 24px;
}
.cta-section .btn-primary {
  font-size: 1.14rem;
  margin-bottom: 16px;
}

/* FOOTER */
footer {
  background: #222729;
  color: #fff;
  width: 100vw;
  padding: 0 0 0 0; 
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 60px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 34px 0 18px 0;
  gap: 20px;
}
.footer-top img {
  height: 36px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 26px;
}
.footer-menu a {
  color: #F4A259;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  letter-spacing: 0.03em;
  transition: color 0.18s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #fff;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1.5px solid #33383b;
  font-size: 1rem;
  padding: 16px 0 22px 0;
  gap: 14px;
}
.contact-snippet {
  color: #D0CFCF;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.brand-signature {
  color: #F4A259;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
}

/* TEXT, HEADINGS & TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #284346;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.1rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-top: 36px;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.21rem;
  margin-top: 24px;
}
h4 {
  font-size: 1.08rem;
}
p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  color: #284346;
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 9px;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CONTACT PAGE */
.contact-details ul {
  padding-left: 0;
  margin-bottom: 14px;
  list-style-type: none;
}
.contact-details li {
  margin-bottom: 8px;
  font-size: 1.09rem;
  color: #284346;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-details a.btn-primary {
  margin-top: 16px;
}

/* SPECIAL FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(244,162,89,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 400px;
  gap: 14px;
}
.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;
}

/* COOKIES BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #284346;
  color: #fff;
  z-index: 1999;
  box-shadow: 0 -3px 22px rgba(40,67,70,0.19);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 22px 22px 26px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.37s, transform 0.37s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 22px;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
}
.cookie-consent-banner .cookie-accept {
  background: #F4A259;
  color: #fff;
  margin-right: 6px;
}
.cookie-consent-banner .cookie-accept:hover, .cookie-consent-banner .cookie-accept:focus {
  background: #fff;
  color: #284346;
}
.cookie-consent-banner .cookie-reject {
  background: #fff;
  color: #284346;
}
.cookie-consent-banner .cookie-reject:hover, .cookie-consent-banner .cookie-reject:focus {
  background: #D0CFCF;
  color: #284346;
}
.cookie-consent-banner .cookie-settings {
  background: none;
  color: #F4A259;
  border: 2px solid #F4A259;
}
.cookie-consent-banner .cookie-settings:hover, .cookie-consent-banner .cookie-settings:focus {
  color: #fff;
  background: #F4A259;
}

/* COOKIES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,67,70,0.60);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #284346;
  border-radius: 20px;
  padding: 38px 32px 28px 32px;
  min-width: 340px;
  max-width: 95vw;
  box-shadow: 0 8px 34px rgba(40,67,70,0.22);
  font-size: 1.13rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  margin-top: 0;
  color: #284346;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.39rem;
  font-weight: 800;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-modal .category-toggle {
  width: 23px; height: 23px; accent-color: #F4A259;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 10px;
  background: #F4A259;
  color: #fff;
  border: none;
  border-radius: 9px;
  width: 34px; height: 34px;
  font-size: 1.39rem;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #284346;
  color: #fff;
}

/* BUTTON MICRO-INTERACTIONS */
button, .btn-primary {
  transition: background 0.2s, color 0.2s, transform 0.13s;
}
button:active, .btn-primary:active {
  transform: scale(0.97);
}

/* MEDIA QUERIES: RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container { max-width: 990px; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 768px) {
  .container { max-width: 98vw; padding: 0 7vw; }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
  }
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0 8px 0;
  }
  .footer-menu {
    gap: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.97rem;
    padding: 12px 0 14px 0;
  }
  .content-wrapper {
    gap: 22px;
  }
  .hero {
    padding: 38px 0 18px 0;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .cta-section { padding: 20px 0; }
  .card, .testimonial-card, .service-list li, .feature-grid li, .stats li {
    min-width: 96vw;
    max-width: 100vw;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(40,67,70,0.09);
  }
  .feature-grid, .testimonial-list, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .faq-list {
    font-size: 1rem;
  }
  .section { padding: 22px 4vw; margin-bottom: 38px; border-radius: 19px; }
  .cookie-consent-banner { flex-direction: column; gap: 20px; font-size: 1rem; padding: 18px 10px 16px 16px; }
  .cookie-modal { min-width: 90vw; padding: 26px 8vw 18px 8vw; }
}

@media (max-width: 500px) {
  .hero h1 { font-size: 1.23rem; }
  h2 { font-size: 1.1rem; }
  .cta-section h2 { font-size: 1.17rem; }
  .card, .testimonial-card, .service-list li, .feature-grid li, .stats li {
    min-width: 98vw;
    padding: 14px 10px;
    font-size: 0.98rem;
  }
  .mobile-nav { padding: 0 6vw; }
  .cookie-modal { min-width: 96vw; }
}

/* END OF STYLE */
