/* ==== RESET & BASE ==== */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  background: #EEF3F4;
  color: #145574;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
a {
  color: #1EA7B5;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #145574;
}
::selection {
  background: #1EA7B5;
  color: #fff;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #145574;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  color: #176679;
  margin-bottom: 28px;
}
@media (min-width: 992px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
}

/* ==== CONTAINER & LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 24px rgba(30, 167, 181, 0.07), 0 1.5px 8px rgba(20,85,116,0.07);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 6px;
    border-radius: 14px;
    margin-bottom: 38px;
  }
}

.card-container, .features-grid, .services-grid, .service-list, .testimonials-grid, .cases-grid, .values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-card, .service-box, .case-card, .value-item, .feature-item, .testimonial-card, .article-item, .faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(30,167,181,0.08);
  padding: 28px 26px 24px 26px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .23s, transform .19s;
}
.card:hover,.service-card:hover,.service-box:hover,.case-card:hover,.value-item:hover,.feature-item:hover,.testimonial-card:hover, .article-item:hover {
  box-shadow: 0 8px 36px rgba(30,167,181,.13);
  transform: translateY(-6px) scale(1.022);
}

.content-grid, .tips-highlights, .results-list, .applications-list, .solutions-list, .offer-types, .contact-info, .faq-list, .articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .features-grid, .services-grid, .service-list, .testimonials-grid, .cases-grid, .values-grid{
    flex-direction: column;
    gap: 22px;
  }
  .content-grid, .tips-highlights, .results-list, .applications-list, .solutions-list {
    flex-direction: column;
    gap: 16px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border: 2px solid #EEF3F4;
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #222;
}
.client-name {
  color: #1EA7B5;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 6px;
  letter-spacing: 0.01em;
}

.feature-item, .value-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-item img, .value-item img {
  width: 52px;
  height: 52px;
  margin-bottom: 6px;
}
.feature-item h3, .value-item h3 {
  font-size: 1.18rem;
  margin-bottom: 0;
  color: #145574;
  font-weight: 800;
}

/* ==== BUTTONS & CTAs ==== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1EA7B5;
  color: #fff;
  border: none;
  border-radius: 36px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.07rem;
  padding: 13px 36px;
  box-shadow: 0 3px 14px rgba(30,167,181,.13);
  transition: background .18s, transform .15s, box-shadow .2s;
  letter-spacing: 0.016em;
  cursor: pointer;
  margin-top: 10px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #145574;
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(30,167,181,.20);
  color: #fff;
}
button, input[type="button"], input[type="submit"] {
  cursor: pointer;
  transition: background .17s, box-shadow .17s, color .18s;
}

/* ==== HEADER ==== */
header {
  background: #145574;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 201;
  box-shadow: 0 2px 5px rgba(30,167,181,0.05);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo, .logo-footer {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img, .logo-footer img {
  height: 44px;
  width: auto;
  margin-right: 6px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1rem;
  position: relative;
  padding: 4px 2px;
  transition: color .18s;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2.5px;
  background: #1EA7B5;
  transition: width .18s;
  border-radius: 4px;
  margin-top: 2.5px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #1EA7B5;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.header .cta-btn {
  margin-left: 20px;
}

.mobile-menu-toggle {
  display: none;
  position: relative;
  background: #1EA7B5;
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  margin-left: 26px;
  z-index: 204;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #176679;
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 85, 116, 0.96);
  transform: translateX(-100vw);
  transition: transform .36s cubic-bezier(.88,-0.01,.64,1.22), opacity .23s;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 32px 0 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 30px 30px 0 0;
  background: none;
  color: #fff;
  font-size: 2.3rem;
  border: none;
  cursor: pointer;
  z-index: 3100;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 60px;
  gap: 18px;
  width: 80vw;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.28rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 0;
  width: 100%;
  border-radius: 10px;
  transition: background .16s, color .19s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #1EA7B5;
  color: #fff;
}

/* ==== HERO/SECTION AREAS ==== */
main > section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
@media (max-width: 768px) {
  main > section {
    padding: 26px 0 30px 0;
    margin-bottom: 38px;
  }
}

.cta-box, .confirmation-box {
  background: linear-gradient(125deg, #1EA7B5 94%, #145574 100%);
  color: #fff;
  padding: 38px 28px;
  border-radius: 24px;
  box-shadow: 0 6px 36px rgba(30,167,181,.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.cta-box h2, .confirmation-box h1 {
  color: #fff;
  font-weight: 900;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ==== FOOTER ==== */
footer {
  background: #145574;
  color: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 -2px 7px rgba(30,167,181,.05);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 0 24px 0;
  gap: 32px;
}
.logo-footer img {
  height: 36px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  transition: color .18s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #1EA7B5;
}
.brand-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #B4D5E5;
  font-size: 0.99rem;
}
.footer-bottom {
  border-top: 1.5px solid #1EA7B5;
  padding: 12px 0 10px 0;
  text-align: center;
  color: #B4D5E5;
  font-size: .95rem;
}
@media (max-width: 800px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* ==== PRICES & BADGES ==== */
.service-price {
  display: inline-block;
  font-size: 1.08rem;
  color: #1EA7B5;
  font-weight: 900;
  margin-top: 8px;
  background: #EEF3F4;
  border-radius: 16px;
  padding: 7px 18px;
  letter-spacing: 0.01em;
}

/* ==== TIPS, OFFERS, SOLUTIONS, FAQ ==== */
.tips-highlights ul, .results-list ul, .applications-list ul, .solutions-list ul, .offer-types ul, .faq-list ul, .policy-section ul {
  padding-left: 20px;
}
.tips-highlights li, .results-list li, .applications-list li, .solutions-list li, .offer-types li, .faq-list li, .policy-section li {
  margin-bottom: 10px;
  font-size: 1rem;
}
.faq-item {
  border-left: 4px solid #1EA7B5;
  background: #F4FCFE;
}
.faq-item h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: #145574;
}
.faq-answer {
  margin-top: 7px;
}

/* ==== POLICY/INFORMATION SECTIONS ==== */
.policy-section {
  margin-bottom: 30px;
  background: #fff;
  padding: 20px 24px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(30,167,181,.06);
}
.policy-section h2 {
  font-size: 1.19rem;
  margin-bottom: 7px;
  color: #145574;
}
.policy-section p {
  font-size: 1rem;
}

/* ==== CONTACT/INFO BOXES ==== */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-info > div {
  flex: 1 1 220px;
  min-width: 200px;
  background: #F8FBFC;
  border-radius: 14px;
  padding: 18px 20px 16px 20px;
  box-shadow: 0 1.5px 5px rgba(30,167,181,0.09);
}
.contact-info h2 {
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.contact-details a {
  color: #1EA7B5;
  font-weight: 700;
}

.contact-form-info {
  background: #EEF3F4;
  padding: 15px 22px;
  border-radius: 14px;
  font-size: 1rem;
}

.confirmation-box {
  padding: 42px 22px;
}
.confirmation-box a {
  margin-top: 28px;
}

/* ==== ARTICLE/NEWS LIST ==== */
.article-item {
  border-left: 5px solid #1EA7B5;
  background: #FFF;
  padding: 24px 22px;
}
.article-item h3 {
  color: #145574;
  font-size: 1.16rem;
  margin-bottom: 8px;
}

/* ==== SPECIAL UTILITY CLASSES ==== */
.mb-20 { margin-bottom: 20px; }
.mt-24 { margin-top: 24px; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* ==== ANIMATIONS & MICRO-INTERACTIONS ==== */
.card, .service-card, .service-box, .case-card, .feature-item, .testimonial-card, .article-item {
  transition: box-shadow .23s, transform .18s;
}
.cta-btn, .main-nav a, .mobile-nav a, .footer-menu a {
  transition: background .17s, color .17s, box-shadow .2s, transform .18s;
}
.cta-btn:active {
  transform: scale(0.96);
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1100px) {
  .container { max-width: 980px; }
}
@media (max-width: 990px) {
  .container { max-width: 97vw; }
}
@media (max-width: 600px) {
  .container { padding-left: 4vw; padding-right: 4vw; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.35rem; }
}
@media (max-width: 480px) {
  .footer-top, .card-container, .features-grid,
  .services-grid, .service-list, .testimonials-grid, .cases-grid, .values-grid {
    gap: 10px;
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF;
  color: #145574;
  box-shadow: 0 -1px 18px rgba(20,80,120,0.11);
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  z-index: 4950;
  font-size: 1rem;
  transition: transform .34s cubic-bezier(.83,-0.02,.49,1.2), opacity .22s;
}
.cookie-banner.hide {
  pointer-events: none;
  opacity: 0;
  transform: translateY(80px);
}
.cookie-banner p {
  max-width: 440px;
  line-height: 1.5;
  color: #145574;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #EEF3F4;
  border: none;
  color: #145574;
  border-radius: 20px;
  padding: 7px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 0;
  transition: background .13s, color .13s;
}
.cookie-btn.accept {
  background: #1EA7B5;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #145574;
  color: #fff;
}
.cookie-btn.settings {
  background: #176679;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #1EA7B5;
  color: #fff;
}
.cookie-btn.reject {
  background: #EEF3F4;
  color: #145574;
  border: 1px solid #1EA7B5;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #1EA7B5;
  color: #fff;
}

@media (max-width: 630px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
    padding: 14px 7px;
  }
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(20, 85, 116, 0.62);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  transition: opacity .23s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #FFF;
  border-radius: 15px;
  padding: 34px 22px 24px 22px;
  max-width: 380px;
  width: 96vw;
  box-shadow: 0 10px 36px rgba(20,87,116,0.23);
  z-index: 5050;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: fadeInModal .33s;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(.93); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  margin-bottom: 7px;
  color: #145574;
  font-size: 1.16rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category-label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 10px;
}
.cookie-category-label input[type='checkbox'] {
  accent-color: #1EA7B5;
  width: 19px; height: 19px;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.cookie-modal-actions .cookie-btn {
  padding: 7px 16px;
  font-size: 1rem;
}


/* ==== SCROLLBAR ==== */
::-webkit-scrollbar {
  width: 10px;
  background: #EEF3F4;
}
::-webkit-scrollbar-thumb {
  background: #176679;
  border-radius: 8px;
}

/* ==== COLORS, HIGHLIGHTS, ENERGY ==== */
.primary-text { color: #145574; }
.accent-text { color: #1EA7B5; }
.secondary-bg { background: #EEF3F4; }
.vibrant { color: #1EA7B5; font-weight: bold; }

/* ==== VIBRANT/ENERGETIC EFFECTS ==== */
.feature-item img, .service-card:hover h3, .case-card:hover h3,
.cta-btn, .mobile-menu-toggle, .main-nav a:hover, .mobile-nav a:hover, .footer-menu a:hover, .cta-box, .confirmation-box {
  filter: brightness(1.10) saturate(1.10);
}

/* ===== Z-INDEXS for HEADER & OVERLAYS ==== */
header { z-index: 201; }
.mobile-menu { z-index: 3000; }
.cookie-banner { z-index: 4950; }
.cookie-modal-overlay { z-index: 5000; }

/* ==== OVERRIDES FOR NO OVERLAPPING ==== */
.card, .service-card, .service-box, .feature-item, .case-card, .testimonial-card, .contact-info > div {
  margin-bottom: 20px;
}
.features-grid > .feature-item, .services-grid > .service-card,
.values-grid > .value-item,
.cases-grid > .case-card {
  flex: 1 1 260px;
  min-width: 220px;
}

/* ========== FLEXBOX-ONLY LAYOUT ENFORCEMENT ========= */
/* No CSS grid or column-based layout anywhere! */
/* All layout containers use only flex/flex-wrap/gap, per class structure above */

/* ==== END ==== */
