/* --- 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,
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 {
  line-height: 1.5;
  background: #F7F8FA;
  color: #232B38;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
 
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  margin-left: 24px;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}


/* --- BRAND COLORS & FONTS --- */
:root {
  --primary: #232B38;
  --secondary: #B8BFC6;
  --accent: #FFD200;
  --background: #F7F8FA;
  --white: #FFF;
  --box-shadow: 0 4px 32px rgba(35,43,56,0.09), 0 1.5px 4px rgba(35,43,56,0.05);
  --radius: 20px;
}

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

body,
p, li, ul, ol, span, a, label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
  line-height: 1.12;
}
h1 { font-size: 2.8rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4 { font-size: 1.15rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
}

strong {
  font-weight: 700;
}

/* --- REUSABLE CONTAINERS & FLEXBOX LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--box-shadow);
}
.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: var(--accent);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(35,43,56,0.11);
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  font-size: 1.1rem;
  transition: box-shadow 0.25s;
}
.testimonial-card:hover{
  box-shadow: 0 10px 32px 0 rgba(35,43,56,0.17);
}
.testimonial-card p {
  flex: 1 1 auto;
  color: var(--primary);
  font-size: 1.08rem;
  margin-bottom: 0;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  margin-left: 12px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: 17px;
  box-shadow: var(--box-shadow);
  padding: 28px 25px 26px 25px;
  min-width: 230px;
  min-height: 200px;
  max-width: 320px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.21s, transform 0.18s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
  filter: drop-shadow(0 1px 3px #b4bac6cc);
}
.feature-item:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 12px 36px 0 rgba(35,43,56,0.16);
  background: #fffdeb;
}

/* --- RESPONSIVE FLEXBOX LAYOUT ADJUSTMENTS --- */
@media (max-width: 1020px) {
  .feature-grid, .content-grid, .card-container {
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  .feature-grid, .content-grid, .card-container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .feature-item {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .container, .content-wrapper, .section {
    padding-left: 8px;
    padding-right: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* --- HEADER & MAIN NAVIGATION --- */
header {
  width: 100%;
  background: linear-gradient(90deg, #FFE570 0%, #FFD200 100%);
  box-shadow: 0 2px 10px rgba(35,43,56,0.06);
  padding: 0;
  position: relative;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 0;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  padding: 6px 12px;
  color: var(--primary);
  border-radius: 7px;
  transition: background 0.18s, color 0.17s;
  position: relative;
  z-index: 1;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--accent);
  background: #232B3810;
}
.main-nav .cta.primary {
  background: var(--primary);
  color: var(--accent);
  font-weight: 900;
  padding: 8px 25px !important;
  border-radius: 14px;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 16px #232b380d;
  transition: background 0.2s, color 0.2s, box-shadow 0.26s;
}
.main-nav .cta.primary:hover {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 5px 20px #232b3838;
}

/* --- MOBILE MENU (BURGER) --- */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--accent);
  font-size: 2rem;
  border-radius: 11px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.17s, box-shadow 0.18s;
  box-shadow: 0 1px 8px #232b3808;
  z-index: 111;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 5px 20px #232b3840;
}

/* --- HIDE MAIN NAV ON MOBILE --- */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  box-shadow: -2px 0 45px 0 rgba(35,43,56,0.13);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.86,0,0.07,1);
  display: flex;
  flex-direction: column;
  padding: 32px 26px 10px 32px;
  gap: 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.5rem;
  align-self: flex-end;
  margin-bottom: 5px;
  cursor: pointer;
  z-index: 201;
  transition: color 0.17s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 16px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 10px;
  transition: background 0.2s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD20018;
  color: var(--accent);
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}



/* --- SECTION/PAGE HERO --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 30px;
  box-shadow: 0 2px 30px 0 rgba(35,43,56,0.04);
  background: var(--white);
  position: relative;
}
section .cta.primary {
  margin-top: 18px;
}

/* --- LINKS, BUTTONS, CTA --- */
.cta,
button.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 800;
  background: var(--primary);
  color: var(--accent);
  border-radius: 14px;
  min-width: 140px;
  padding: 12px 28px;
  margin-top: 16px;
  box-shadow: 0 2px 15px #232b3808;
  transition: background 0.22s, color 0.16s, box-shadow 0.21s, transform 0.18s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  outline: none;
  position: relative;
}
.cta.primary {
  background: var(--accent);
  color: var(--primary);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 6px 24px #b8bfc6cc;
  transform: translateY(-2px) scale(1.03);
}
.cta:not(.primary):hover, .cta:not(.primary):focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 6px 18px #FFD20053;
  transform: translateY(-2px) scale(1.03);
}

/* --- CARDS, BOXES, ETC. --- */
.text-section {
  margin-bottom: 24px;
}
.text-section p, .text-section ul, .text-section ol {
  margin-bottom: 13px;
  font-size: 1.07rem;
  line-height: 1.68;
  color: var(--primary);
}
.text-section li {
  margin-bottom: 9px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--box-shadow);
  padding: 30px 22px 28px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 12px 36px 0 rgba(35,43,56,0.09);
  transform: translateY(-4px) scale(1.02);
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--accent);
  padding-top: 38px;
  padding-bottom: 28px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-shadow: 0 -4px 54px 0 rgba(35,43,56,0.09);
  margin-top: 58px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 34px;
}
.logo-footer img {
  height: 38px;
  width: auto;
  margin-bottom: 7px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-right: 22px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  transition: color 0.17s;
  padding: 4px 0;
}
.footer-nav a:hover {
  color: var(--secondary);
}
.footer-contact {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--accent);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-top: 5px;
}
.footer-contact a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
}
.footer-contact a:hover {
  color: var(--secondary);
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: row;
    gap: 16px;
    margin-right: 0;
    margin-bottom: 12px;
  }
}


/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 9px;
  right: 9px;
  bottom: 9px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 20px;
  box-shadow: 0 4px 32px #232B3830;
  z-index: 400;
  padding: 27px 26px 19px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.06rem;
  animation: slideInBanner 0.71s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes slideInBanner {
  from { opacity: 0; transform: translateY(90px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: var(--primary);
  margin-bottom: 5px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 5px;
}
.cookie-banner button {
  border-radius: 10px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 20px;
  margin-right: 0;
  margin-bottom: 0;
  cursor: pointer;
  background: var(--primary);
  color: var(--accent);
  transition: background 0.18s, color 0.15s, box-shadow 0.19s;
  box-shadow: 0 2px 8px #232B3820;
}
.cookie-banner button.cookie-reject {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
.cookie-banner button.cookie-settings {
  background: var(--accent);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width: 600px) {
  .cookie-banner { padding: 18px 6px 15px 10px; font-size: 0.99rem; }
  .cookie-banner .cookie-btns { flex-direction: column; gap: 9px; }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  inset: 0 0 0 0;
  background: rgba(35,43,56,0.38);
  z-index: 401;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.33s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 10px 40px #232B3833;
  padding: 35px 24px 25px 24px;
  min-width: 306px;
  max-width: 95vw;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal-content h2 {
  font-size: 1.55rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 13px;
}
.cookie-modal-content label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--primary);
  margin-right: 8px;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--primary);
  width: 17px; height: 17px;
}
.cookie-modal-content .modal-btns {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
.cookie-close-btn {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary);
  position: absolute;
  top: 23px;
  right: 28px;
  cursor: pointer;
  z-index: 1;
}
.cookie-close-btn:hover {
  color: var(--accent);
}


/* --- FORMS, CONTACT PAGE --- */
form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}
input, textarea, select {
  background: var(--white);
  border: 1.5px solid var(--secondary);
  border-radius: 11px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  padding: 11px 14px;
  font-size: 1rem;
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--accent);
}

.contact-details p img {
  width: 23px;
  height: 23px;
  margin-right: 9px;
  vertical-align: middle;
}

/* --- MICRO-INTERACTIONS & EFFECTS --- */
section, .card, .feature-item, .cta, .testimonial-card, .cookie-banner, .cookie-modal-content {
  transition: box-shadow 0.21s, transform 0.17s, background 0.21s, color 0.17s;
}

/* --- CUSTOM ARTISTIC TOUCHES --- */
.feature-item:before {
  content: '';
  display: block;
  position: absolute;
  left: -18px;
  top: -18px;
  width: 45px; height: 45px;
  border-radius: 99px;
  background: rgba(255,210,0,0.19);
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}
.feature-item:hover:before {
  opacity: 0.8;
  background: rgba(255,210,0,0.34);
}
 

/* --- Some unique hand-drawn artistic soft shadow background behind hero titles */
section .container > .content-wrapper > h1, section .container > .content-wrapper > h2 {
  position: relative;
  z-index: 2;
}
section .container > .content-wrapper > h1:after, section .container > .content-wrapper > h2:after {
  content: '';
  display: block;
  position: absolute;
  left: -14px;
  top: 45%;
  width: 75%;
  height: 35%;
  background: #FFD20033;
  border-radius: 23px 210px 40px 110px;
  z-index: -1;
  filter: blur(12px);
}

 
 

@media (max-width: 768px) {
  section:before, section:after {
    display: none;
  }
  section .container > .content-wrapper > h1:after, section .container > .content-wrapper > h2:after {
    width: 95%;
    left: -9px;
    top: 52%;
  }
}

/* --- MISC --- */
::-webkit-scrollbar {
  width: 10px;
  border-radius: 7px;
  background: var(--secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

hr {
  border: none;
  border-top: 1px solid #B8BFC6;
  margin: 18px 0 18px 0;
}

/* --- TABLES, LISTS --- */
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
th, td {
  padding: 11px 10px;
  text-align: left;
  font-size: 1.06rem;
}
th {
  background: var(--accent);
}
td {
  background: #fbfbf4;
}

/* --- RESPONSIVE TYPOGRAPHY --- */
@media (max-width:600px){
  body { font-size: 15px; }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1.01rem; }
  th, td { font-size: 0.99rem; }
}

 

/* --- ACCESSIBILITY: FOCUS STYLES --- */
a:focus, button:focus, .cta:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- PRINT STYLES (MINIMAL) --- */
@media print {
  header, footer, nav, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  .container, section, main {
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
  }
}
