/* ===============================
   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,
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,
main, 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 {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #FFFFFF;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFFFFF;
  color: #273346;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
img,svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #ED8B1E;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #324052;
}

/* ===============================
   COLORS & TYPOGRAPHY (BRAND)
   =============================== */
:root {
  --primary: #273346;
  --secondary: #CFD7DF;
  --accent: #ED8B1E;
  --light: #FFFFFF;
  --text: #273346;
  --muted: #779;
  --shadow: rgba(39,51,70,0.10);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.12;
}

h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4 {
  font-size: 1.125rem;
}
p, li, address, span {
  color: var(--text);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
strong {
  color: var(--accent);
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
em {
  font-style: italic;
  color: var(--primary);
}

/* Artistic/creative headline variation */
h1, h2 {
  text-shadow: 1px 3px 18px rgba(237,139,30,0.05),0 1px 0 #fff;
  position: relative;
}
h1:after, h2:after {
  content: '';
  display: block;
  width: 28px;
  height: 5px;
  background-color: var(--accent);
  border-radius: 3px;
  margin-top: 10px;
}

/* ===============================
   CONTAINER & LAYOUT
   =============================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Equally apply the required section spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 3px 24px var(--shadow);
  background: var(--light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(237,139,30,0.15);
  transform: translateY(-2px) scale(1.02);
}

.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;
  background: var(--secondary);
  color: var(--text);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(39,51,70,0.08);
  font-size: 1.05rem;
  margin-bottom: 20px;
  margin-top: 12px;
  min-width: 0;
  word-break: break-word;
}
.testimonial-card p {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 500;
}
.testimonial-card span {
  color: var(--text);
  font-size: 0.99rem;
  font-style: italic;
  margin-left: 8px;
}

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

.text-section {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
li {
  line-height: 1.6;
  font-size: 1rem;
}
dd {
  margin-bottom: 8px;
}

/* ===============================
   NAVIGATION HEADER
   =============================== */
header {
  width: 100%;
  background: var(--light);
  box-shadow: 0 4px 32px rgba(39,51,70,0.11);
  position: relative;
  z-index: 90;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: unset;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: var(--primary);
  font-size: 1.02rem;
  padding: 8px 8px;
  border-radius: 7px;
  transition: background .16s, color .18s;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  background: var(--accent);
  color: #FFF;
}
header .cta.primary {
  background: var(--accent);
  color: #FFF;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  border: none;
  border-radius: 18px 5px 18px 5px;
  box-shadow: 0 3px 16px rgba(237,139,30,0.09);
  padding: 12px 33px;
  margin-left: 20px;
  letter-spacing: .025em;
  cursor: pointer;
  transition: background .18s, box-shadow .18s, transform .18s;
  outline: none;
}
header .cta.primary:hover,
header .cta.primary:focus {
  background: #CFD7DF;
  color: var(--accent);
  box-shadow: 0 8px 20px rgba(39,51,70,0.10);
  transform: translateY(-2px) scale(1.05);
}
header img {
  height: 44px;
  min-width: 44px;
}

.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #FFF;
  font-size: 1.55rem;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  transition: background .18s;
  z-index: 101;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
}

@media (max-width: 1024px) {
  header .container {
    gap: 8px;
  }
  header nav a {
    font-size: 1rem;
    padding: 7px 6px;
  }
}
@media (max-width: 850px) {
  header nav {
    display: none !important;
  }
  header .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ===============================
   MOBILE MENU
   =============================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(39,51,70,0.97);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform .33s cubic-bezier(.62,.02,.3,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--accent);
  color: #FFF;
  border: none;
  font-size: 2rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  margin: 26px 30px 0 0;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(237,139,30,0.18);
  transition: background .18s;
  z-index: 10001;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--primary);
  color: #FFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 60px;
  margin-left: 34px;
}
.mobile-nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: 8px;
  transition: background .17s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
@media (max-width: 520px) {
  .mobile-nav {
    margin-left: 16px;
    gap: 18px;
  }
  .mobile-menu-close {
    margin-right: 10px;
  }
}
@media (max-width: 850px) {
  .mobile-menu {
    display: flex;
  }
}

/* ===============================
   SECTIONS, FEATURE, CARDS
   =============================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 650px) {
  section {
    padding: 24px 6px;
    margin-bottom: 36px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 3px 24px var(--shadow);
  background: var(--light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 270px;
  max-width: 100%;
  transition: box-shadow 0.3s, transform .2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(237,139,30,0.15);
  transform: translateY(-2px) scale(1.02);
}

/* ===============================
   ARTISTIC & CREATIVE ELEMENTS
   =============================== */
.cta.primary {
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 800;
  border: none;
  border-radius: 18px 5px 18px 5px;
  box-shadow: 0 4px 22px rgba(237,139,30,0.17);
  padding: 14px 36px;
  cursor: pointer;
  text-align: center;
  font-size: 1.08rem;
  transition: background .17s, color .17s, box-shadow .18s, transform .15s;
  margin-top: 12px;
  margin-bottom: 10px;
  outline: none;
  position: relative;
  overflow: hidden;
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(39,51,70,0.14);
  transform: scale(1.042) rotate(-1deg);
}

/* Artistic underline for cta */
.cta.primary::after {
  content: '';
  display: block;
  margin: 0 auto;
  margin-top: 7px;
  width: 60px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  opacity: .35;
}

ul li:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  margin-right: 13px;
  background-color: var(--accent);
  opacity: 0.21;
}
ul li.strong:before, ul li.active:before {
  background: var(--primary);
  opacity: 0.34;
}

/* Artistic Dots Behind Headings */
h1, h2 {
  position: relative;
}
h1::before, h2::before {
  content: '';
  display: block;
  position: absolute;
  left: -36px;
  top: 42%;
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .12;
  z-index: 1;
}
@media (max-width: 480px) {
  h1::before, h2::before {
    display: none;
  }
}

/* Colorful Accent bar styling (h1/h2:after defined above) */

/* ===============================
   TESTIMONIALS & QUOTES
   =============================== */
.testimonial-card {
  background: var(--secondary);
  color: var(--text);
  border-left: 10px solid var(--accent);
  margin-bottom: 24px;
  box-shadow: 0 2px 16px rgba(237,139,30,0.05);
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: italic;
  margin-right: 10px;
}
.testimonial-card span {
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.99rem;
  }
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 42px 0 22px 0;
  margin-top: 50px;
  width: 100%;
  box-shadow: 0 -8px 40px rgba(39,51,70,0.11);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  opacity: 0.86;
  padding: 5px 0;
  transition: color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
}
.footer-brand img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 18px rgba(237,139,30,0.12));
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  font-size: .98rem;
  opacity: .92;
}
.footer-contact a {
  color: var(--accent);
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #fff;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-brand {
    margin: 15px 0;
  }
}

/* ===============================
   SPACING, GAPS, FLEX ALIGNMENTS
   =============================== */
.card-container, .content-grid, .section, .feature-item, .testimonial-card, .text-image-section {
  gap: 20px;
}
.content-wrapper, .text-section, ul, ol {
  gap: 16px;
}

/* Large white space on bigger screens for artistic airy design */
@media (min-width: 1330px) {
  main .container {
    padding-left: 60px;
    padding-right: 60px;
  }
  section {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 700px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper, .text-section, ul, ol {
    gap: 9px;
  }
  .section {
    margin-bottom: 32px;
  }
  .testimonial-card {
    padding: 13px;
  }
}
.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;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===============================
   ARTISTIC DECOR (OPTIONAL BGS)
   =============================== */
section {
  position: relative;
  overflow: visible;
}
section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -60px;
  width: 160px;
  height: 80px;
  background: var(--accent);
  opacity: 0.08;
  border-radius: 60% 20% 50% 30% / 35% 55% 42% 27%;
  z-index: 0;
  pointer-events: none;
}
section:nth-child(even)::before {
  left: -60px;
  right: auto;
  background: var(--secondary);
  opacity: 0.11;
}
@media (max-width: 800px) {
  section:before {
    display: none;
  }
}

/* ===============================
   RESPONSIVE TYPOGRAPHY SCALE
   =============================== */
@media (max-width: 650px) {
  h1 {font-size: 1.55rem;}
  h2 {font-size: 1.2rem;}
  h3 {font-size: 1rem;}
}

/* ===============================
   BUTTONS & FORM ELEMENTS
   =============================== */
button, .cta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .18s, color .16s, transform .11s;
  outline: none;
}

button:focus-visible, .cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===============================
   COOKIE BANNER & MODAL
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10001;
  background: var(--primary);
  color: #FFF;
  width: 100%;
  padding: 22px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -3px 24px rgba(237,139,30,0.11);
  font-size: 1rem;
  animation: cookieBannerIn 0.55s cubic-bezier(.62,.02,.3,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  max-width: 600px;
  font-size: .98rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  padding: 8px 21px;
  border-radius: 13px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--accent);
  color: #fff;
  border: none;
  margin-left: 0;
  margin-right: 0;
  transition: background .18s, color .17s;
  cursor: pointer;
}
.cookie-banner button.cookie-settings {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--accent);
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: var(--accent);
  color: #FFF;
}
.cookie-banner button.reject {
  background: #CFD7DF;
  color: var(--primary);
  border: 2px solid var(--accent);
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: var(--primary);
  color: #FFF;
}
.cookie-banner button.accept {
  background: var(--accent);
  color: #fff;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: var(--primary);
  color: var(--accent);
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 7px;
    font-size: .97rem;
  }
  .cookie-banner button {
    font-size: .98rem;
  }
}

/* COOKIE MODAL OVERLAY */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,51,70, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12000;
  transition: opacity .25s;
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: var(--primary);
  border-radius: 21px;
  box-shadow: 0 8px 64px rgba(39,51,70,0.25);
  min-width: 335px;
  max-width: 94vw;
  padding: 36px 40px 36px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  animation: cookieModalIn .38s cubic-bezier(.5,.62,.3,1);
}
@keyframes cookieModalIn {
  from { transform: scale(.87); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--accent);
  color: #FFF;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 2px 11px rgba(237,139,30,0.13);
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-modal h2 {
  margin-bottom: 8px;
  font-size: 1.28rem;
  color: var(--primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
}
.cookie-category input[type="checkbox"]:disabled + label {
  color: #A8A8A8;
  font-style: italic;
}
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 10px;
}
.cookie-modal-actions button {
  padding: 8px 23px;
  border-radius: 13px;
  font-size: 1rem;
  background: var(--accent);
  color: #FFF;
  border: none;
  transition: background .16s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--primary);
  color: var(--accent);
}

@media (max-width: 460px) {
  .cookie-modal-content {
    min-width: 0;
    padding: 18px 8px 24px 13px;
    font-size: .98rem;
    gap: 9px;
  }
  .cookie-modal h2 { font-size: 1.11rem; }
}

/* ===============================
   MISC. TYPOGRAPHY
   =============================== */
address {font-style: normal;}

/* ===============================
   FORMS (if present, for future use)
   =============================== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 2px solid var(--secondary);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.18s;
  background: #f8f9fc;
  color: var(--primary);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 4px;
  color: var(--primary);
}

/* ===============================
   NO GRID! FLEXBOX ONLY
   =============================== */
/* (Enforced—see all .container, .card-container, .content-grid, etc above.) */

/* ===============================
   SCROLLBAR ARTISTIC
   =============================== */
::-webkit-scrollbar {
  width: 12px;
  background: var(--secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 6px;
}

/* ===============================
   ANIMATIONS & MICRO-INTERACTIONS
   =============================== */
.cta.primary, button, .card, .testimonial-card, .mobile-menu, .cookie-banner, .cookie-modal-content {
  transition: all .18s cubic-bezier(.45,.32,.26,1);
}
.card:hover::before {
  opacity: .18;
  filter: blur(3px);
}

/* ===============================
   SELECTION COLOR
   =============================== */
::selection {
  background: var(--accent);
  color: #fff;
}

/* ===============================
   END OF FILE
   =============================== */
