/* 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,
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 {
  scroll-behavior: smooth;
}
body {
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #223044;
  background: #FFFFFF;
  min-height: 100vh;
  line-height: 1.6;
  word-break: break-word;
  letter-spacing: 0.01em;
}
:root {
  --primary: #223044;
  --secondary: #FFFFFF;
  --accent: #F08A24;
  --secondary-alt: #F1F1F1;
  --shadow-card: 0 4px 20px rgba(34, 48, 68, 0.09);
  --radius: 12px;
  --radius-lg: 22px;
  --shadow-lg: 0 8px 32px rgba(34, 48, 68, 0.17);
  --transition: all 0.24s cubic-bezier(0.4, 0.12, 0.48, 1);
}

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

h1, h2, h3, h4, .cta-primary, .footer-menu, th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}
h1 { font-size: 2.25rem; margin-bottom: 24px;  }
h2 { font-size: 1.5rem; margin-bottom: 24px; }
h3 { font-size: 1.125rem; margin-bottom: 16px; }
h4 { font-size: 1rem; margin-bottom: 8px; }
p, ul, ol, dl, dd { font-size: 1rem; margin-bottom: 18px; }
strong, b { font-weight: 600; }
a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.18s;
}
a:hover, a:focus {
  color: var(--accent);
}
ul, ol {
  margin-left: 26px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
  font-family: 'Roboto', Arial, sans-serif;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
  margin-top: 10px;
}
th, td {
  border: 1.5px solid #e2e7ee;
  padding: 12px 16px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: var(--secondary-alt);
}

/* CONTAINER SYSTEM */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 22px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 830px;
  margin: 0 auto;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: var(--secondary);
  box-shadow: 0 2px 12px rgba(34,48,68,0.07);
  position: sticky;
  top: 0; 
  z-index: 50;
}
nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 22px;
  padding: 16px 0 16px 0;
}
nav img {
  height: 36px; 
  margin-right: 12px;
  vertical-align: middle;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 4px;
  transition: var(--transition);
  line-height: 1.2;
  border: none;
}
nav a:hover, nav a:focus {
  background: var(--secondary-alt);
  color: var(--accent);
}
.cta-primary {
  background: var(--accent);
  color: var(--secondary);
  padding: 12px 32px;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-card);
  border: none;
  margin-left: 10px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: var(--transition);
}
.cta-primary:hover, .cta-primary:focus {
  background: #CB6D0D;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(240,138,36,0.13);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 2.1rem;
  width: 46px;
  height: 46px;
  cursor: pointer;
  position: absolute;
  right: 22px;
  top: 16px;
  z-index: 80;
  box-shadow: var(--shadow-card);
  transition: background 0.19s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #CB6D0D;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 48, 68, 0.955);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 120;
  transform: translateX(-100vw);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.active {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.25rem;
  margin: 28px 36px 12px 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 140;
}
.mobile-menu-close:hover {color: #fff;}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 36px 42px;
}
.mobile-nav a {
  color: var(--secondary);
  background: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  padding: 10px 0 10px 0;
  border-radius: 0;
  transition: color 0.17s, background 0.19s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--accent);
  background: none;
}

@media (max-width: 1024px) { 
  nav { flex-wrap: wrap; }
  nav a { font-size: 0.98rem; }
}
@media (max-width: 900px)  {
  nav { gap: 12px; }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 12px;
    right: 22px;
    z-index: 100;
  }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* HERO, GENERAL LAYOUTS & SPACING */
.service-cards, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card, .blog-post {
  background: var(--secondary-alt);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 30px 22px;
  flex: 1 1 240px;
  min-width: 230px;
  max-width: 380px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  border: 2.5px solid #e2e7ee;
  transition: box-shadow 0.23s, border-color 0.21s, transform 0.22s;
}
.service-card:hover, .blog-post:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.025);
}
.service-card h3, .blog-post h3 {
  color: var(--primary);
  font-size: 1.17rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-bottom: 12px;
}
.service-card .price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
  align-self: flex-end;
  margin-top: auto;
  background: #fff6ef;
  border-radius: 8px;
  padding: 6px 16px;
}
.blog-post .tag {
  background: var(--primary);
  color: #fff;
  padding: 3px 14px;
  border-radius: 22px;
  font-size: 0.93rem;
  margin-top: auto;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* VISUAL PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.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: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: #F9FAFC;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border-left: 5px solid var(--accent);
  margin-bottom: 20px;
  width: 100%;
  max-width: 700px;
  transition: box-shadow 0.21s, border 0.21s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(34,48,68,.11);
  border-left-color: #CB6D0D;
}
.testimonial-card strong {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
}
.testimonial-card span {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-left: 14px;
  font-size: 1.15rem;
}
.testimonial-card p {
  font-family: 'Roboto', Arial, sans-serif;
  color: #223044;
  font-size: 1rem;
  margin: 8px 0 0 0;
}

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

/* FOOTER */
footer {
  background: var(--secondary-alt);
  color: var(--primary);
  padding: 0 0 22px 0;
}
footer .container {
  padding: 0 22px;
}
footer .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.footer-menu {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.footer-menu a {
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
  transition: background 0.18s;
  font-weight: 600;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--accent);
  color: #fff;
}
.footer-info p, .footer-info a {
  font-size: 0.98rem;
  color: #4f5c6d;
}
.footer-info a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.19s;
}
.footer-info a:hover {
  color: var(--accent);
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.footer-social img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 1px 5px rgba(120, 120, 120, 0.085);
  transition: box-shadow 0.16s, transform 0.16s;
}
.footer-social img:hover {
  box-shadow: 0 6px 18px 0 rgba(34,64,82,0.11);
  transform: scale(1.07);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #223044;
  color: #fff;
  font-size: 1rem;
  z-index: 9999;
  width: 100vw;
  min-height: 0;
  box-shadow: 0 -4px 18px rgba(34,48,68,.17);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 18px 20px 18px;
  gap: 16px;
  transition: transform 0.27s cubic-bezier(.8,.23,.31,1), opacity 0.12s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner strong {
  color: var(--accent);
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 5px;
}
.cookie-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  padding: 10px 20px;
  margin: 0;
  box-shadow: 0 0.7px 9px rgba(34,64,82,0.07);
  cursor: pointer;
  transition: background 0.21s, color 0.23s, transform 0.21s;
}
.cookie-accept {
  background: var(--accent);
  color: #fff;
}
.cookie-accept:hover {
  background: #CB6D0D;
  color: #fff;
  transform: translateY(-2px);
}
.cookie-reject {
  background: #fff;
  color: var(--primary);
}
.cookie-reject:hover {
  background: #e3e9ef;
  color: var(--accent);
}
.cookie-settings {
  background: #2E4052;
  color: #fff;
}
.cookie-settings:hover {
  background: #425377;
}
.cookie-banner a {
  color: #F08A24;
  text-decoration: underline;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 48%;
  transform: translate(-50%, 60%);
  width: calc(100vw - 42px);
  max-width: 395px;
  background: #fff;
  color: #223044;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px rgba(0,0,0,.21);
  z-index: 10000;
  padding: 24px 24px 26px 24px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: opacity 0.16s, transform 0.25s;
  pointer-events: auto;
  visibility: visible;
}
.cookie-modal.hide {
  opacity: 0;
  transform: translate(-50%, 150%);
  pointer-events: none;
  visibility: hidden;
}
.cookie-modal h2 {
  color: var(--accent);
  font-size: 1.13rem;
  margin-bottom: 7px;
}
.cookie-category {
  background: #f7f7fa;
  border-radius: 8px;
  padding: 9px 15px;
  margin-bottom: 7px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.cookie-switch {
  display: inline-block;
  width: 38px;
  height: 22px;
  position: relative;
  vertical-align: middle;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 38px;
  height: 22px;
  cursor: pointer;
}
.cookie-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--accent);
  border-radius: 22px;
  transition: background 0.15s;
}
.cookie-switch input:checked + .slider {
  background: var(--primary);
}
.cookie-switch .slider:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3.5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.17s;
}
.cookie-switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  border: none;
  border-radius: var(--radius);
  padding: 8px 20px;
  transition: background .19s, color .15s, transform 0.19s;
  cursor: pointer;
}
.cookie-save {
  background: var(--accent);
  color: #fff;
}
.cookie-save:hover {
  background: #CB6D0D;
}
.cookie-cancel {
  background: #fff;
  color: var(--primary);
}

@media (max-width: 768px) {
  .cookie-modal {
    bottom: 36%;
    width: calc(100vw - 16px);
    min-width: 0;
    max-width: 99vw;
  }
}

/* FAQ PAGE DL */
dl {
  margin-bottom: 22px;
}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--primary);
  margin-top: 18px;
}
dd {
  margin-left: 0;
  margin-bottom: 14px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #26324a;
}

/* PRICING TABLE */
table {
  background: #fbfbfd;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
@media (max-width: 768px) {
  th, td { font-size: 0.98rem; }
  table { font-size: 0.98rem; }
}

/* GEOMETRIC STRUCTURED ELEMENTS */
section {
  border-bottom: 2px solid #f1f1f2;
  background: #fff;
  border-radius: 0 0 32px 32px;
}
section:last-child {
  border-bottom: none;
}
h1, h2, h3 {
  text-transform: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: normal;
}
h1, h2 {
  border-left: 6px solid var(--accent);
  padding-left: 18px;
  margin-bottom: 18px;
  background: linear-gradient(90deg,#fff 85%, #fff8ef 100%);
}
@media (max-width: 650px) {
  section {
    border-radius: 0 0 16px 16px;
    padding: 32px 6px;
  }
  h1, h2 { font-size: 1.13rem; padding-left:11px; }
  nav a, .footer-menu a { font-size: 0.93rem; }
}

/* FORMS (for any custom forms if present in blog/contact/future) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #c9ced3;
  border-radius: var(--radius);
  padding: 11px 15px;
  margin-bottom: 17px;
  width: 100%;
  background: #fff;
  transition: border .18s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  background: #fff8ef;
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  padding: 10px 30px;
  cursor: pointer;
  transition: var(--transition);
}
button:hover, button:focus {
  background: #CB6D0D;
  color: #fff;
}

/* RESPONSIVE FLEX LAYOUTS */
@media (max-width: 1024px) {
  .service-cards,
  .card-container,
  .content-grid,
  .blog-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 5px;
  }
  .service-cards,
  .blog-list {
    flex-direction: column;
    gap: 18px;
  }
  .service-card, .blog-post {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    padding: 14px 6px;
    font-size: 0.99rem;
  }
  .content-wrapper {
    gap: 18px;
  }
  .footer-social img { width: 24px; height: 24px; }
}

/* VISUAL HIERARCHY, SPACING, SHADOWS, EFFECTS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex; flex-wrap: wrap; gap: 24px;  /* mandatory */
}
.card {
  margin-bottom: 20px; position: relative;   /* mandatory */
}
.content-grid {
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; /* mandatory */
}
.text-image-section {
  display: flex; align-items: center; gap: 30px; flex-wrap: wrap; /* mandatory */
}
.testimonial-card {
  display: flex; align-items: center; gap: 20px; padding: 20px; /* mandatory */
}
.feature-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px; /* mandatory */
}

/* MICRO-INTERACTIONS */
.cta-primary, button, .mobile-menu-toggle {
  transition: background 0.16s, color 0.14s, transform 0.17s, box-shadow 0.21s;
}
.cta-primary:active, button:active, .mobile-menu-toggle:active {
  transform: scale(0.97);
}

/* Utilities */
.d-none { display: none !important; }
.mt-2 { margin-top: 8px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mt-4 { margin-top: 16px !important; }
.mb-4 { margin-bottom: 16px !important; }
.text-center { text-align: center !important; }

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
  background: #f6fafd;
}
::-webkit-scrollbar-thumb {
  background: #e9e9ef;
  border-radius: 22px;
}

/* OUTLINE FOR FOCUS */
:focus {
  outline: 2.2px solid var(--accent);
  outline-offset: 2.1px;
}

/* ENSURE NO GRID PROPERTIES */
/* All layout is done using flexbox - no grid or columns */