/* CSS 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
html {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #F6F8FA;
  scroll-behavior: smooth;
}
body {
  color: #2D3545;
  background: linear-gradient(135deg, #FFDD65 0%, #FFFFFF 80%);
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #3366B3;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #F4845F;
  text-decoration: underline;
}
/* FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #3366B3;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.15rem;
}
p, li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: #455273;
}
/* GENERAL CONTAINERS & STRUCTURE */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 3px 24px 0 rgba(51, 102, 179, 0.04);
}
@media (max-width: 768px) { .section { padding: 30px 10px; } }

/*********************
** HEADER & NAVIGATION
**********************/
header {
  background: linear-gradient(90deg, #FFDD65 0%, #FFF 60%, #AECDF7 100%);
  box-shadow: 0 2px 8px 0 rgba(51, 102, 179, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background .2s, color .2s;
  color: #3366B3;
}
.main-nav a:hover, .main-nav a:focus {
  background: #3366B3;
  color: #FFF;
}
.btn-primary {
  background: linear-gradient(90deg,#3366B3 0%, #6FC8F4 100%);
  color: #FFF;
  padding: 12px 32px;
  border: none;
  border-radius: 999px;
  font-size: 1.07rem;
  font-family: 'Baloo 2', 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 14px 0 rgba(51,102,179,0.11);
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: inline-block;
  margin-left: 20px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg,#6FC8F4 0%, #3366B3 100%);
  color: #FFF;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 32px 0 rgba(111,200,244,0.18);
}
.btn-secondary {
  background: #FFDD65;
  color: #3366B3;
  padding: 10px 28px;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-family: 'Baloo 2', 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 1px 8px 0 rgba(255,221,101,0.18);
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFF;
  color: #FFBB33;
  transform: translateY(-1px) scale(1.03);
}

/***************
** MOBILE MENU
****************/
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  margin-left: 12px;
  color: #3366B3;
  border-radius: 8px;
  transition: background .2s;
  z-index: 61;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFF6D1;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 94vw;
  max-width: 390px;
  height: 100vh;
  background: #FFF;
  box-shadow: -4px 0 22px 0 rgba(51, 102, 179, 0.14);
  transform: translateX(100%);
  transition: transform 0.44s cubic-bezier(.69,-0.49,.27,1.46);
  z-index: 60;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: none;
  border: none;
  padding: 8px 18px 16px 0;
  color: #3366B3;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F4845F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
  gap: 18px;
  align-items: flex-start;
  padding-left: 26px;
}
.mobile-nav a {
  color: #3366B3;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 6px;
  width: 100%;
  transition: background .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F9F6E1;
  color: #FFBB33;
}
@media (max-width: 1050px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .btn-primary { display: none; }
}
@media (max-width: 580px) {
  .container { padding: 0 8px; }
}

/**********************/
/* HERO & SECTION DESIGN
***********************/
.hero {
  background: linear-gradient(105deg,#AECDF7 10%, #FFDD65 100%);
  padding: 64px 0 36px 0;
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 640px;
  gap: 14px;
}
.hero h1, .hero h2 {
  color: #3366B3;
  text-shadow: 0 1px 10px rgba(255, 221, 101, 0.04);
}
@media (max-width: 768px) {
  .hero { padding: 36px 0 20px 0; }
  .hero .content-wrapper { max-width: 100%; padding: 0 2px; }
}

/**************
** FEATURES
***************/
.features {
  background: #FFF;
  margin-bottom: 60px;
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 rgba(255, 221, 101, 0.10);
  padding: 34px 0;
}
.features .content-wrapper { gap: 18px; }
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 0px;
  list-style: none;
}
.features ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.06rem;
  background: #FAF7E0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(255, 221, 101, 0.05);
  padding: 14px 18px;
  margin-bottom: 0;
  color: #3A464E;
  min-width: 240px;
  flex: 1 1 200px;
  font-weight: 500;
}
.features ul li img {
  width: 32px; height: 32px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .features ul { flex-direction: column; gap: 14px; }
}

/**************
** SERVICES
**************/
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.services .service-list > div {
  display: flex;
  flex-direction: column;
  background: #F6F8FA;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(51,102,179,0.06);
  min-width: 220px;
  flex: 1 1 240px;
  padding: 22px 18px;
  gap: 12px;
  margin-bottom: 0;
  align-items: flex-start;
  transition: box-shadow .18s, transform .18s;
}
.services .service-list > div:hover {
  box-shadow: 0 8px 42px 0 rgba(51,102,179,0.18);
  transform: translateY(-3px) scale(1.02);
  background: #E3F0FF;
}
.services h3 {
  margin-bottom: 4px;
  color: #3366B3;
}
.service-price {
  background: #FFDD65;
  color: #3366B3;
  font-weight: 700;
  font-size: 0.96rem;
  border-radius: 8px;
  padding: 2px 10px;
  margin-left: 4px;
  letter-spacing: 0.2px;
}
.category-tag {
  display: inline-block;
  background: #AECDF7;
  color: #3366B3;
  font-size: 0.92rem;
  border-radius: 8px;
  padding: 2px 11px;
  margin-top: 4px;
  margin-bottom: 2px;
  font-weight: 600;
}
.material-descriptions, .usage-scenarios {
  margin-top: 30px;
  background: #FAF7E0;
  border-radius: 10px;
  padding: 16px 20px;
}
.material-descriptions ul, .usage-scenarios ul {
  margin: 0;
  padding-left: 16px;
}
.material-descriptions li, .usage-scenarios li {
  margin-bottom: 7px;
  font-size: 1rem;
}

/************
** CTA
************/
.cta {
  background: linear-gradient(98deg,#FFDD65 0%, #FFFFFF 100%);
  margin-bottom: 60px;
  border-radius: 14px;
  box-shadow: 0 1px 12px 0 rgba(255,221,101,0.08);
  padding: 38px 0;
  text-align: center;
}
.cta .content-wrapper {
  align-items: center;
}
.cta h2 { color: #3366B3; }
.cta p { color: #2D3545; }
.cta .btn-primary { margin-top: 18px; }

/********************
** TESTIMONIALS CARDS
*********************/
.testimonials {
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  flex-direction: column;
  gap: 24px;
}
.testimonials h2 {
  margin-bottom: 6px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 3px 18px 0 rgba(51,102,179,0.09);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 660px;
  color: #26314E;
  font-size: 1.05rem;
  font-style: italic;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card p {
  color: #232943;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #546392;
  font-style: normal;
  font-weight: 600;
  margin-left: 2px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 44px 0 rgba(111,200,244,0.16);
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 768px) {
  .testimonials .content-wrapper { gap: 18px; }
  .testimonial-card { max-width: 100%; }
}

/*****************
** LEGAL & CONFIRMATION SECTIONS
*****************/
.legal-section, .confirmation-section, .contact-section {
  background: #FFF;
  margin-bottom: 60px;
  border-radius: 17px;
  box-shadow: 0 2px 18px 0 rgba(51,102,179,0.06);
  padding: 38px 0;
}
.legal-section h1, .confirmation-section h1, .contact-section h1 {
  color: #3366B3;
  margin-bottom: 24px;
}
.legal-section .text-section, .confirmation-section .text-section, .contact-section .text-section {
  margin-bottom: 14px;
}
.legal-section ul, .confirmation-section ul, .contact-section ul {
  margin-left: 18px;
  list-style: disc inside;
}
.legal-section li, .confirmation-section li, .contact-section li {
  margin-bottom: 8px;
}

/************
** FOOTER
************/
footer {
  background: #3366B3;
  color: #FFF;
  padding: 0;
}
footer .container {
  padding: 0 18px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  padding: 36px 0 24px 0;
  border-bottom: 1px solid #FFF4CC;
}
.footer-top > div, .footer-nav, .footer-social {
  flex: 1 1 200px;
}
.footer-nav {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-direction: column;
}
.footer-nav a {
  color: #FFF;
  font-size: 1.06rem;
  font-weight: 500;
  margin-bottom: 3px;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #FFDD65; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 17px;
}
.footer-social a {
  padding: 4px;
  border-radius: 7px;
  background: none;
  transition: background .21s;
}
.footer-social a:hover {background: #FFDD65;}
.footer-bottom {
  text-align: center;
  font-size: 0.98rem;
  color: #FFF;
  padding: 18px 0 11px;
}
footer address, footer address a {
  font-style: normal;
  color: #FFF;
  font-size: 0.99rem;
  margin-bottom: 4px;
}
footer address img {
  vertical-align: middle;
  margin-right: 4px;
  margin-bottom: 2px;
  height: 18px;
}
@media (max-width: 980px) {
  .footer-top { flex-direction: column; gap: 22px; text-align: center; align-items: center; }
}

/********************
** FLEXBOX PATTERNS
*********************/
.card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.card {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 4px 22px 0 rgba(51,102,179,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 18px 22px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .content-grid, .card-container, .card-grid { flex-direction: column; gap: 20px; }
  .text-image-section { flex-direction: column; gap: 18px; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***************
** FORMS, INPUTS
****************/
input, textarea, select {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid #AECDF7;
  padding: 10px 14px;
  margin-bottom: 10px;
  width: 100%;
  color: #232943;
  background: #FAF7E0;
  outline: none;
  transition: border-color .16s, box-shadow .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #3366B3;
  box-shadow: 0 0 0 2px #FFDD65;
}
button { font-family: inherit; }

/***************
** UTILITIES
***************/
.hide-mobile { display: block; }
.show-mobile { display: none; }
@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
}

/********************
** COOKIE CONSENT
*********************/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFF9E2;
  color: #2D3545;
  box-shadow: 0 -2px 22px 0 rgba(51,102,179,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 18px 20px 18px;
  z-index: 555;
  gap: 20px;
  transition: transform 0.38s cubic-bezier(.82,-0.09,.32,1.22);
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-banner .cookie-message {
  font-size: 1rem;
  margin-right: 17px;
  max-width: 430px;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  padding: 8px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: background .2s, color .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(255,221,101,0.07);
  margin-right: 2px;
}
.cookie-btn.accept {
  background: #3366B3;
  color: #FFF;
}
.cookie-btn.accept:hover {
  background: #6FC8F4;
}
.cookie-btn.reject {
  background: #FA9595;
  color: #FFF;
}
.cookie-btn.reject:hover {
  background: #F4845F;
}
.cookie-btn.settings {
  background: #FFDD65;
  color: #3366B3;
}
.cookie-btn.settings:hover {
  background: #FFE88F;
}
/******* COOKIE MODAL ******/
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 130%);
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 6px 50px 0 rgba(51,102,179,0.19);
  z-index: 9999;
  max-width: 99vw;
  width: 380px;
  padding: 36px 26px 24px 26px;
  color: #232943;
  transition: transform 0.29s cubic-bezier(.62,1.1,.37,1);
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #3366B3;
  margin-bottom: 13px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
}
.cookie-modal label {
  font-size: 1.03rem;
}
.cookie-toggle {
  width: 42px;
  height: 22px;
  appearance: none;
  background: #FFDD65;
  outline: none;
  border-radius: 99px;
  position: relative;
  box-shadow: 0 1px 5px #e6dca0a1;
  cursor: pointer;
  transition: background .25s;
}
.cookie-toggle:checked {
  background: #3366B3;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 2px; top: 2px;
  border-radius: 50%;
  background: #FFF;
  transition: left .23s;
}
.cookie-toggle:checked:before {
  left: 22px;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 19px;
}
.cookie-modal .cookie-close-btn {
  background: none;
  border: none;
  color: #3366B3;
  font-size: 2rem;
  position: absolute;
  top: 12px; right: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: background .16s;
}
.cookie-modal .cookie-close-btn:hover { background: #F7F6EF; }
@media (max-width: 500px) {
  .cookie-modal { padding: 28px 8px 18px 8px; width: 98vw; }
  .cookie-modal h2 { font-size: 1.1rem; }
}

/*******************
** ANIMATION/SMOOTH TRANSITIONS
********************/
*, *::before, *::after {
  box-sizing: inherit;
}
.menu-active {
  font-weight: 700;
  color: #FFBB33;
}

/*******************
** RESPONSIVE
********************/
@media (max-width: 1100px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.21rem; }
  h3 { font-size: 1rem; }
}
@media (max-width: 520px) {
  .btn-primary, .btn-secondary { font-size: 0.96rem; padding: 10px 16px; }
  .footer-nav { font-size: 0.94rem; }
}

/********************
** CUSTOM SCROLLBAR FOR MODERN LOOK
********************/
::-webkit-scrollbar { width: 8px; background: #FFF9E2; }
::-webkit-scrollbar-thumb { background: #AECDF7; border-radius: 4px; }

/********************
** MISC SPACING/PATTERNS
********************/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/**********************/
/* PREVENT OVERLAP & SPACING */
section, .section, .card, .testimonial-card, .card-container > *, .content-grid > * {
  margin-bottom: 20px;
}

/**********************
** Z-INDEX LAYERING
***********************/
header {z-index: 50;}
.mobile-menu {z-index: 60;}
.cookie-consent-banner {z-index: 555;}
.cookie-modal {z-index: 9999;}

/*---- END ----*/
