/* === CSS RESET & NORMALIZE === */
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;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}
html, body {
  height: 100%;
  background: #F5F5F5;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #03506F;
  font-size: 16px;
  line-height: 1.6;
  background: #F5F5F5;
  min-height: 100vh;
  position: relative;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
:focus {
  outline: 2px solid #1F7A8C;
  outline-offset: 2px;
}

/* === BRAND COLORS AND FONT FACES === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');
:root {
  --primary: #1F7A8C;
  --secondary: #F5F5F5;
  --accent: #03506F;
  --brand-dark: #074963;
  --brand-light: #FFFFFF;
  --electric-cyan: #05c4ff;
  --electric-pink: #fe38a8;
  --electric-lime: #b0ff29;
  --shadow: 0 3px 24px 0 rgba(31, 122, 140, 0.13);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--brand-dark);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.1;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  line-height: 1.18;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
strong, b {
  font-weight: 700;
  color: var(--brand-dark);
}
p, ul, ol, li, address {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}

/* === CONTAINERS & SECTIONS === */
.container {
  width: 100%;
  max-width: 1150px;
  padding: 0 20px;
  margin: 0 auto;
}
.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width:900px) {
  .content-wrapper {
    max-width: 750px;
    padding: 0;
  }
}

/* === HEADER === */
header {
  width: 100%;
  padding: 0 0 0 0;
  min-height: 72px;
  background: var(--primary);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 30;
  box-shadow: 0 2px 14px 0 rgba(3,80,111,0.09);
}
header .logo {
  display: flex;
  align-items: center;
  padding: 15px 24px 15px 16px;
}
header .logo img {
  height: 40px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-right: auto;
  margin-left: 16px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1rem;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.22s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--electric-cyan);
  color: var(--brand-dark);
}
.cta-button {
  display: inline-block;
  background: linear-gradient(90deg,var(--electric-pink) 0%, var(--primary) 100%);
  color: #fff;
  padding: 11px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.7px;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px 0 rgba(5,196,255,0.08);
  margin-left: 20px;
  transition: background 0.19s, box-shadow 0.19s, transform 0.1s;
  border: none;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg,var(--brand-dark) 0%, var(--electric-cyan) 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 28px 0 rgba(254,56,168,0.11);
}
header .mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  margin-right: 16px;
  margin-left: 16px;
  border-radius: var(--radius-md);
  width: 44px; height: 44px;
  transition: background 0.16s;
  cursor: pointer;
  z-index: 105;
}
header .mobile-menu-toggle:focus, header .mobile-menu-toggle:hover {
  background: var(--electric-cyan);
  color: var(--brand-dark);
}
@media (min-width: 1000px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 999px) {
  .main-nav, .cta-button {
    display: none;
  }
}

/* === MOBILE BURGER MENU === */
.mobile-menu {
  position: fixed;
  background: var(--primary);
  color: #fff;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 400px;
  height: 100vh;
  z-index: 1100;
  padding-top: 0;
  padding-bottom: 36px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.61,-0.4,.36,1.28);
  box-shadow: -6px 0 32px 0 rgba(3,80,111,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  font-size: 2.3rem;
  border: none;
  margin: 20px 22px 18px 0;
  padding: 8px;
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.17s;
  cursor: pointer;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--electric-pink);
  color: var(--brand-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  width: 90%;
  align-self: center;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.17rem;
  letter-spacing: 1px;
  padding: 13px 12px;
  border-radius: var(--radius-md);
  color: #fff;
  background: none;
  transition: background 0.2s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric-cyan);
  color: var(--brand-dark);
}
@media (min-width: 1000px) {
  .mobile-menu {
    display: none !important;
  }
}

/* === HERO SECTIONS === */
.hero {
  background: linear-gradient(85deg, var(--electric-cyan) 0%, #fff 80%);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  min-height: 300px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 22px;
  padding: 36px 0 36px 0;
}
.hero h1 {
  color: var(--brand-dark);
  font-size: 2.2rem;
  text-shadow: 0 4px 18px #00c8ef1a;
}
.hero p {
  color: var(--brand-dark);
  font-size: 1.15rem;
  margin-bottom: 0;
  max-width: 550px;
}
@media (min-width:800px) {
  .hero {
    min-height: 340px;
    padding-left: 0;
    padding-right: 0;
  }
  .hero h1 {
    font-size: 2.9rem;
  }
  .hero p {
    font-size: 1.23rem;
  }
}

/* === FLEXBOX CARD CONTAINERS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 240px;
  flex: 1 1 240px;
  transition: box-shadow 0.19s, transform 0.14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 32px 0 rgba(5,196,255,0.13);
  transform: translateY(-4px) scale(1.016);
}

.product-highlights, .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.product-highlights > div, .product-grid > div {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 32px 26px 24px 26px;
  margin-bottom: 20px;
  min-width: 230px;
  flex: 1 1 240px;
  transition: box-shadow 0.18s, transform 0.13s;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product-highlights > div:hover, .product-grid > div:hover,
.product-highlights > div:focus-within, .product-grid > div:focus-within {
  box-shadow: 0 7px 32px 0 var(--electric-cyan);
  transform: translateY(-3px) scale(1.02);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .card-container, .product-grid, .product-highlights {
    flex-direction: column;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 2px 22px 0 rgba(31,122,140,0.08);
  font-size: 1.01rem;
  color: #072735;
  position: relative;
  min-width: 0;
}
.testimonial-card:before {
  content: '“';
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: var(--electric-cyan);
  font-size: 2.8rem;
  line-height: 1;
  margin-right: 14px;
}
.testimonial-card p {
  color: #072735;
  font-size: 1.02rem;
  margin: 0 0 0 0;
}
.testimonial-card strong {
  color: var(--brand-dark);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* =========== FLEX-BASED LAYOUTS =========== */
.features > .container > .content-wrapper > ul,
.values > .container > .content-wrapper > ul,
.services > .container > .content-wrapper > ul,
.services-overview > .container > .content-wrapper > ul,
.product-list > .container > .content-wrapper > ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width:900px) {
  .features > .container > .content-wrapper > ul,
  .values > .container > .content-wrapper > ul,
  .services > .container > .content-wrapper > ul,
  .services-overview > .container > .content-wrapper > ul,
  .product-list > .container > .content-wrapper > ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }
}
.services-list ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.services-list ul li {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  position: relative;
  transition: box-shadow 0.14s, transform 0.13s;
}
.services-list ul li:hover, .services-list ul li:focus-within {
  box-shadow: 0 8px 26px 0 var(--electric-cyan);
  transform: scale(1.025);
}
.services-list ul li img {
  width: 36px; height: 36px;
  margin-bottom: 3px;
}
.services-list ul li strong {
  font-size: 1.11rem;
  color: var(--primary);
  margin-bottom: 5px;
}
.services-list ul li span {
  color: var(--electric-pink);
  font-weight: 700;
  margin-top: 4px;
  font-size: 1.05rem;
}

/* === SECTION SPACING (MANDATORY) === */
.section, main 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;
}

/* === TABLES, ADDRESSES, LEGAL === */
address {
  margin-bottom: 12px;
  font-style: normal;
  color: var(--brand-dark);
  line-height: 1.4;
  background: #f9fbfc;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
}
.legal .text-section ul {
  margin-top: 10px;
  margin-bottom: 10px;
}
.legal ul, .legal ol {
  padding-left: 24px;
  margin-bottom: 12px;
}

/* === CALL TO ACTION SECTIONS === */
.cta {
  background: linear-gradient(88deg, var(--electric-pink) 1%, var(--electric-lime) 85%);
  border-radius: var(--radius-lg);
  color: var(--brand-dark);
  text-shadow: 0 2px 8px #b0ff2902;
  margin-bottom: 40px;
}
.cta .cta-button {
  background: linear-gradient(90deg,var(--primary) 0%, var(--accent) 100%);
  color: #fff;
}
.cta .cta-button:hover, .cta .cta-button:focus {
  background: linear-gradient(90deg,var(--electric-pink) 0%, var(--electric-cyan) 100%);
}

/* === FOOTER === */
footer {
  width: 100%;
  background: var(--brand-dark);
  color: #fff;
  margin-top: 40px;
  padding-top: 40px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 24px 20px 24px;
}
.footer-top .logo img {
  width: 44px;  display:block;
  margin-bottom: 8px;
}
.footer-top nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-top nav a {
  color: #fff;
  font-weight: 600;
  padding: 6px 0;
  font-family: Montserrat, Arial, sans-serif;
  border-radius: var(--radius-sm);
  transition: background 0.12s, color 0.12s;
}
.footer-top nav a:hover, .footer-top nav a:focus {
  color: var(--electric-cyan);
}
.footer-bottom {
  border-top: 1px solid #22879922;
  text-align: left;
  font-size: 0.99rem;
  color: #f1f9fa;
  padding: 16px 24px;
  margin-top: 0;
}
@media (min-width: 700px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-top nav {
    flex-direction: row;
    gap: 18px;
  }
  .footer-bottom {
    text-align: right;
  }
}

/* === RESPONSIVENESS === */
@media (max-width: 600px) {
  .container {
    padding: 0 10px;
  }
  .section, main section {
    padding: 28px 7px;
    margin-bottom: 36px;
  }
  .card, .product-highlights > div, .product-grid > div {
    padding: 20px 10px;
  }
}

/* === GENERAL UI ELEMENTS === */
ul, ol {
  margin-bottom: 18px;
}
ul li:before, ol li:before {
  display: none !important;
}
li {
  margin-bottom: 7px;
  line-height: 1.55;
}
a.underline, .main-nav a.active {
  text-decoration: underline;
  color: var(--electric-pink);
}

/* === MICRO-INTERACTIONS === */
.card, .card:hover, .cta-button, .cta-button:hover, .product-highlights > div, .product-highlights > div:hover {
  transition: box-shadow 0.19s, transform 0.13s, background 0.2s, color 0.14s;
}

/* === FORM FIELDS === */
input, textarea, select {
  border: 1.5px solid #c3eaff;
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  margin-bottom: 20px;
  font-size: 1.03rem;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #f9fafe;
  transition: border 0.17s, box-shadow 0.12s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--primary);
  box-shadow: 0 0 0 2px var(--electric-cyan);
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -8px 32px -10px var(--primary);
  padding: 18px 20px 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  z-index: 2050;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: transform 0.3s cubic-bezier(.47,1.64,.41,.8);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner .banner-text {
  flex:1 1 320px;
  color: var(--brand-dark);
  font-size: 1.05rem;
}
.cookie-banner .banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  border: none;
  font-size: 1rem;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-banner .btn-accept {
  background: var(--electric-cyan);
  color: #fff;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: var(--primary);
}
.cookie-banner .btn-reject {
  background: #f2f2f2;
  color: var(--brand-dark);
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: var(--electric-pink);
  color: #fff;
}
.cookie-banner .btn-settings {
  background: #fff;
  color: var(--electric-cyan);
  border: 2px solid var(--electric-cyan);
  padding: 9px 17px;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: var(--electric-cyan);
  color: #fff;
}
@media (max-width: 767px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    font-size: 0.98rem;
  }
  .cookie-banner .banner-text, .cookie-banner .banner-actions {
    width: 100%;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27, 64, 90, 0.39);
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.26s;
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius-lg);
  min-width: 300px;
  max-width: 96vw;
  box-shadow: 0 7px 42px 0 var(--primary);
  padding: 32px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  color: var(--primary);
  font-size: 1.32rem;
  margin-bottom: 4px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.02rem;
  margin-bottom: 7px;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #e3eff3;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.14s;
  margin-right: 6px;
}
.cookie-toggle:checked {
  background: var(--electric-cyan);
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2.5px;
  top: 2.2px;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.14s;
  box-shadow: 0 2px 6px 0 #0002;
}
.cookie-toggle:checked::before {
  left: 18px;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', sans-serif;
  padding: 9px 21px;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.14s;
}
.cookie-modal-actions .btn-save {
  background: var(--electric-cyan);
  color: #fff;
}
.cookie-modal-actions .btn-save:hover {
  background: var(--primary);
}
.cookie-modal-actions .btn-cancel {
  background: #e3eff3;
  color: var(--brand-dark);
}
.cookie-modal-actions .btn-cancel:hover {
  background: var(--electric-pink);
  color: #fff;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  border: none;
  background: none;
  font-size: 2rem;
  color: var(--electric-pink);
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--accent);
}

/* === SPECIAL BACKGROUNDS & DYNAMIC EFFECTS === */
.section, .card, .testimonial-card, .cta, .product-highlights > div, .product-grid > div, .services-list ul li {
  background: #fff;
  box-shadow: var(--shadow);
}

/* === MISCELLANEOUS === */
::-webkit-input-placeholder {color: #bbb;}
::-moz-placeholder {color: #bbb;}
:-ms-input-placeholder {color: #bbb;}
::placeholder {color: #bbb;}

/**** VISUAL ENERGY (electric accents and bolder elements) ****/
h1, h2, .cta-button, .main-nav a:hover, .mobile-nav a:hover, .cookie-banner .btn-accept, .services-list ul li strong, .card:hover h3, .testimonial-card:before {
  text-shadow: 0 2px 10px #29e1ff14, 0 1px 2px #efefef28;
}

/* Unmistakably vibrant energetic: colored shadows, dynamic gap/spacing, bold font, energetic hover effects. */

/* === PRINT (optional for legal pages) === */
@media print {
  header, .footer-top, .footer-bottom, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  .container, main, .section { box-shadow: none !important; background: #fff !important; }
}
