/*====================================================
  CSS RESET & NORMALIZATION
====================================================*/
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,
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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F6F7F8;
  color: #2F4858;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2F4858;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  margin-left: 24px;
}
strong, b {
  font-weight: 700;
}
* {
  box-sizing: inherit;
}

/*====================================================
  FONT FACES (Load from Google Fonts preferably)
====================================================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

/*====================================================
  ROOT VARIABLES (with graceful fallbacks)
====================================================*/
:root {
  --brand-primary: #2F4858;
  --brand-secondary: #FFD166;
  --brand-accent: #F6F7F8;
  --brand-dark: #17222d;
  --color-white: #fff;
  --color-error: #dc3545;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
}

/*====================================================
  CREATIVE ARTISTIC PALETTE
====================================================*/
body {
  background: var(--brand-accent);
}

/* Section, Card, Spacing Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 28px 0 rgba(47, 72, 88, 0.08), 0 1.5px 8px 0 rgba(47,72,88,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 260px;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(47, 72, 88, 0.13), 0 4px 16px 0 rgba(255,209,102,0.15);
  transform: translateY(-4px) scale(1.014);
}

.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;
  background: #fff3d8;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px 0 rgba(255,209,102,0.11);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  color: #2F4858;
  min-width: 260px;
  flex: 1 1 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-white);
  box-shadow: 0 1.5px 6px 0 rgba(47,72,88,0.08);
  border-radius: var(--radius-md);
  padding: 24px 18px 20px 18px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover {
  box-shadow: 0 5px 20px 0 rgba(255,209,102,0.10);
  background: #fffbe9;
  transform: scale(1.028);
}

/*****
 CREATIVE ARTISTIC STYLING
*****/
section {
  margin-bottom: 60px;
  padding: 40px 0;
  position: relative;
}
.hero-block {
  min-height: 280px;
  background: linear-gradient(107deg, rgba(47,72,88,0.95) 77%, rgba(255,209,102,0.88) 100%);
  color: var(--color-white);
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  align-items: flex-start;
  justify-content: center;
  position: relative;
  margin-bottom: 36px;
  box-shadow: 0 3px 32px 0 rgba(47,72,88,0.13);
}
.hero-block h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  color: #FFD166;
  line-height: 1.15;
}
.hero-block p {
  font-size: 1.19rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 18px;
  color: var(--color-white);
}

/*****
 TYPOGRAPHY
*****/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #2F4858;
}
h1 { font-size: 2.4rem; margin-bottom: 18px; }
h2 { font-size: 1.8rem; margin-bottom: 16px; color: #2F4858; }
h3 { font-size: 1.25rem; margin-bottom: 10px; color: #2F4858; }
h4, h5, h6 { font-size: 1.12rem; margin-bottom: 8px; }
p, li { font-size: 1rem; color: #384d5c; line-height: 1.7; }

/*****
 BUTTONS & CALLS TO ACTION
*****/
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFD166;
  color: #2F4858;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 32px;
  box-shadow: 0 2px 8px 0 rgba(255,209,102,0.19);
  margin: 8px 0;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.18s, box-shadow 0.18s;
  text-shadow: 0 2px 2px rgba(0,0,0,0.02);
  letter-spacing: 0.03em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff3d8;
  color: #2F4858;
  transform: scale(1.045) translateY(-3px);
  box-shadow: 0 8px 24px 0 rgba(255,209,102,0.26);
  outline: none;
}

/*****
 NAVIGATION
*****/
header {
  background: #fff;
  box-shadow: 0 6px 24px 0 rgba(47, 72, 88, 0.07);
  z-index: 100;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
}
.main-nav a {
  margin-right: 8px;
  color: var(--brand-primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFD166;
  color: #2F4858;
}
.main-nav a.btn-primary {
  margin-left: auto;
  margin-right: 0;
}
.main-nav img {
  height: 44px;
  margin-right: 18px;
}
.mobile-menu-toggle {
  display: none;
  background: #FFD166;
  color: #2F4858;
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 16px;
  z-index: 1050;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(47,72,88,0.09);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover {
  background: #fff3d8;
  color: #2F4858;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 370px;
  height: 100vh;
  background: #2F4858;
  transform: translateX(120%);
  transition: transform 0.33s cubic-bezier(.81,.01,.24,.99);
  box-shadow: -2px 3px 28px 0 rgba(47,72,88,0.15);
  padding: 0 0 24px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FFD166;
  color: #2F4858;
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin: 16px;
  align-self: flex-end;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(255,209,102,0.13);
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.mobile-menu-close:hover { background: #fff3d8; } 
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 32px;
  width: 100%;
}
.mobile-nav a {
  color: #FFD166;
  background: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  padding: 14px 10px 10px 3px;
  border-bottom: 1px solid #ffd16633;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff3d8;
  background: #2F4858;
  outline: none;
}

/*****
  FOOTER
*****/
footer {
  background: #2F4858;
  color: #fff;
  padding: 38px 0 0 0;
  margin-top: 60px;
}
footer p {
color: white;}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding-bottom: 16px;
}
.footer-nav a {
  color: #FFD166;
  transition: color 0.2s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #17222d;
}
.footer-contact {
  text-align: center;
  color: #fffbe9;
  padding: 10px 10px 28px 10px;
  font-size: 0.97rem;
}

/*****
  SPECIAL CARDS, PANELS & HIERARCHY
*****/
.service-item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 13px 0 rgba(47,72,88,0.08);
  padding: 24px 18px 18px 18px;
  margin-bottom: 20px;
  text-align: left;
  flex: 1 1 260px;
  transition: box-shadow 0.22s,transform 0.19s;
  min-width: 220px;
}
.service-item:hover {
  box-shadow: 0 7px 26px 0 rgba(255,209,102,0.16);
  background: #fffbe9;
  transform: translateY(-2px) scale(1.018);
}
.project-item {
  background: #F6F7F8;
  border-left: 7px solid #FFD166;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(47,72,88,0.06);
  min-width: 270px;
}
.cta-panel {
  background: linear-gradient(108deg,#FFD166 85%,#fff0b8 100%);
  color: #2F4858;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px 0 rgba(255,209,102,0.16);
  padding: 32px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 220px;
}
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #fffbe9;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 15px 0 rgba(255,209,102,0.14);
  padding: 28px 24px;
  min-width: 220px;
}
.address-details {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 1.5px 6px 0 rgba(47,72,88,0.07);
  padding: 18px 18px 12px 18px;
  margin-bottom: 20px;
  min-width: 220px;
}

/*****
  LISTS WITH ARTISTIC FLAIR
*****/
ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}
ul li:before {
  content: '\2605 ';
  color: #FFD166;
  position: absolute;
  left: 0.6em;
  font-size: 1.01em;
}
ul.unique {
  margin-left: 0;
}

ol {
  margin-left: 20px;
  margin-bottom: 20px;
  counter-reset: styled;
}
ol li {
  list-style: none;
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}
ol li:before {
  counter-increment: styled;
  content: counter(styled)'. ';
  position: absolute;
  color: #FFD166;
  font-weight: bold;
  left: 0;
  top: 0;
}

/*****
  MICRO-ANIMATIONS, TRANSITIONS
*****/
a, .btn-primary, .card, .feature-item, .service-item {
  transition: background 0.17s, color 0.16s, box-shadow 0.2s, transform 0.18s;
}

/*****
  TESTIMONIALS, FEEDBACK CARDS
*****/
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-top: 15px;
  margin-bottom: 20px;
}
.testimonial-card {
  background: #fff3d8;
  color: #2F4858;
  box-shadow: 0 2px 8px 0 rgba(255,209,102,0.12);
  border-left: 6px solid #FFD166;
  border-radius: var(--radius-md);
  position: relative;
  margin-bottom: 20px;
  flex: 1 1 240px;
  min-width: 220px;
  z-index: 1;
  transition: box-shadow 0.16s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px 0 rgba(255,209,102,0.17);
  transform: scale(1.012) translateY(-2px);
}
.testimonial-card strong {
  display: block;
  margin-top: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.00rem;
  letter-spacing: 0.014em;
  color: #2F4858;
  font-weight: bold;
}

/*****
  SPECIAL LAYOUTS
*****/
.feature-grid, .service-list, .service-overview, .planning-services, .unique-points-grid, .project-list, .workflow-description, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.features, .workflow-description, .content-wrapper.features {
  gap: 32px;
}
@media (max-width: 1020px) {
  .container { padding: 0 8px; }
  .main-nav { flex-wrap: wrap; gap: 9px; padding: 18px 8px; }
}
@media (max-width: 920px) {
  .feature-grid, .service-list, .service-overview, .planning-services, .unique-points-grid, .project-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .main-nav img { height: 40px; }
}

/*****
  MOBILE FIRST - RESPONSIVE ADAPTATION
*****/
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .content-wrapper, .content-wrapper.features, .content-wrapper.testimonials, .project-list, .feature-grid, .service-list, .service-overview, .planning-services, .unique-points-grid, .workflow-description {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .section, section {
    padding: 26px 0;
  }
  .hero-block {
    padding: 32px 14px;
    margin-bottom: 20px;
  }
  .testimonial-card, .feature-item, .service-item, .project-item, .cta-panel, .contact-info-panel, .address-details {
    min-width: 0;
    padding: 18px 12px;
  }
  .footer-nav { gap: 9px; font-size: 0.93rem; }
  .container {
    padding: 0 2px;
  }
  .text-image-section { flex-direction: column; gap: 16px; }
}

@media (max-width: 540px) {
  h1 { font-size: 1.39rem; }
  h2 { font-size: 1.08rem; }
  .content-wrapper, .content-wrapper.features, .card-container {
    padding: 0;
    gap: 12px;
  }
  .section, section {
    padding: 12px 0;
    margin-bottom: 22px;
  }
  .cta-panel { padding: 14px 6px; }
  .main-nav img { height: 32px; }
  .mobile-menu { max-width: 94vw; }
}

/*****
  HOVER, FOCUS & INTERACTION
*****/
a:focus, button:focus, .btn-primary:focus {
  outline: 2px solid #FFD166;
  outline-offset: 2px;
}

/*****
  COOKIE CONSENT BANNER & MODAL
*****/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40000;
  background: #2F4858;
  color: #fffbe9;
  width: 100vw;
  padding: 28px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  box-shadow: 0 -6px 32px 0 rgba(47,72,88,0.12);
  font-size: 1.06rem;
  transition: transform 0.3s cubic-bezier(.6,0,.18,1.01);
}
.cookie-banner.hidden { transform: translateY(110%); pointer-events: none; opacity: 0; }
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s;
  margin-right: 3px;
  margin-top: 4px;
  font-size: 1rem;
}
.cookie-banner .accept {
  background: #FFD166;
  color: #2F4858;
  box-shadow: 0 2px 8px 0 rgba(255,209,102,0.13);
}
.cookie-banner .accept:hover { background: #fff3d8; color: #2F4858; }
.cookie-banner .reject {
  background: #ca3c32;
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(202,60,50,0.17);
}
.cookie-banner .reject:hover { background: #e85134; }
.cookie-banner .settings {
  background: #fff;
  color: #2F4858;
  border: 1.5px solid #FFD166;
}
.cookie-banner .settings:hover { background: #FFD166; color: #2F4858; }

/*****
  COOKIE PREFERENCES MODAL
*****/
.cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 41000;
  background: rgba(47,72,88,0.61);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 370px;
  width: 96vw;
  padding: 32px 22px 26px 22px;
  box-shadow: 0 8px 44px 0 rgba(47,72,88,0.23);
  color: #2F4858;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h2, .cookie-modal-content h3 {color: #2F4858;}
.cookie-modal-content .modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  border: none;
  color: #FFD166;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 1;
}
.cookie-modal-options { display: flex; flex-direction: column; gap: 11px; }
.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-toggle-row label {
  flex: 1;
}
.cookie-switch {
  width: 42px;
  height: 22px;
  background: #FFD166;
  border-radius: 14px;
  position: relative;
  display: inline-block;
  margin-right: 7px;
  transition: background 0.18s;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch .slider {
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.17s, background 0.17s;
}
.cookie-switch input:checked + .slider {
  left: 22px;
  background: #2F4858;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-actions button {
  padding: 10px 22px;
  border-radius: 7px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  cursor: pointer;
  background: #FFD166;
  color: #2F4858;
  transition: background 0.19s, color 0.18s;
}
.cookie-modal-actions button.cancel {
  background: #fff;
  border: 1.5px solid #FFD166;
  color: #2F4858;
}
.cookie-modal-actions button.cancel:hover {
  background: #FFD166;
}
.cookie-modal-actions button.save:hover {
  background: #fff3d8;
  color: #2F4858;
}

/*****
  MISC/UTILITY
*****/
::-webkit-scrollbar {
  width: 10px; background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #FFD166;
  border-radius: 6px;
}

/*****
  PRINTABLE COMMUNICATIVE COMPONENTS
*****/
.confirmation-block {
  background: #fffbe9;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 24px 0 rgba(255,209,102,0.13);
  padding: 30px 18px;
  text-align: center;
  margin: 0 auto 32px auto;
  max-width: 540px;
}
.confirmation-block h1 {
  color: #2F4858;
  margin-bottom: 17px;
}
.confirmation-block a.btn-primary {
  margin-top: 22px;
}

/*****
  ARTISTIC FONTS
*****/
/* Artistic headings: handwritten vibe on certain elements */
.hero-block h1, h1.display-art, h2.display-art {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.019em;
  text-transform: none;
  font-weight: 900;
}

/*****
  Z-INDEX LAYERS
*****/
header { z-index: 100; }
.main-nav { z-index: 110; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 40000; }
.cookie-modal { z-index: 41000; }

/*****
  FOCUS STATES ENSURED
*****/
a:focus,
button:focus,
input:focus,
.btn-primary:focus,
.cookie-banner button:focus,
.cookie-modal .modal-close:focus {
  outline: 2.5px dashed #FFD166;
  outline-offset: 2px;
  background: #fff3d8;
}

/*****
  REMOVE GRID FEATURES - ONLY FLEX
*****/
/* No display:grid, grid.*, columns.* or column-* in any block. All layouts are flexbox-based. */
