/* --- CSS RESET & NORMALIZE --- */
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1C2341;
  background: #F7F3EB;
  min-height: 100vh;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
  display: block;
}
a {
  color: #1C2341;
  text-decoration: underline;
  transition: color 0.15s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #FFA900;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
ul {list-style-type: disc;}
ol {list-style-type: decimal;}
li {
  margin-bottom: 10px;
  font-size: 1em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #1C2341;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1.125rem; margin-bottom: 12px; }
p {
  margin-bottom: 16px;
  font-size: 1.125rem;
  color: #1C2341;
}
strong { font-weight: 700; color: #1C2341; }
blockquote {
  border-left: 4px solid #FFA900;
  background: #fff;
  padding: 16px 24px;
  margin: 0 0 12px 0;
  font-style: italic;
  color: #1C2341;
  font-size: 1.25rem;
}
button, .cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 1.125rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  margin: 10px 0 0 0;
  display: inline-block;
  outline: none;
  text-decoration: none;
}
.cta.primary {
  background: #FFA900;
  color: #1C2341;
  box-shadow: 0 4px 18px 0 rgba(28, 35, 65, 0.12);
  border: 2px solid #FFA900;
  letter-spacing: 1px;
}
.cta.primary:hover, .cta.primary:focus {
  background: #1C2341;
  color: #FFA900;
  border-color: #1C2341;
}
.cta.secondary {
  background: #fff;
  color: #1C2341;
  border: 2px solid #1C2341;
  box-shadow: 0 2px 10px 0 rgba(28,35,65,0.07);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #FFA900;
  color: #fff;
  border-color: #FFA900;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Spacing for sections as required */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- NAVIGATION --- */
header {
  background: #fff;
  position: sticky;
  z-index: 50;
  top: 0;
  box-shadow: 0 2px 16px 0 rgba(28,35,65,0.07);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.main-nav > a img {
  height: 44px;
  width: auto;
  margin-right: 12px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  align-items: center;
  margin-bottom: 0;
}
.main-nav li {margin-bottom: 0;}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1C2341;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 1.05rem;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #FFA900;
  color: #fff;
}
.main-nav .cta.primary {
  margin-left: 24px;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #FFA900;
  color: #1C2341;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  z-index: 1001;
  position: absolute;
  top: 28px;
  right: 24px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #1C2341;
  color: #FFA900;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(28,35,65,0.13);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(0.75,0,0.25,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 40px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #1C2341;
  margin: 32px 24px 12px 24px;
  cursor: pointer;
  align-self: flex-end;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #FFA900;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 32px 24px;
  width: 90vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1C2341;
  padding: 8px 0;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFA900;
  color: #fff;
}

@media (max-width: 1024px) {
  .container {max-width: 960px;}
  .main-nav ul {gap: 10px;}
  .main-nav .cta.primary {margin-left: 8px;}
}
@media (max-width: 990px) {
  .main-nav ul {
    gap: 4px;
  }
}
@media (max-width: 840px) {
  .container {max-width: 99vw;}
}
@media (max-width: 768px) {
  .main-nav ul,
  .main-nav .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    gap: 6px;
    padding-right: 60px;
  }
}

/* --- HERO/BANNER --- */
.hero {
  background: #1C2341;
  color: #fff;
  border-radius: 0 0 48px 48px;
  box-shadow: 0 20px 40px -10px rgba(28,35,65,0.12);
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  padding-top: 70px;
  padding-bottom: 70px;
  min-height: 325px;
}
.hero h1, .hero p {
  color: #fff;
}
.hero .cta.primary {
  box-shadow: 0 8px 36px rgba(255,169,0,0.14);
}
.hero::after {
  content: '';
  display: block;
  position: absolute;
  right: -60px; bottom: -80px;
  width: 270px; height: 270px;
  background: #FFA900;
  border-radius: 60% 40% 80% 20% / 30% 80% 20% 70%;
  opacity: 0.28;
  z-index: 0;
}
.hero .content-wrapper {
  position: relative;
  z-index: 3;
  max-width: 690px;
  gap: 18px;
}

/* --- SECTION & CARD SPACING --- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 rgba(28,35,65,0.10);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 260px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 32px 0 rgba(255,169,0,0.13);
  transform: translateY(-3px) scale(1.018);
}
.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;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(28,35,65,.07);
  transition: box-shadow 0.18s, transform 0.14s;
}
.testimonial-card blockquote {
  margin-bottom: 0;
  font-size: 1.08rem;
  color: #1C2341;
  background: none;
  padding: 0;
  border: none;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(255,169,0,0.11);
  transform: scale(1.017);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 2px 12px 0 rgba(28,35,65,0.06);
  min-width: 212px;
  margin-bottom: 20px;
  flex: 1 1 220px;
}

/* --- LISTS & TEXT SECTIONS --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.text-section li {
  font-size: 1em;
}

/* --- FEATURES SECTION (index, innovation, AI, etc.) --- */
.features ul,
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
}
.features ul li,
.services ul li {
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px 18px 18px;
  min-width: 230px;
  flex: 1 1 250px;
  box-shadow: 0 2px 12px 0 rgba(255,169,0,.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}
.features ul li img,
.services ul li img {
  height: 40px;
  width: 40px;
  margin-bottom: 10px;
}
.features ul li h3 {font-size: 1.14rem; margin-top: 12px;}

/* --- SERVICES --- */
.services ul li strong {
  color: #1C2341;
  font-weight: 700;
}
.services ol {
  margin: 16px 0 0 24px;
  color: #1C2341;
}
.services ol li {
  font-weight: 500;
  margin-bottom: 8px;
}

/* --- CTAS --- */
.cta {
  margin-top: 8px;
}
section.cta {
  background: #FFA900;
  color: #1C2341;
  border-radius: 24px;
  box-shadow: 0 2px 20px 0 rgba(255,169,0,.17);
  margin-bottom: 60px;
  width: 100%;
}
section.cta .cta.primary {
  background: #1C2341;
  color: #FFA900;
  border: 2px solid #1C2341;
  margin-top: 12px;
}
section.cta .cta.primary:hover, section.cta .cta.primary:focus {
  background: #FFA900;
  color: #1C2341;
  border-color: #FFA900;
}
section.cta h2, section.cta p {
  color: #1C2341;
}

/* --- ABOUT & TEAM --- */
.about, .about-intro, .gdpr-policy, .privacy-policy, .terms-of-use, .cookie-policy {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 26px 0 rgba(28,35,65,.07);
}
.team ul,
.about .text-section ul,
.text-section ul {
  list-style-type: disc;
}
.team h3 {margin-top: 18px;}

/* --- CONTACT PAGE --- */
.contact .text-section ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 0;
}
.contact .text-section li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  background: #F7F3EB;
  border-radius: 8px;
  padding: 8px 12px;
  color: #1C2341;
  margin-bottom: 0;
}
.contact .text-section li img {
  height: 18px;
  width: 18px;
}
.contact .cta.secondary {
  margin-top: 16px;
}

/* --- FOOTER --- */
footer {
  background: #1C2341;
  color: #fff;
  padding: 42px 0 26px 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 24px 0 rgba(28,35,65,0.14);
}
footer .container {
  max-width: 960px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
footer img {
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #FFA900;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.07rem;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fff;
  color: #1C2341;
}
footer p {
  font-size: 0.97rem;
  color: #fff;
  text-align: center;
}

/* --- MODALS, COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #1C2341;
  color: #fff;
  box-shadow: 0 -2px 32px 0 rgba(28,35,65,0.07);
  padding: 24px 20px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  z-index: 4000;
  font-size: 1.03rem;
  flex-wrap: wrap;
}
.cookie-banner .cookie-banner-text {
  flex: 2 1 240px;
  min-width: 180px;
  font-size: 1em;
  color: #fff;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex: 1 1 180px;
}
.cookie-banner button {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-banner .accept {
  background: #FFA900;
  color: #1C2341;
  border: 2px solid #FFA900;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #FFA900;
}
.cookie-banner .reject {
  background: #fff;
  color: #1C2341;
  border: 2px solid #1C2341;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FFA900;
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: #FFA900;
  border: 2px solid #FFA900;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #FFA900;
  color: #fff;
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(28,35,65,0.72);
  z-index: 4200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(.6,0,.4,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #1C2341;
  border-radius: 24px;
  max-width: 420px;
  width: 95vw;
  box-shadow: 0 8px 48px 0 rgba(28,35,65,0.23);
  padding: 32px 26px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookieModalIn 0.34s cubic-bezier(.67,0,.3,1);
}
@keyframes cookieModalIn {
  0% { transform: scale(.90) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.5rem;
  color: #1C2341;
  margin-bottom: 12px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1.11rem;
  font-weight: 500;
  color: #1C2341;
  margin-bottom: 10px;
  gap: 11px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #FFA900;
  width: 20px;
  height: 20px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  min-width: 100px;
}
.cookie-modal .modal-close {
  background: transparent;
  border: none;
  color: #1C2341;
  font-size: 1.77rem;
  position: absolute;
  top: 18px;
  right: 20px;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #FFA900;
}
.cookie-modal .save {
  background: #FFA900;
  border: 2px solid #FFA900;
  color: #1C2341;
}
.cookie-modal .save:hover {
  background: #1C2341;
  color: #FFA900;
}
.cookie-modal .cancel {
  background: #fff;
  border: 2px solid #1C2341;
  color: #1C2341;
}
.cookie-modal .cancel:hover {
  background: #FFA900;
  color: #fff;
}

/* --- RESPONSIVE LAYOUTS === */
@media (max-width: 1200px) {
  .container { max-width: 94vw; }
}
@media (max-width: 990px) {
  .features ul, .services ul {
    gap: 16px;
  }
}
@media (max-width: 850px) {
  .main-nav {font-size: 0.95rem;}
  .container { padding: 0 10px; }
  .content-wrapper { gap: 18px; }
  .features ul li, .services ul li, .feature-item { min-width: 170px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  section, .section { padding: 34px 8px; margin-bottom: 35px; }
  .container {max-width: 99vw; padding: 0 3vw;}
  .content-wrapper { gap: 16px; }
  .hero {
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 0 0 26px 26px;
    margin-bottom: 32px;
  }
  .hero h1 { font-size: 1.42rem; }
  .features ul, .services ul {
    gap: 12px;
  }
  .features ul li, .services ul li, .feature-item {
    min-width: 98vw;
    width: 100%;
    max-width: 99vw;
    padding: 11px 7vw 14px 7vw;
  }
  .card-container, .content-grid, .testimonial-card, .feature-item {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .testimonial-card {
    padding: 13px 9px;
    margin-bottom: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  footer { border-radius: 22px 22px 0 0; padding: 28px 0 14px 0; }
  footer img { width: 38px; height: 38px; }
}

/* --- ANIMATIONS & INTERACTIONS --- */
.cta, .main-nav ul li a, .footer-nav a, button {
  transition: background 0.18s, color 0.18s, box-shadow 0.13s, border 0.18s, transform 0.13s;
}
.cta:active, button:active {
  transform: scale(0.98);
}
.card:active, .testimonial-card:active {
  transform: scale(0.99);
}

/* --- SCROLLBAR CUSTOMIZATION --- */
::-webkit-scrollbar {
  width: 8px;
  background: #F7F3EB;
}
::-webkit-scrollbar-thumb {
  background: #FFA900;
  border-radius: 8px;
}

/* --- Miscellaneous --- */
::-moz-selection {
  background: #FFA900;
  color: #fff;
}
::selection {
  background: #FFA900;
  color: #fff;
}

/* --- Typography scale: for hierarchy --- */
@media (max-width: 540px) {
  h1 { font-size: 1.09rem; }
  h2 { font-size: 1.01rem; }
  h3 { font-size: 0.99rem; }
  .cta, button, .main-nav ul li a, .footer-nav a { font-size: 1rem; }
}

/* --- Utility Classes --- */
.hide {
  display: none !important;
}
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.rounded-20 { border-radius: 20px; }
.shadow-md { box-shadow: 0 2px 24px 0 rgba(28,35,65,0.10); }

/* --- End of Styles --- */

/* ------ Required: No display:grid anywhere. All layouts use Flexbox only. ------ */