/* --------------------- 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, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F3F6F9;
  color: #213C5A;
}
a { color: inherit; text-decoration: none; }
img, picture, video {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: bold;
}
/* Root variables for easy color and font management */
:root {
  --color-primary: #213C5A;
  --color-secondary: #F49B1C;
  --color-accent: #F3F6F9;
  --color-bg-card: #fff;
  --color-text-light: #fff;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ------------------ CREATIVE ARTISTIC STYLE BASICS ---------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.6rem;
  color: var(--color-secondary);
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.2;
}
h3 {
  font-size: 1.3rem;
  color: #294C7C;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-family: var(--font-display);
}
p, li {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.6;
  font-family: var(--font-body);
}
p:last-child, li:last-child { margin-bottom: 0; }

body {
  background: var(--color-accent);
  position: relative;
  min-height: 100vh;
}

/* Decorative splashes for creative flair (optional SVG backgrounds or shapes) */
body:before,
body:after {
  content: '';
  display: block;
  position: fixed;
  z-index: 0;
  pointer-events: none;
}
body:before {
  top: -120px; left: -60px;
  width: 260px; height: 260px;
  background: var(--color-secondary);
  opacity: 0.09;
  border-radius: 50%;
}
body:after {
  bottom: -80px; right: -60px;
  width: 220px; height: 220px;
  background: var(--color-primary);
  opacity: 0.07;
  border-radius: 47% 53% 59% 41%/58% 42% 58% 42%;
}

/* Container & Section Layouts */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.section,
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
.content-wrapper {
  margin: 0 auto;
  background: transparent;
  position: relative;
}
.text-section {
  max-width: 700px;
  margin: 0 auto 20px auto;
}

/* Layout: Flex patterns */
.card-container, .feature-grid, .content-grid, .contact-details, .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container, .feature-grid {
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-card);
  border-radius: 24px;
  box-shadow: 0 3px 18px 0 rgba(33,60,90,.10);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(244,155,28,0.17);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}
.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 28px;
  margin-bottom: 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(33,60,90,.09);
  position: relative;
  transition: box-shadow 0.3s, transform 0.2s;
  border-left: 6px solid var(--color-secondary);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #213C5A;
  margin-bottom: 0;
  font-family: var(--font-display),sans-serif;
  letter-spacing: 0.01em;
  font-style: italic;
  flex: 1 1 auto;
}
.testimonial-card span {
  font-size: 1rem;
  color: #666;
  font-family: var(--font-body);
  min-width: 120px;
  text-align: right;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(244,155,28,0.19);
  transform: translateY(-2px) scale(1.012);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  padding: 0;
}
.feature-grid li {
  background: linear-gradient(120deg, #F49B1C18 60%, #fff 100%);
  border-radius: 18px 44px 18px 28px/28px 18px 44px 18px;
  padding: 28px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 230px;
  flex: 1 1 250px;
  box-shadow: 0 2px 12px 0 rgba(33,60,90,.09);
  position: relative;
  margin-bottom: 20px;
  border: 1.5px dotted #F49B1C77;
  transition: box-shadow 0.25s, border-color 0.17s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 26px 0 rgba(244,155,28,0.16);
  border-color: #f49b1c;
}
.feature-grid img {
  width: 56px;
  height: 56px;
  background: rgba(244,155,28,0.08);
  border-radius: 15px;
  padding: 6px;
  margin-bottom: 6px;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  margin-top: 12px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--color-primary);
  font-family: var(--font-body);
}
.contact-details img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

/* Social Links */
.social-links {
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 23px;
}
.social-links a {
  border-radius: 50%;
  background: var(--color-secondary);
  padding: 12px;
  box-shadow: 0 2px 10px 0 rgba(244,155,28,0.14);
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-links a:hover {
  background: var(--color-primary);
  transform: scale(1.07) rotate(-7deg);
}
.social-links img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* ---------------------------------- NAVIGATION ---------------------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 16px 0 rgba(33,60,90,.079);
  z-index: 1001;
  position: sticky;
  top: 0;
  left: 0;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  justify-content: flex-start;
  position: relative;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 8px 10px;
  border-radius: 7px;
  transition: background 0.16s, color .16s;
  position: relative;
  z-index: 1;
}
header nav a.cta {
  background: var(--color-secondary);
  color: #fff;
  border-radius: 21px;
  padding: 9px 22px;
  font-size: 1.07rem;
  letter-spacing: 0.07em;
  margin-left: 16px;
  font-weight: 900;
  box-shadow: 0 2px 7px 0 rgba(244,155,28,0.13);
  transition: background .17s, transform .16s;
}
header nav a.cta:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
  transform: scale(1.05);
}
header nav a:hover:not(.cta) {
  background: var(--color-secondary);
  color: #fff;
  transform: scale(1.04);
}

header nav a img {
  width: 56px;
  max-width: 80px;
  vertical-align: middle;
  margin-right: 20px;
  margin-left: 0;
  border-radius: 12px;
  box-shadow: none;
  transition: box-shadow 0.18s;
}
header nav a img:hover {
  box-shadow: 0 4px 13px 0 rgba(244,155,28,0.15);
}

/* Burger Menu - Mobile */
.mobile-menu-toggle {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 40px;
  padding: 8px 18px;
  position: absolute;
  top: 10px;
  right: 16px;
  z-index: 1202;
  box-shadow: 0 2px 7px 0 rgba(244,155,28,0.17);
  cursor: pointer;
  transition: background .22s, color .15s;
  display: none;
}
.mobile-menu-toggle:focus { outline: 2px solid var(--color-primary); }
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,60,90,0.92);
  z-index: 1200;
  transform: translateX(100vw);
  transition: transform 0.37s cubic-bezier(.55,.19,.15,1.04);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 40px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 2.3rem;
  position: absolute;
  top: 18px; right: 24px;
  cursor: pointer;
  z-index: 1333;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:hover {
  background: rgba(244,155,28,0.13);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 75px 0 0 35px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 14px 6px 14px 0;
  transition: color 0.13s, background 0.13s;
  border-radius: 10px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

@media (max-width: 1100px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 10px;
    padding: 10px 8px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* -------------------- BUTTONS & CTA -------------------- */
.cta, .btn, button, input[type='submit'] {
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: bold;
  border: none;
  border-radius: 22px;
  padding: 13px 34px;
  font-size: 1.18rem;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: background 0.13s, color .13s, transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 3px 13px 0 rgba(244,155,28,0.13);
  margin: 14px 0 0 0;
  display: inline-block;
}
.cta:hover, .btn:hover, button:hover, input[type='submit']:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 6px 23px 0 rgba(33,60,90,0.17);
}
.cta:focus,
.btn:focus {
  outline: 2.5px solid var(--color-secondary);
  outline-offset: 1px;
}

/* --------------------------------- FOOTER ------------------------------------ */
footer {
  background: #213C5A;
  color: #fff;
  padding: 30px 20px 20px 20px;
  border-top-right-radius: 48px;
  border-top-left-radius: 18px;
  margin-top: 60px;
  box-shadow: 0 -3px 10px 0 rgba(33,60,90,0.07);
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
footer nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 7px;
  font-size: 1rem;
  opacity: 0.87;
  transition: background 0.15s, color 0.13s;
}
footer nav a:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  opacity: 1;
}
.footer-credits {
  text-align: center;
  opacity: 0.93;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-top: 7px;
}

/* -------------------------------------- LISTS & TYPOGRAPHY -------------------------------------- */
ul, ol {
  margin: 8px 0 18px 22px;
}
ul li, ol li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 0;
}
ul li strong, ol li strong {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-weight: 700;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  background: var(--color-secondary);
  border-radius: 50%;
  margin-right: 12px;
  margin-left: -23px;
  vertical-align: middle;
  box-shadow: 0 1px 4px rgba(244,155,28,0.10);
}
ul.no-marker li:before {
  display: none;
}
ul.no-marker {
  margin-left: 0;
}

.text-section ul {
  margin-bottom: 18px;
}

/* --------------------------------------- SECTION & CARD SPACING ----------------------------------------- */
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
.content-wrapper {
  padding: 0;
  margin-bottom: 20px;
}
.card, .feature-grid li, .testimonial-card {
  margin-bottom: 20px;
}

/* ---------------------------------------- RESPONSIVE ---------------------------------------- */
@media (max-width: 900px) {
  h1 {
    font-size: 2.0rem;
  }
  h2 {
    font-size: 1.34rem;
  }
  .feature-grid {
    gap: 14px;
  }
}
@media (max-width: 825px) {
  .container {
    padding: 0 6vw;
  }
  .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .section, main > section {
    margin-bottom: 32px;
    padding: 25px 7vw;
  }
  .content-grid, .feature-grid, .card-container, .testimonial-card, .contact-details, .text-image-section {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch !important;
  }
  .content-wrapper, .text-section {
    max-width: 100%;
  }
  h1 {
    font-size: 1.4rem;
  }
  .feature-grid li {
    min-width: 0;
    width: 100%;
    padding: 24px 15px 12px 15px;
  }
  .testimonial-card {
    font-size: 0.92rem;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 17px 10px;
    align-items: flex-start;
  }
  .social-links {
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 2vw;
  }
  .section, main > section {
    padding: 16px 2vw;
  }
  h2 {
    font-size: 1.08rem;
    margin-bottom: 10px;
  }
  h1 {
    font-size: 1.13rem;
    margin-bottom: 13px;
  }
  .feature-grid li, .card-content {
    padding: 14px 8px 6px 8px;
  }
}

/* --------------------------------- ARTISTIC DECORATIONS --------------------------------- */
.section {
  position: relative;
  overflow: visible;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  right: -22px; top: -18px;
  width: 68px; height: 68px;
  background: var(--color-secondary);
  opacity: 0.05;
  border-radius: 41% 59% 47% 53%/51% 56% 44% 49%;
  pointer-events: none;
  z-index: 0;
}
.section:nth-child(odd):after {
  left: -32px; right: auto; top: auto; bottom: -13px;
}

/* ----------------------- COOKIE BANNER & MODAL ------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 -3px 24px 0 rgba(33,60,90,0.11);
  padding: 28px 20px 24px 20px;
  z-index: 2501;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: center;
  max-width: 100vw;
  transition: transform 0.38s ease;
}
.cookie-banner-hide { transform: translateY(140%); }
.cookie-banner-show { transform: translateY(0); }
.cookie-banner p {
  font-size: 1rem;
  margin-bottom: 0;
  font-family: var(--font-body);
  flex: 1 1 400px;
}
.cookie-banner .cookie-btn {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 15px;
  font-size: 1rem;
  padding: 8px 20px;
  margin-left: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.14s,color .13s,transform 0.10s;
  box-shadow: 0 2.5px 10px 0 rgba(244,155,28,0.09);
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
  outline: none;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-secondary);
  margin-left: 8px;
}
.cookie-banner .cookie-btn.cookie-settings:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 2vw;
    gap: 8px;
  }
  .cookie-banner p {
    flex: 1 1 100%;
  }
  .cookie-banner .cookie-btn {
    margin-left: 0;
    margin-top: 8px;
  }
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(33,60,90,0.82);
  z-index: 2901;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.cookie-modal {
  min-width: 90vw;
  max-width: 450px;
  background: #fff;
  color: var(--color-primary);
  border-radius: 22px;
  box-shadow: 0 6px 34px 0 rgba(33,60,90,0.16);
  padding: 38px 24px 28px 24px;
  z-index: 2952;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieModalIn .5s cubic-bezier(.52,.17,.54,.98);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: scale(.93);} to { opacity:1; transform:scale(1); }
}
.cookie-modal h3 {
  font-size: 1.32rem;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-weight: 800;
}
.cookie-modal .cookie-category {
  margin-bottom: 0.8em;
}
.cookie-modal .cookie-category label {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-primary);
  margin-right: 18px;
  font-size: 1rem;
}
.cookie-modal .toggle-switch {
  display: inline-block;
  width: 37px;
  height: 21px;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
}
.cookie-modal .toggle-switch input[type="checkbox"] {
  display: none;
}
.cookie-modal .toggle-slider {
  position: absolute;
  background: #eee;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  left: 0; top: 0;
  transition: background 0.19s;
}
.cookie-modal .toggle-switch input[type="checkbox"]:checked + .toggle-slider {
  background: var(--color-secondary);
}
.cookie-modal .toggle-slider:before {
  content: '';
  position: absolute;
  left: 2.5px; top: 2.5px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
  box-shadow: 0 2px 8px rgba(244,155,28,0.13);
}
.cookie-modal .toggle-switch input[type="checkbox"]:checked + .toggle-slider:before {
  transform: translateX(15px);
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 8px;
  padding: 4px 9px;
  transition: background .13s;
}
.cookie-modal .cookie-modal-close:hover {
  background: rgba(244,155,28,0.06);
}

@media (max-width: 520px) {
  .cookie-modal {
    min-width: 98vw;
    padding: 19px 6px 12px 6px;
  }
  .cookie-banner {
    font-size: 0.98rem;
  }
}

/* ---------------------------------- SCROLLBAR & SELECTION ---------------------------------- */
*::selection {
  background: var(--color-secondary);
  color: #fff;
}
::-webkit-scrollbar { width: 8px; background: #F3F6F9; }
::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 6px;
}
/* --------------------------------- FORMS (if present) --------------------------------- */
input, textarea, select {
  font-family: var(--font-body);
  border: 1.6px solid var(--color-secondary);
  border-radius: 9px;
  padding: 11px 13px;
  font-size: 1rem;
  outline: none;
  margin-bottom: 14px;
  background: #fff;
  color: var(--color-primary);
  transition: border-color 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-primary);
}
label { font-family: var(--font-display); font-weight: 500; }

/* ---------------------------------- MICRO-INTERACTIONS & EFFECTS ---------------------------------- */
a, button, .cta, .btn, .feature-grid li, .card, .testimonial-card, .cookie-btn {
  transition: background .19s, color .13s, box-shadow .15s, transform .11s;
}
.feature-grid li:hover, .card:hover {
  transform: translateY(-2px) scale(1.016) rotate(-1.7deg);
}
.cta:active, .btn:active {
  transform: scale(0.97);
}

/* ---------------------------------- Z-INDEX LAYERING ---------------------------------- */
header { z-index: 1001; }
.mobile-menu { z-index: 1200; }
.cookie-banner { z-index: 2501; }
.cookie-modal-overlay { z-index: 2901; }

/* END */
