/* RESET & BASE -------------------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #252525;
  background: #F2F2F2;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 1.35em;
}
a {
  color: #FB8C00;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #15234B;
  text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #15234B;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.55rem; }
.subtitle {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #FB8C00;
  font-weight: 500;
  margin-bottom: 20px;
}
p {
  margin-bottom: 17px;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  position: relative;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(21,35,75,0.05);
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* HEADER ------------------------------------------------------------------ */
header {
  background: #15234B;
  position: sticky;
  top: 0;
  z-index: 1090;
  width: 100%;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
nav ul li a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  padding: 8px 0;
  border-bottom: 2.5px solid transparent;
  transition: border 0.2s, color 0.2s;
}
nav ul li a:hover, nav ul li a:focus {
  color: #FB8C00;
  border-bottom: 2.5px solid #FB8C00;
}
nav > a img {
  height: 56px;
}
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #FB8C00;
  color: #fff!important;
  font-weight: 600;
  border: none;
  border-radius: 28px;
  padding: 12px 38px;
  font-size: 1.10rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 16px 0 rgba(251,140,0,0.16);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #d36f05;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(251,140,0,0.22);
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}

/* BURGER MENU MOBILE NAV -------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 26px;
  top: 24px;
  font-size: 2.08rem;
  background: #FB8C00;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.18s;
  z-index: 2050;
  outline: none;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #d36f05;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,35,75,0.97);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(.6,.05,.28,.91);
  z-index: 2100;
  padding: 0;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  margin: 22px 32px 8px 0;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FB8C00;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 22px 32px;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.035em;
  transition: color 0.2s, background 0.2s;
  padding: 12px 0;
  border-radius: 10px;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: #FB8C00;
  background: rgba(242,242,242,0.08);
}

/* MAIN AND CONTENT SECTIONS ----------------------------------------------- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  position: relative;
  box-shadow: 0 4px 24px 0 rgba(21,35,75,0.05);
}
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #f6f6f9;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(21,35,75,0.07);
  padding: 24px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px rgba(251,140,0,.13), 0 2px 12px 0 rgba(21,35,75,0.10);
  transform: translateY(-2px) scale(1.04) rotate(-0.5deg);
  z-index: 2;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(251,140,0,0.10);
  background: #f7f3f1;
  margin-bottom: 20px;
  min-width: 0;
  flex: 1 1 280px;
  max-width: 640px;
}
.testimonial-card p {
  color: #2b2544;
  font-size: 1.07rem;
  font-style: italic;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #FB8C00;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: normal;
  font-size: 1rem;
  font-weight: 600;
  padding-left: 14px;
  border-left: 2.5px solid #FB8C00;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
}
ul li img {
  margin-right: 10px;
  vertical-align: middle;
  height: 28px;
  width: 28px;
  object-fit: contain;
  display: inline-block;
}

/* SPECIAL FLEX SPACING PATTERNS --------------------------------------------- */
.card-container { gap: 24px; }
.card { margin-bottom: 20px; }
.content-grid { gap: 20px; justify-content: space-between; }
.text-image-section { gap: 30px; }
.testimonial-card { gap: 20px; padding: 20px; }
.feature-item { gap: 15px; }
.section { margin-bottom: 60px; padding: 40px 20px; }

/* BUTTONS & INTERACTIONS --------------------------------------------------- */
button, .btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  outline: none;
  cursor: pointer;
  transition: all 0.16s;
}
button:disabled,
.btn-primary:disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* FOOTER ------------------------------------------------------------------- */
footer {
  background: #15234B;
  color: #fff;
  padding: 38px 0 30px 0;
  font-size: 1rem;
  margin-top: 40px;
}
.footer-nav {
  text-align: center;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
}
.footer-nav a {
  color: #FB8C00;
  margin: 0 10px;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 14px;
  font-size: 0.98rem;
}
.footer-contact img {
  height: 22px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-copy {
  text-align: center;
  font-size: 0.98rem;
  margin-top: 7px;
  opacity: 0.85;
}

/* COOKIE CONSENT BANNER ----------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff8f1;
  box-shadow: 0 -2px 20px 0 rgba(21,35,75,0.10);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 16px 20px 16px;
  border-top: 4px solid #FB8C00;
  transition: transform 0.32s cubic-bezier(.6,.05,.28,.91), opacity 0.26s;
}
.cookie-consent-banner.hide {
  transform: translateY(101%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner p {
  color: #15234B;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.cookie-consent-buttons {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 20px;
  border: none;
  padding: 10px 26px;
  font-weight: 600;
  font-size: 1rem;
  min-width: 120px;
  transition: background 0.16s, box-shadow 0.19s;
  cursor: pointer;
  margin-bottom: 3px;
}
.cookie-btn.accept {
  background: #FB8C00;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(251,140,0,0.12);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #d36f05;
}
.cookie-btn.reject {
  background: #fff;
  color: #15234B;
  border: 2px solid #FB8C00;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fff6ed;
  color: #FB8C00;
}
.cookie-btn.settings {
  background: transparent;
  color: #FB8C00;
  text-decoration: underline;
  border: none;
  padding: 10px 10px;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  color: #15234B;
}

/* COOKIE PREFERENCES MODAL ------------------------------------------------- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  background: #fff;
  border-radius: 24px;
  min-width: 320px;
  max-width: 94vw;
  max-height: 94vh;
  box-shadow: 0 4px 40px 0 rgba(21,35,75,0.18);
  z-index: 3100;
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transform: translate(-50%, -52%) scale(1);
  opacity: 1;
  transition: opacity 0.22s, transform 0.28s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -48%) scale(0.95);
}
.cookie-modal h2 {
  color: #FB8C00;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.cookie-categories {
  list-style: none;
  margin-bottom: 22px;
  padding: 0;
}
.cookie-category {
  font-size: 1.06rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #15234B;
}
.cookie-category input[type="checkbox"] {
  accent-color: #FB8C00;
  width: 21px;
  height: 21px;
  margin-left: 8px;
}
.cookie-category.essential {
  opacity: 0.65;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  align-items: stretch;
}
.cookie-modal .btn-primary, .cookie-modal .cookie-btn {
  min-width: 110px;
}
.cookie-modal-close {
  position: absolute;
  right: 24px;
  top: 20px;
  border: none;
  background: transparent;
  color: #FB8C00;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #d36f05;
}

/* ARTISTIC / CREATIVE AESTHETICS ------------------------------------------ */
body, section, .section, header, footer {
  /* Subtle artistic background pattern */
  background-image: radial-gradient(circle at 32% 12%,rgba(251,140,0,0.02) 25%,transparent 45%),
                    radial-gradient(circle at 78% 85%,rgba(251,140,0,0.035) 22%,transparent 60%),
                    radial-gradient(circle at 4% 82%,rgba(21,35,75,0.06) 22%,transparent 62%);
  background-repeat: no-repeat;
}
section, .section {
  border-radius: 32px 48px 32px 48px/44px 28px 44px 28px;
}
h1, h2 {
  position: relative;
  line-height: 1.13;
  z-index: 1;
}
h1:after, h2:after {
  display: block;
  content: '';
  margin-top: 3px;
  height: 6px;
  width: 65px;
  border-radius: 8px;
  background: #FB8C00;
  opacity: 0.44;
}
h1:after { width: 85px; background: #FB8C00; }

section .btn-primary {
  margin-top: 15px;
}

/* Unique geometric-decorative SVG/shape for artistic look */
.section:before {
  content: '';
  position: absolute;
  top: -24px;
  left: -24px;
  width: 70px;
  height: 70px;
  background: rgba(251,140,0,0.07);
  border-radius: 42% 38% 32% 71% / 54% 53% 62% 34%;
  z-index: 0;
  pointer-events: none;
}
.section:after {
  content: '';
  position: absolute;
  bottom: -34px;
  right: -24px;
  width: 44px;
  height: 44px;
  background: rgba(21,35,75,0.07);
  border-radius: 60% 40% 44% 81%/74% 39% 67% 32%;
  z-index: 0;
  pointer-events: none;
}
.section h1, .section h2, .section h3, .section h4 {
  z-index: 2;
  position: relative;
}
.content-wrapper {
  z-index: 2;
  position: relative;
}

/* Artistic font effect for main headings */
h1, h2 {
  text-shadow: 0 2px 0 #fff, 0 1.5px 8px rgba(251,140,0,0.07);
  letter-spacing: -0.03em;
  font-weight: 800;
}

/* Artistic button animation */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary:after {
  content: '';
  display: block;
  position: absolute;
  left: -40px;
  top: 0;
  height: 100%;
  width: 32px;
  background: rgba(242,242,242,0.16);
  opacity: 0.32;
  transform: skewX(-32deg);
  transition: left 0.35s;
}
.btn-primary:hover:after, .btn-primary:focus:after {
  left: 110%;
}

/* Artistic hover effect for testimonial cards */
.testimonial-card:hover {
  background: #fffdfa;
  box-shadow: 0 5px 36px rgba(251,140,0,0.17);
}

/* Responsive ARTISTIC quote marks */
.testimonial-card p:before {
  content: '“';
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #FB8C00;
  font-size: 2rem;
  margin-right: 7px;
  vertical-align: top;
  font-weight: 900;
}

/* Decorative accent lines under subtitles */
.subtitle:after {
  display: inline-block;
  content: '';
  margin-left: 13px;
  vertical-align: middle;
  width: 45px;
  height: 4px;
  border-radius: 8px;
  background: #FB8C00;
  opacity: 0.25;
}

/* FORMS (example for search/newsletter) ------------------------------------ */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 10px;
  border: 2px solid #ddd;
  padding: 13px 15px;
  margin-bottom: 16px;
  background: #fafafc;
  color: #15234B;
  transition: border-color 0.19s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FB8C00;
  outline: none;
}

/* SCROLLBAR ARTISTIC ------------------------------------------------------- */
::-webkit-scrollbar { width: 10px; background: #f6f4f3; }
::-webkit-scrollbar-thumb { background: #FB8C00; border-radius: 12px; opacity: 0.51; }

/* RESPONSIVE DESIGN -------------------------------------------------------- */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
}
@media (max-width: 992px) {
  .container { max-width: 770px; }
  section, .section { padding: 38px 8px; }
}
@media (max-width: 900px) {
  nav ul { gap: 12px; }
}
@media (max-width: 900px) {
  footer .footer-contact {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  nav ul { display: none; }
  .mobile-menu-toggle {
    display: flex;
    right: 18px;
    top: 17px;
  }
  footer .footer-contact {
    flex-direction: column;
    gap: 9px;
    font-size: 0.95rem;
  }
  .content-wrapper { padding-left: 0; padding-right: 0; }
  .section, section {
    margin-bottom: 35px;
    padding: 28px 7px 22px 7px;
    border-radius: 20px;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  .subtitle { font-size: 1.01rem; }
  .btn-primary { padding: 11px 22px; font-size: 0.99rem; }
  .testimonial-card { flex-direction: column; gap: 8px; padding: 16px; border-radius: 13px; }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
  }
  .card { padding: 17px; border-radius: 14px; }
  .text-image-section { flex-direction: column; gap: 12px; }
  .feature-item { gap: 9px; }
}
@media (max-width: 480px) {
  .container { max-width: 98vw; }
  .cookie-consent-banner {
    padding: 18px 2vw 12px 2vw;
  }
  .cookie-modal {
    min-width: unset;
    max-width: 99vw;
    padding: 20px 5vw 18px 5vw;
  }
}

/* FLEXBOX CONTAINER CORRECTNESS ENFORCEMENT --------- */
/* Layout containers are already using 'display: flex' and flex-wrap per requirement */

/* Z-INDEX MANAGEMENT FOR INTERACTIVE LAYERS --------- */
header { z-index: 1090; }
.mobile-menu { z-index: 2100; }
.cookie-consent-banner { z-index: 3000; }
.cookie-modal { z-index: 3100; }

/* SELECTION COLORS --------------------------------------------------------- */
::selection {
  background: #FB8C00;
  color: #fff;
}

/* PRINT -------------------------------------------------------------------- */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal {
    display: none!important;
  }
  body {
    color: #222!important;
    background: #fff!important;
  }
  .container, section, .section {
    background: #fff!important;
    box-shadow: none!important;
    padding: 0!important;
    margin: 0!important;
  }
}

/* END OF STYLE.CS */
