/* === 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, 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background-color: #F9FAFB;
  color: #222;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button, input, textarea {
  font-family: inherit;
}
:root {
  --primary: #1866A0;
  --secondary: #273142;
  --accent: #F6C343;
  --secondary-dark: #222222;
  --neutral-bg: #F9FAFB;
  --shadow-card: 0 4px 24px rgba(32,43,60,0.13);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --font-weight-bold: 700;
  --font-weight-medium: 500;
  --font-weight-regular: 400;
}

/* === CONTAINER & FLEX LAYOUTS === */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 900px) {
  .content-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
  }
  .container {
    gap: 0;
  }
}

/* === HEADER === */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(24,102,160,0.02);
  position: relative;
  z-index: 25;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}
/* Logo */
header a img {
  height: 38px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: var(--font-weight-medium);
  color: var(--primary);
  position: relative;
  letter-spacing: 0.01em;
  padding: 3px 2px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
  outline: none;
}

.cta-btn {
  background: var(--accent);
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.04em;
  padding: 12px 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 10px rgba(246,195,67,0.18);
  border: none;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.12s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(24,102,160,0.18);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  padding: 6px 16px;
  z-index: 1500;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--secondary-dark);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,49,66, 0.93);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.72,.02,.5,1.02);
  z-index: 2500;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 26px 0 0;
  background: transparent;
  color: #fff;
  font-size: 2.5rem;
  border: none;
  cursor: pointer;
  line-height: 1;
  align-items: center;
  transition: color 0.14s;
  z-index: 2600;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
  align-items: flex-end;
  width: 100%;
  padding: 0 34px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.65rem;
  font-weight: var(--font-weight-bold);
  padding: 13px 14px;
  border-radius: var(--radius-md);
  background: transparent;
  transition: background 0.2s, color 0.17s;
  min-width: 160px;
  text-align: right;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: var(--secondary-dark);
}

@media (min-width: 900px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 899px) {
  .main-nav, .cta-btn {
    display: none;
  }
  header .container {
    justify-content: flex-start;
    gap: 18px;
  }
}

/* === HERO & SECTION BASICS === */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
section > .container {
  gap: 0;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.18;
  margin-bottom: 12px;
}
h2 {
  font-size: 1.9rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 8px;
}
p, ul li, ol li {
  color: var(--secondary-dark);
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.75;
}
p {
  margin-bottom: 11px;
}
strong {
  font-weight: var(--font-weight-bold);
  color: var(--primary);
}

/* === FLEXBOX CONTENT LAYOUTS (Required Classes) === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px 22px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(24, 102, 160, 0.14);
  transform: translateY(-4px) scale(1.015);
}
.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 30px 20px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  max-width: 540px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px rgba(39,49,66,0.17);
  transform: scale(1.018) translateY(-2px);
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: var(--font-weight-medium);
  quotes: '“' '”';
  margin-bottom: 10px;
}
.testimonial-card blockquote:before {
  content: open-quote;
  font-size: 2rem;
  color: var(--accent);
  vertical-align: top;
  margin-right: 3px;
}
.testimonial-card .testimonial-author {
  font-size: 1rem;
  color: var(--secondary);
  font-family: var(--font-body);
  margin-left: 16px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === ICON & LIST DECORATION FOR ARTISTIC FEEL === */
.feature-icons img {
  width: 53px;
  height: 53px;
  margin-right: 16px;
  border-radius: 50%;
  background: var(--accent);
  padding: 10px;
  box-shadow: 0 2px 12px rgba(246, 195, 67, 0.16);
  transition: background 0.14s, box-shadow 0.16s;
}
.feature-icons img:hover {
  background: var(--primary);
  box-shadow: 0 4px 16px rgba(24,102,160,0.18);
}
.statistics {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
}
.statistics > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--primary);
  color: #fff;
  padding: 21px 28px 18px 28px;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  min-width: 125px;
}
.statistics strong {
  font-size: 2rem;
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 3px;
  font-weight: var(--font-weight-bold);
}
.statistics span {
  font-size: 1rem;
  color: var(--accent);
  text-align: center;
}

/* === ARTISTIC/CREATIVE COLOR ACCENTS & TYPO =======*/
h1, h2 {
  position: relative;
}
h1:after, h2:after {
  content: '';
  display: block;
  width: 58px;
  height: 5px;
  background: var(--accent);
  border-radius: 3px;
  margin-top:6px;
}
@media (max-width: 768px) {
  h1:after, h2:after {
    width: 37px;
  }
}

/* === BUTTONS === */
button, .cta-btn, .cookie-banner button {
  appearance: none;
  border: none;
  outline: none;
  font-family: var(--font-display);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  border-radius: var(--radius-lg);
  transition: background 0.15s, color 0.15s, box-shadow 0.17s;
}
button:focus, .cta-btn:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.cookie-banner .accept-cookie, .cookie-banner .reject-cookie {
  background: var(--primary);
  color: #fff;
  padding: 12px 26px;
  font-size: 16px;
  margin-right: 13px;
}
.cookie-banner .accept-cookie:hover, .cookie-banner .accept-cookie:focus {
  background: var(--accent);
  color: var(--secondary);
}
.cookie-banner .reject-cookie:hover, .cookie-banner .reject-cookie:focus {
  background: #dd3f3f;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: var(--primary);
  font-weight: var(--font-weight-bold);
  padding: 10px 18px;
  border: 2px solid var(--primary);
  margin-right: 0;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--primary);
  color: #fff;
}

/* === CARD-LIKE SECTIONS FOR SERVICE/PRICING === */
.service-cards, .pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.service-cards > div, .pricing-table > div {
  flex: 1 1 280px;
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.14s;
  display: flex;
  flex-direction: column;
  min-width: 230px;
}
.service-cards > div:hover, .pricing-table > div:hover {
  box-shadow: 0 7px 27px rgba(24,102,160,0.11);
  transform: translateY(-5px) scale(1.02);
}
.service-cards h3, .pricing-table h3 {
  margin-bottom: 10px;
}
.service-cards strong, .pricing-table strong {
  font-size: 1.16rem;
  color: var(--accent);
}

/* === TEXT SECTIONS, DETAILS, FAQs === */
.text-section {
  background: #F5F8FA;
  border-radius: var(--radius-md);
  padding: 28px 20px 18px 20px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--secondary-dark);
}
.faq-list > h3 {
  color: var(--primary);
  font-size: 1.10rem;
  margin-top: 12px;
  margin-bottom: 4px;
  font-family: var(--font-display);
}
.faq-list > p {
  margin-bottom: 13px;
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: #fff;
  padding: 34px 0 14px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
}
footer a {
  color: #fff;
  opacity: 0.94;
  font-weight: var(--font-weight-medium);
  margin-right: 18px;
  font-family: var(--font-body);
  transition: opacity 0.15s, color 0.13s;
}
footer a:hover, footer a:focus {
  opacity: 1;
  color: var(--accent);
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin: 8px 0 8px 0;
}
footer .text-section {
  background: transparent;
  color: #fff;
  font-size: 0.98rem;
  padding: 0;
  margin-left: 30px;
}
@media (max-width: 899px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  footer .text-section {
    margin-left: 4px;
    margin-top: 7px;
  }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #fff;
  color: var(--secondary-dark);
  box-shadow: 0 -3px 14px rgba(24,102,160,0.07);
  padding: 26px 14px 24px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 5000;
  font-family: var(--font-body);
  font-size: 1rem;
  animation: cookieFadeIn 0.38s ease-out;
}
@keyframes cookieFadeIn {
  0% { transform: translateY(60px); opacity:0; }
  74% { opacity:1; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 9px;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,32px) scale(0.96);
  min-width: 320px;
  max-width: 96vw;
  background: #fff;
  border-radius: var(--radius-lg);
  z-index: 6000;
  box-shadow: 0 6px 44px rgba(24,102,160,0.18);
  padding: 38px 26px 26px 26px;
  display: none;
  animation: cookieModalIn .33s cubic-bezier(.66,.03,.36,1.1);
}
.cookie-modal.open {
  display: block;
  animation: cookieModalIn .33s cubic-bezier(.66,.03,.36,1.1);
}
@keyframes cookieModalIn {
  
  0% { transform: translate(-50%,88px) scale(0.95); opacity:0; }
  59% { opacity:1; }
  100% { transform: translate(-50%,32px) scale(1); opacity:1; }
}
.cookie-modal h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.22rem;
  margin-bottom: 16px;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 17px;
}
.cookie-modal .cookie-toggle {
  min-width: 44px;
  height: 24px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 16px; top: 16px;
  color: var(--primary);
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .modal-close:hover, .modal-close:focus {
  color: #d63232;
}

/* === RESPONSIVE SPACING === */
@media (max-width: 900px) {
  .content-grid, .service-cards, .pricing-table, .statistics {
    flex-direction: column;
    gap: 22px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 30px 8px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    flex-direction: column !important;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .service-cards > div, .pricing-table > div {
    min-width: 0;
    padding: 20px 10px;
  }
}

/* === ARTISTIC FONTS FOR CREATIVE FLAVOR === */
h1, h2, .cta-btn, .main-nav a, .mobile-nav a {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

body {
  background: linear-gradient(127deg, #fdf6e3, #dbeafe 90%);
  background-size: 100% 100%;
}

/* === MICRO-INTERACTIONS === */
a, button, .cta-btn, .service-cards > div, .feature-icons img, .testimonial-card {
  transition: box-shadow 0.19s, color 0.13s, background 0.13s, transform 0.14s;
}

/* === VISUAL HIERARCHY & UNIQUE CREATIVE ELEMENTS === */
section > .container > h2, .feature-detail h3 {
  border-left: 7px solid var(--accent);
  padding-left: 12px;
  font-size: 1.65rem;
  background: rgba(246, 195, 67, 0.06);
  border-radius: 3px;
}

/* === UNIQUE LIST-STYLE FOR UL/OL === */
ul {
  margin-bottom: 16px;
}
ul li {
  position: relative;
  margin-left: 24px;
  margin-bottom: 7px;
  font-size: 1.07rem;
  font-family: var(--font-body);
}
ul li:before {
  content: '\2022';
  position: absolute;
  left: -19px;
  top: 0.2em;
  font-size: 1.4em;
  color: var(--accent);
  font-weight: bold;
}
ol {
  margin-bottom: 14px;
  margin-left: 19px;
  padding-left: 8px;
}
ol li {
  font-family: var(--font-body);
  color: var(--secondary-dark);
  font-size: 1.07rem;
  margin-bottom: 7px;
}

/* === TABLES === */
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  text-align: left;
  padding: 9px 13px;
  border-bottom: 1px solid #e4e8f5;
}

/* === ARTISTIC DECORATIVE SHAPES (Optional, Not absolute for content!) === */
.dec-blob {
  content: '';
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 60% 40% 55% 45%;
  background: var(--accent);
  position: absolute;
  z-index: 1;
  opacity: 0.09;
  left: -28px;
  top: -18px;
}

/* === ANIMATIONS === */
.cta-btn, .cookie-banner button, .main-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.17s, transform 0.13s;
}
.cta-btn:hover, .main-nav a:hover, .mobile-nav a:hover, .cookie-banner button:hover {
  transform: translateY(-2px) scale(1.03);
}

/* === Z-INDEX LAYERS === */
header { z-index: 25; }
.mobile-menu { z-index: 2500; }
.mobile-menu-close { z-index: 2600; }
.cookie-banner { z-index: 5000; }
.cookie-modal { z-index: 6000; }

/* === ACCESSIBILITY FOCUS VISIBLE (for KB navigation) === */
a:focus { outline: 2px solid var(--primary); outline-offset: 2px; }

/* === MISC/UTILITY === */
.hide { display: none !important; }

/* === END === */
