/* RESET & BASE TYPOGRAPHY */
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,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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,*:before,*:after {
  box-sizing: inherit;
}
body {
  background: #f5f6fa;
  color: #22273D;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A2746;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

p, ul, ol {
  margin-bottom: 18px;
  font-size: 1rem;
}
strong, b {
  font-weight: 700; color: #1A2746;
}
a {
  color: #F6A700;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.55,.06,.68,.19);
}
a:hover, a:focus {
  color: #FF4D9C;
}
ul, ol {
  margin-left: 25px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 10px;
}
img {
  max-width: 100%; height: auto;
  display: inline-block;
}
address {
  font-style: normal;
  color: #1A2746;
  margin-bottom: 12px;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #F6A700;
  background: #fffbea;
  padding: 10px 18px;
  margin: 24px 0 24px 0;
  border-radius: 16px;
}

.container {
  max-width: 1100px; width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ============================
   CREATIVE ARTISTIC
==============================*/
.section, main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 36px 4px 32px 18px;
  box-shadow: 0 3px 40px 0 rgba(26,39,70,0.05);
  position: relative;
  /* subtle floating color element as arty touch */
}
.section:before {
  content: "";
  display: block;
  position: absolute;
  left: -30px; top: -30px;
  width: 80px; height: 80px;
  background: rgba(246,167,0,0.15);
  border-radius: 40% 60% 30% 35%;
  z-index: 0;
  pointer-events: none;
}
.cta-banner {
  background: #FF4D9C;
  background: linear-gradient(94deg, #F6A700 0%, #FF4D9C 100%);
  color: #fff;
  text-align: center;
  border-radius: 42px 18px 40px 18px;
  padding: 48px 24px;
}
.cta-banner .cta-primary {
  margin-top: 16px;
  background: #fff;
  color: #1A2746;
}
/* ARTISTIC FLAIR - colored dots and squiggles */
.section:after {
  content: "";
  display: block;
  position: absolute;
  right: -18px; bottom: -18px;
  width: 44px; height: 44px;
  background: rgba(26,39,70,0.07);
  border-radius: 63% 37% 35% 65%;
  z-index: 0;
  pointer-events: none;
}

/****** HERO ******/
.hero-section {
  background: linear-gradient(120deg, #F6A700 10%, #FF4D9C 60%, #1A2746 98%);
  color: #fff;
  padding: 56px 0 60px 0;
  border-radius: 0 0 64px 64px;
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.9rem;
  font-weight: 900;
  text-shadow: 0 2px 22px rgba(26, 39, 70, 0.28);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero-section p {
  color: #fff dfdfdf;
  font-size: 1.25rem;
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-section .cta-primary {
  background: #fff;
  color: #1A2746;
}

/***** BUTTONS *****/
.cta-primary, .main-nav .cta-primary, .content-wrapper .cta-primary {
  display: inline-block;
  background: #F6A700;
  color: #1A2746;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  border: none;
  outline: none;
  padding: 15px 38px;
  border-radius: 24px 6px 20px 18px;
  box-shadow: 0 8px 20px 0 rgba(246,167,0,0.18);
  transition: background 0.19s cubic-bezier(.55,.06,.68,.19), color .15s;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #FF4D9C;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(255,77,156,0.22);
  outline: none;
}

/* NAVIGATION STYLES */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(26,39,70,0.04);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 20;
  min-height: 64px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  justify-content: flex-start;
  padding: 14px 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A2746;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 8px 20px 10px 15px;
  transition: background 0.15s, color 0.18s;
  position: relative;
}
.main-nav a:not(.cta-primary):hover { background: #fdf3de; color: #F6A700; }
.main-nav img {
  height: 40px; width: auto; margin-right: 15px;
  vertical-align: middle;
}
.main-nav .cta-primary {
  background: #FF4D9C;
  color: #fff;
  margin-left: auto;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: #1A2746;
  color: #fff;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #F6A700;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 2rem;
  padding: 8px 18px 7px 18px;
  margin-right: 16px;
  margin-top: 6px;
  cursor: pointer;
  transition: background .18s;
  line-height: 1;
  z-index: 30;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FF4D9C;
}
.mobile-menu-toggle:hover {
  background: #FF4D9C;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #fff;
  z-index: 800;
  padding: 36px 30px 30px 30px;
  box-shadow: 0 16px 48px 0 rgba(26,39,70,0.16);
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .38s cubic-bezier(.7,.2,.27,1.1), opacity .18s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FF4D9C;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 42px; height: 42px;
  align-self: flex-end;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px 0 rgba(255,77,156,0.20);
  cursor: pointer;
  transition: background .18s;
}
.mobile-menu-close:focus { outline: 2px solid #F6A700; }
.mobile-menu-close:hover { background: #F6A700; color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #1A2746;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  background: none;
  padding: 10px 6px;
  border-radius: 12px 32px 10px 14px;
  transition: background .18s, color .18s;
  border: none;
}
.mobile-nav a:active, .mobile-nav a:focus {
  background: #fdf3de;
  color: #F6A700;
  outline: none;
}

/* =========== RESPONSIVE NAVIGATION ============ */
@media (max-width: 1024px) {
  .main-nav { gap: 10px 13px;  }
  .main-nav a { font-size: 0.98rem; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 18px;
    top: 12px;
  }
}
@media (max-width: 640px) {
  .container { padding: 0 9px 0 9px; }
  .mobile-menu { padding: 28px 6vw 16px 6vw; }
}

/***** CARDS and FLEX LAYOUTS *****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 26px 11px 22px 11px;
  box-shadow: 0 4px 18px 0 rgba(26,39,70,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px 22px 22px;
  min-width: 240px;
  flex: 1 1 340px;
  transition: box-shadow .18s, transform .18s;
  z-index: 2;
}
.card:hover{
  box-shadow: 0 9px 36px 0 rgba(246,167,0,0.20);
  transform: translateY(-2px) scale(1.01);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .section, main > section {
    padding: 24px 4px;
    margin-bottom: 32px;
    border-radius: 24px 4px 18px 12px;
  }
  .hero-section {
    border-radius: 0 0 36px 36px;
    padding: 34px 10px 38px 10px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f7f2fd;
  border-radius: 22px 9px 19px 11px;
  box-shadow: 0 3px 16px 0 rgba(246,167,0,0.08);
  margin-bottom: 20px;
  color: #1A2746;
  font-size: 1.03rem;
  font-style: italic;
  border-left: 6px solid #FF4D9C;
  z-index: 2;
}
.testimonial-card strong {
  font-style: normal;
  font-weight: 700;
  color: #F6A700;
  font-size: 1.0rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/****** LIST STYLES ******/
ul li::before {
  content: '\2022';
  color: #FF4D9C;
  display: inline-block;
  width: 1.3em;
  margin-left: -1.3em;
  vertical-align: top;
  font-size: 1.2em;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}
ol li {
  list-style-type: decimal;
}

/****** FORMS, ADDRESS, ARTICLES ******/
address > div, address > span {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
article {
  margin-bottom: 26px;
  background: #fff;
  border-radius: 19px 4px 14px 10px;
  padding: 17px 18px 12px 18px;
  box-shadow: 0 2px 18px 0 rgba(26,39,70,0.04);
}

/****** FOOTER ******/
footer {
  background: #1A2746;
  color: #fff;
  padding: 40px 0 24px 0;
  width: 100%;
  font-size: 1.01em;
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 42px 42px 0 0;
  margin-top: 32px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #F6A700;
  font-weight: 600;
  font-size: 1.03em;
  transition: color 0.17s;
}
.footer-nav a:hover {
  color: #FF4D9C;
  text-decoration: underline wavy 2px #FF4D9C;
}
footer address {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  color: #fff;
}
footer img {
  display: inline-block;
  height: 1.2em; width: 1.2em;
  margin-right: 4px; vertical-align: middle;
}
footer div {
  text-align: center;
  margin-bottom: 4px;
  color: #fff;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #FF4D9C;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 20px 10vw 18px 10vw;
  box-shadow: 0 -4px 24px 0 rgba(246,167,0,0.13);
  transition: transform .34s cubic-bezier(.59,.03,.34,.97), opacity .18s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner p {
  font-weight: 600;
  margin-bottom: 0;
  color: #fff;
}
.cookie-btn,
.cookie-settings-btn {
  margin: 0 6px;
  padding: 9px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 16px 6px 14px 8px;
  cursor: pointer;
  transition: background .16s, color .16s;
  box-shadow: 0 2px 10px 0 rgba(26,39,70,0.09);
}
.cookie-btn.accept {
  background: #F6A700; color: #1A2746;
}
.cookie-btn.reject {
  background: #fff; color: #1A2746;
  border: 2px solid #F6A700;
}
.cookie-settings-btn {
  background: #1A2746; color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
   background: #FF4D9C; color: #fff;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
   background: #F6A700; color: #fff;
}
.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
  background: #F6A700; color: #1A2746;
}

/***** COOKIE MODAL PREFERENCES *****/
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background:rgba(26,39,70,0.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s;
}
.cookie-modal-overlay.open {
  opacity: 1; pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #1A2746;
  border-radius: 29px 7px 26px 10px;
  box-shadow: 0 8px 56px 0 rgba(26,39,70,0.25);
  padding: 36px 38px;
  min-width: 290px; max-width: 94vw;
  max-height: 94vh; overflow-y: auto;
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
}
.cookie-modal h2 {
  color: #F6A700;
  font-size: 1.45rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex; flex-direction: row; align-items: center; gap: 16px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .toggle-switch {
  width: 38px; height: 22px;
  background: #e0e4ec;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  margin-left: 10px;
}
.cookie-modal .toggle-switch input {
  display: none;
}
.cookie-modal .slider {
  position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: #F6A700;
  border-radius: 50%;
  transition: left .19s, background .16s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  left: 19px;
  background: #FF4D9C;
}
.cookie-modal .essential {
  color: #1A2746; font-weight: bold;
}
.cookie-modal-close {
  position: absolute; top: 18px; right: 18px;
  background: none;
  border: none;
  color: #F6A700;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
  transition: color .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FF4D9C;
  outline: none;
}
.cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 16px;
  align-items: center;
}

/***** ANIMATIONS & EFFECTS *****/
.cta-primary, .cookie-btn, .cookie-settings-btn {
  transition: box-shadow .19s, background .19s, color .19s, transform .11s;
}
.cta-primary:active, .cookie-btn:active, .cookie-settings-btn:active {
  transform: scale(0.97);
}
.card, .testimonial-card, .hero-section, .section, .content-wrapper, article {
  transition: box-shadow .17s, transform .15s;
}

/***** ARTISTIC FONTS EFFECT *****/
h1, h2, h3, h4, .cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
  text-rendering: geometricPrecision;
  word-spacing: 2px;
}
/***** UNIQUE ARTISTIC ACCENTS *****/
h2:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 12px;
  border-radius: 60%;
  width: 20px; height: 12px;
  background: #F6A700;
  box-shadow: 16px 9px #FF4D9C, 32px 1px #1A2746;
  opacity: 0.18;
}
@media (max-width: 600px){
  h1{font-size:2.01rem;}
  h2{font-size:1.35rem;}
  .section, main>section{padding:14px 2px;}
  .cta-banner{padding:22px 6px;}
  .hero-section{font-size:0.96em;}
}

/***** MICROINTERACTIONS *****/
a, button, .cta-primary,.main-nav a,.cookie-btn,.cookie-settings-btn{
  transition: background .18s, color .15s, box-shadow .18s;
}
button:focus, .cta-primary:focus, .cookie-btn:focus { outline:2px solid #F6A700; }
.main-nav a:focus, .footer-nav a:focus, .mobile-nav a:focus { outline:2px solid #FF4D9C }

/***** DARK ON LIGHT FOR REVIEWS *****/
.testimonial-card p,
.testimonial-card strong {
  color: #1A2746 !important;
}

/***** ARTISTIC TAG / CATEGORY BADGES *****/
div > span, .tag {
  display: inline-block;
  background: #fdf3de;
  color: #FF4D9C;
  font-weight: 700;
  border-radius: 13px 38px 11px 12px;
  padding: 3px 12px;
  margin: 0 6px 8px 0;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  font-family: 'Montserrat', Arial, sans-serif;
}

/**** ACCESSIBILITY ****/
:focus-visible {
  outline:2px solid #1A2746;
  outline-offset: 3px;
}

/**** ENSURE NO OVERLAPS & PROPER SPACING ****/
.section, main>section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .text-image-section, .testimonial-card, .feature-item {
  gap: 20px;
}
.card, .testimonial-card {
  margin-bottom: 20px;
}

/**** ARTISTIC COLOR VARIANTS ****/
.card:nth-child(2n) { border-left: 7px solid #F6A700; }
.card:nth-child(2n+1) { border-left: 7px solid #FF4D9C; }

/*********** PRINT ***********/
@media print { body { background: #fff; color: #000; } nav, header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; } }
