/* === CSS RESET & BASE STYLES === */
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,
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;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F5F7FA;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #1B2A41;
  background: #F5F7FA;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #35A7FF;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #FF4365;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 20px;
}
li {
  margin-bottom: 0.5em;
}

/* === BRAND FONTS === */
h1, h2, h3, h4 {
  font-family: 'Roboto Slab', 'Open Sans', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.22;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #1B2A41;
  text-shadow: 0 5px 16px rgba(53, 167, 255, 0.17);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #222;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #35A7FF;
  letter-spacing: 0.02em;
}
p, address {
  margin-bottom: 16px;
  color: #222;
  font-size: 1rem;
}
p.subheadline {
  font-size: 1.125rem;
  color: #1B2A41;
  font-weight: 600;
}
strong {
  font-weight: 700;
  color: #1B2A41;
}

/* === CONTAINER & LAYOUTS === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.text-section {
  margin-bottom: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(53,167,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
  }
}


/* === HEADER & NAVIGATION === */
header {
  background: #1B2A41;
  color: #fff;
  box-shadow: 0 3px 14px 0 rgba(53,167,255,0.06);
  position: sticky;
  top: 0;
  width: 100vw;
  z-index: 1001;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 20px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
header nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #fff;
  font-weight: 600;
  padding: 10px 0;
  font-size: 1rem;
  position: relative;
}
header nav a::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #35A7FF;
  transition: width 0.2s;
  border-radius: 2px;
}
header nav a:hover::after, header nav a:focus::after {
  width: 100%;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  background: #35A7FF;
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 32px;
  border-radius: 28px;
  box-shadow: 0 6px 24px 0 rgba(53,167,255,0.19);
  border: none;
  transition: background 0.22s, box-shadow 0.22s, transform 0.16s;
  letter-spacing: 0.04em;
  margin-left: 24px;
  cursor: pointer;
  text-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.cta-primary:hover, .cta-primary:focus {
  background: #1B2A41;
  color: #35A7FF;
  box-shadow: 0 10px 32px 0 rgba(255,67,101,0.23), 0 2px 12px 0 rgba(53,167,255,0.13);
  transform: translateY(-2px) scale(1.04);
}


/* === FLEXBOX-BASED LAYOUTS === */
.card-container, .article-list, .feature-grid, .faq-list, .resource-links, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}
.card-container {
  justify-content: flex-start;
}
.card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(53,167,255,0.13);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(255, 67, 101, 0.15), 0 2px 12px rgba(53, 167, 255, 0.12);
  transform: translateY(-2px) 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;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 32px;
  background: #F5F7FA;
  border-left: 5px solid #35A7FF;
  border-radius: 12px;
  box-shadow: 0 1px 9px rgba(27,42,65,0.08);
  margin-bottom: 20px;
  color: #14191F;
  min-width: 220px;
  max-width: 600px;
  font-size: 1.1rem;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #1B2A41;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 16px 20px 16px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 14px 0 rgba(27,42,65,0.09);
  margin-bottom: 18px;
  border-left: 4px solid #35A7FF;
}

/* === SPECIAL LIST STYLES === */
.feature-grid>li {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px 22px 20px;
  box-shadow: 0 2px 14px 0 rgba(27, 42, 65, 0.08);
  margin-bottom: 20px;
  gap: 12px;
  border-left: 4px solid #35A7FF;
  transition: border-color 0.19s, box-shadow 0.18s, transform 0.18s;
}
.feature-grid>li:hover {
  border-left-color: #FF4365;
  box-shadow: 0 8px 36px rgba(53,167,255,0.13), 0 2px 16px 0 rgba(255,67,101,0.09);
  transform: translateY(-3px) scale(1.022);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.article-list>li {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 1px 8px 0 rgba(53,167,255,0.08);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.article-list>li:hover {
  box-shadow: 0 6px 24px 0 rgba(255,67,101,0.13);
  transform: translateY(-2px) scale(1.014);
}

.resource-links>li {
  flex: 1 1 240px;
  margin-bottom: 8px;
}
.resource-links>li a {
  display: inline-block;
  padding: 8px 18px;
  background: #35A7FF;
  color: #fff;
  border-radius: 24px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.19s;
}
.resource-links>li a:hover, .resource-links>li a:focus {
  background: #FF4365;
  color: #fff;
}

.faq-list {
  flex-direction: column;
  gap: 20px;
}
.faq-list>li strong {
  color: #35A7FF;
}

/* === SPACING HELPERS === */
.mb-24 { margin-bottom: 24px; }
.mt-24 { margin-top: 24px; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }

/* === FOOTER STYLES === */
footer {
  background: #1B2A41;
  color: #F5F7FA;
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  padding-top: 38px;
  padding-bottom: 22px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer-col {
  flex: 1 1 240px;
  min-width: 180px;
}
.footer-col img {
  width: 50px;
  margin-bottom: 11px;
}
.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col nav a {
  color: #F5F7FA;
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 0;
  transition: color 0.17s;
}
.footer-col nav a:hover {
  color: #35A7FF;
}
.footer-col h4 {
  color: #35A7FF;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
footer address {
  font-style: normal;
  color: #F5F7FA;
  letter-spacing: 0.01em;
  font-size: 0.96rem;
}
footer address img {
  width: 19px;
  vertical-align: sub;
  margin-right: 5px;
}
.footer-bottom {
  width: 100%;
  text-align: center;
  color: #b1c5da;
  border-top: 1px solid #31425e;
  padding: 18px 0 0 0;
  font-size: 0.93rem;
}

/* === BUTTONS & INTERACTIVITY === */
button, .cta-primary, .mobile-menu-toggle {
  outline: none;
  border: none;
}
button {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  background: none;
  cursor: pointer;
}


/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 18px;
  top: 14px;
  z-index: 2001;
  background: #fff;
  color: #1B2A41;
  font-size: 2.3rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 12px rgba(53,167,255,0.13);
  transition: background 0.19s, box-shadow 0.19s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #35A7FF;
  color: #fff;
}
@media (max-width: 1024px) {
  header nav, header .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,42,65,0.96);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.62,.26,.24,1.01);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 22px 0 0;
  font-size: 2.4rem;
  color: #35A7FF;
  background: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.17s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  background: #35A7FF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin: 36px 0 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.18s;
  width: 90vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #35A7FF;
  color: #fff;
}
@media (max-width: 630px) {
  .mobile-nav {
    margin-left: 18px;
    gap: 18px;
  }
  .mobile-nav a {
    font-size: 1.1rem;
    width: 98vw;
  }
}


/* === RESPONSIVENESS === */
@media (max-width: 1024px) {
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 32px;
  }
  .footer-col {
    min-width: 160px;
  }
}
@media (max-width: 900px) {
  .article-list, .feature-grid, .resource-links, .card-container {
    gap: 16px;
  }
  
}
@media (max-width: 768px) {
  .feature-grid, .article-list, .card-container, .footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    padding: 20px 12px;
  }
  .card {
    padding: 18px 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .cta-primary { padding: 12px 18px; font-size: 0.97rem; margin-left: 0; }
}
@media (max-width: 490px) {
  .footer-col {
    min-width: 80px;
  }
  .footer .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.1rem; }
}

/* === COOKIES CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #222;
  box-shadow: 0 -2px 16px rgba(27,42,65,.12);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 18px 18px 18px;
  transition: transform 0.3s cubic-bezier(.59,.24,.19,.96), opacity 0.21s;
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner p {
  color: #1B2A41;
  margin-bottom: 10px;
  font-size: 1rem;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 0;
}
.cookie-banner button {
  background: #35A7FF;
  color: #fff;
  border-radius: 20px;
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 4px;
  border: none;
  transition: background 0.18s, color 0.17s, transform 0.13s;
  box-shadow: 0 3px 14px 0 rgba(53,167,255,0.08);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FF4365;
  color: #fff;
  transform: translateY(-1px) scale(1.04);
}
.cookie-banner .cookie-settings-btn {
  background: #F5F7FA;
  color: #1B2A41;
  border: 1.5px solid #35A7FF;
  margin-left: 8px;
  transition: background 0.18s, color 0.17s;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #35A7FF;
  color: #fff;
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(27,42,65,0.61);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #1B2A41;
  border-radius: 16px;
  box-shadow: 0 4px 32px 0 rgba(53,167,255,0.13), 0 2px 16px 0 rgba(255,67,101,0.09);
  width: 94vw;
  max-width: 450px;
  padding: 38px 32px 28px 32px;
  display: none;
  flex-direction: column;
  gap: 18px;
  animation: slideUpModal 0.4s cubic-bezier(.57,.26,.18,.92);
  position: relative;
}
@keyframes slideUpModal {
  from { transform: translateY(70px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.36rem;
  color: #35A7FF;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-modal label {
  flex: 1 1 0;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #35A7FF;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal button {
  background: #35A7FF;
  color: #fff;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 22px;
  border: none;
  transition: background 0.18s, color 0.17s, transform 0.13s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #FF4365;
  color: #fff;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 1.7rem;
  background: none;
  color: #1B2A41;
  border: none;
  cursor: pointer;
}
.cookie-modal .modal-close:hover {
  color: #35A7FF;
}
@media (max-width: 520px) {
  .cookie-modal {
    max-width: 95vw;
    padding: 20px 10px;
  }
  .cookie-modal h2 {
    font-size: 1.04rem;
  }
}

/* === SCROLLBAR STYLING (ENERGETIC) === */
::-webkit-scrollbar {
  width: 13px;
  background: #F5F7FA;
}
::-webkit-scrollbar-thumb {
  background: #35A7FF;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FF4365;
}

/* === ANIMATIONS & MICRO-INTERACTIONS === */
a, button, .cta-primary, .feature-grid>li, .testimonial-card, .card {
  transition: box-shadow 0.18s, color 0.14s, border-color 0.12s, transform 0.16s, background 0.13s;
}

/* === HIGH CONTRAST FOR TESTIMONIAL TEXT === */
.testimonial-card, .testimonial-card p {
  color: #1B2A41;
  background: #F5F7FA;
}

/* === CONTACT HINT === */
.contact-hint p {
  background: #35A7FF;
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 0;
  box-shadow: 0 2px 10px 0 rgba(53,167,255,0.10);
}

/* === MISC === */
main {
  margin-top: 18px;
}
address a {
  color: #35A7FF;
  word-break: break-all;
}
address a:hover { color: #FF4365; }

hr {
  border: none;
  border-top: 1.5px solid #D8E6F5;
  margin: 28px 0;
}

/* === ERROR & SUCCESS (e.g. on thanks.php feedback) === */
.success-msg {
  background: #D1F2EB;
  color: #1B2A41;
  padding: 16px 24px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 3px 14px 0 rgba(53,167,255,0.08);
  margin-bottom: 18px;
}
.error-msg {
  background: #FFC1B5;
  color: #B61818;
  padding: 16px 24px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 3px 14px 0 rgba(255,67,101,0.14);
  margin-bottom: 18px;
}

/* === ELECTRIC HIGHLIGHTS === */
.electric {
  color: #FF4365;
  font-weight: 700;
  letter-spacing: 0.04em;
}

::selection {
  background: #35A7FF;
  color: #fff;
}

/* === FOCUS STATE FOR ACCESSIBILITY === */
a:focus, button:focus, .cta-primary:focus {
  outline: 2px dotted #FF4365;
  outline-offset: 2px;
}

/* == Always reserve 20px margins & gap between content cards/sections == */
.section + .section {
  margin-top: 20px;
}
.card + .card, .testimonial-card + .testimonial-card, .feature-grid>li + .feature-grid>li, .article-list>li + .article-list>li {
  margin-top: 20px;
}

/* === DYNAMIC/ENERGETIC EFFECTS FOR VIBRANT BRAND === */
.feature-grid>li:hover h3, .article-list>li:hover h3 {
  color: #FF4365;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px #35A7FF49;
}

.cta-primary:active { box-shadow: 0 4px 12px #35A7FF33; }

button:active {
  transform: scale(0.97);
}

/* === ELECTRIC COLOR VARIANT === */
.accent-bg {
  background: #35A7FF;
  color: #fff;
}
.text-electric {
  color: #FF4365;
  font-weight: bold;
}

/* === END OF FILE === */
