/* ==== CSS 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,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;
}

/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #26355D;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #14D6C7;
  text-decoration: none;
  transition: color 0.17s;
}
a:hover, a:focus {
  color: #12615D;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  outline: none;
  color: inherit;
  box-sizing: border-box;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #26355D;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol, blockquote, dl {
  font-size: 1rem;
  color: #35436e;
  line-height: 1.6;
}
p.lead {
  font-size: 1.18rem;
  margin-bottom: 20px;
  color: #26355D;
}
blockquote {
  margin: 24px 0px 24px 22px;
  padding: 4px 0 4px 16px;
  border-left: 3px solid #14D6C7;
  color: #26355D;
  font-style: italic;
  background: #f6fafc;
}
cite {
  display: block;
  margin-top: 8px;
  color: #26355D;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  opacity: .82;
}
small {
  font-size: .93rem;
  color: #808dac;
}

strong {
  font-weight: 700;
  color: #26355D;
}
dt { font-weight: 600; color: #26355D; margin-bottom: 5px; }
dd { margin-bottom: 18px; }

.category {
  background: #E0E6F6;
  color: #26355D;
  border-radius: 8px;
  padding: 2px 10px;
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ==== MAIN LAYOUTS ==== */
.container {
  max-width: 1100px;
  width: 94%;
  margin: 0 auto;
  padding: 0 14px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section {
  margin: 0 auto;
  align-items: flex-start;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(38,53,93,0.06);
}

@media (max-width: 768px) {
  section {
    margin-bottom: 40px;
    padding: 24px 4vw;
    border-radius: 10px;
  }
  .text-section {
    max-width: 98%;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 2px 12px rgba(38,53,93,0.06);
  padding: 24px 18px;
  min-width: 245px;
  flex: 1 1 260px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(20,214,199,0.09);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  align-items: flex-start;
}
.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;
    gap: 22px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #E0E6F6;
  color: #26355D;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(38,53,93,0.06);
  margin-bottom: 20px;
  min-width: 230px;
}
.testimonial-card p {
  margin: 0;
  color: #26355D;
}
.testimonial-card cite {
  color: #26355D;
  opacity: 1;
  margin-top: 0;
}

.service-card {
  background: #fff;
  padding: 28px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(38,53,93,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  min-width: 250px;
  flex: 1 1 250px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(20,214,199,0.10);
  transform: translateY(-4px) scale(1.017);
}
.price {
  font-weight: 600;
  color: #14D6C7;
  background: rgba(20,214,199,0.07);
  border-radius: 8px;
  font-size: 1rem;
  padding: 4px 11px; 
  align-self: flex-start;
}

/* ==== HEADER & NAV ==== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #E0E6F6;
  position: sticky;
  top: 0; z-index: 50;
}
header nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 72px;
  gap: 22px;
  position: relative;
}
header nav > a > img {
  height: 37px; width: auto;
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-left: 28px;
}
header nav ul li {
  display: flex;
}
header nav ul li a {
  color: #26355D;
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 5px;
  border-radius: 6px;
  transition: background 0.18s, color 0.17s;
}
header nav ul li a:hover, header nav ul li a:focus {
  color: #14D6C7;
  background: rgba(20,214,199,0.10);
}
.btn-primary {
  display: inline-block;
  background: #14D6C7;
  color: #fff;
  font-family: 'Roboto', 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 11px 28px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 rgba(20,214,199,0.09);
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.18s, color 0.17s, transform 0.17s;
  text-align: center;
  margin-left: 16px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #26355D;
  color: #fff;
  box-shadow: 0 4px 18px rgba(38,53,93,0.08);
  transform: translateY(-2px) scale(1.025);
}

/* ==== RESPONSIVE NAV & BURGER MENU ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #26355D;
  cursor: pointer;
  margin-left: 18px;
  z-index: 200;
}
@media (max-width: 992px) {
  header nav ul {
    gap: 15px;
    margin-left: 8px;
  }
  .btn-primary {
    margin-left: 2px;
  }
}
@media (max-width: 830px) {
  header nav ul, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(38,53,93,0.95);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.47,0,.745,.715);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  padding-top: 16px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 4px 28px rgba(38,53,93,0.21);
}
.mobile-menu-close {
  position: absolute;
  top: 23px; right: 24px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #14D6C7;
  z-index: 405;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 27px;
  margin: 70px 0 0 11vw;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.27rem;
  font-family: 'Roboto', 'Open Sans', sans-serif;
  font-weight: 500;
  padding: 10px 2px;
  border-radius: 8px;
  transition: background 0.16s, color 0.17s;
  min-width: 200px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #14D6C7;
  color: #26355D;
}

/* ==== MAIN CONTENT ==== */
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 0;
  line-height: 1.5;
}
ul li img, ul li svg {
  height: 23px;
  width: 23px;
  vertical-align: bottom;
  margin-right: 12px;
  margin-bottom: 2px;
}

div[role='alert'], .alert {
  background: #FCE8EA;
  color: #861431;
  border-radius: 7px;
  padding: 14px 21px;
  margin-bottom: 24px;
  font-size: 1rem;
}

label { 
  font-weight: 600;
  color: #26355D;
  font-size: 1rem;
}
select {
  padding: 8px 12px;
  border-radius: 8px;
  background: #E0E6F6;
  border: 1px solid #e2e8f4;
  font-size: 1rem;
  transition: border-color 0.15s;
}
select:focus {
  border-color: #14D6C7; 
}

/* ==== FOOTER ==== */
footer {
  background: #fff;
  border-top: 1px solid #E0E6F6;
  margin-top: 38px;
  padding: 32px 0 26px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
footer nav a {
  font-size: .98rem;
  color: #26355D;
  opacity: .90;
  letter-spacing: .01em;
  transition: color 0.17s;
}
footer nav a:hover {
  color: #14D6C7;
  text-decoration: underline;
}
footer img {
  height: 25px;
  margin-right: 8px;
  vertical-align: middle;
}
footer span {
  color: #747e97; 
  font-size: .95rem;
  vertical-align: middle;
}

@media (max-width: 650px) {
  .container {
    padding: 0 7px;
  }
  footer .container {
    gap: 8px;
    padding: 0 5px;
  }
}

/* ==== BUTTONS, INTERACTIVES ==== */
button, .btn, .btn-primary {
  transition: background 0.17s, color 0.13s, box-shadow 0.17s, transform 0.17s;
}
.btn {
  display: inline-block;
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 500;
  padding: 9px 22px;
  background: #26355D;
  color: #fff;
  cursor: pointer;
  margin-right: 7px;
}
.btn:hover, .btn:focus {
  background: #14D6C7;
}

/* ==== FORMS ==== */
input, textarea {
  border: 1px solid #E0E6F6;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 1rem;
  background: #fff;
  color: #26355D;
  margin-bottom: 14px;
  max-width: 100%;
  transition: border-color 0.16s;
}
input:focus, textarea:focus {
  border-color: #14D6C7;
}

/* ==== MISCELLANEOUS UTILS ==== */
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.text-center { text-align: center; }

section:last-child { margin-bottom: 0; }

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: #26355D;
  color: #fff;
  padding: 23px 14px 17px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 9999;
  box-shadow: 0 -6px 24px rgba(38,53,93,0.18);
  font-size: 1.04rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(90px);
  transition: opacity .38s, transform .38s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner .banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-banner button, .cookie-banner .btn {
  border: none;
  border-radius: 18px;
  padding: 8px 26px;
  font-size: 1rem;
  font-family: 'Roboto', 'Open Sans', sans-serif;
  margin: 0 3px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow 0.17s;
}
.cookie-banner .accept {
  background: #14D6C7;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #25f1e2;
  color: #26355D;
}
.cookie-banner .reject {
  background: #fff;
  color: #26355D;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #26355D;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-banner .settings {
  background: #E0E6F6;
  color: #26355D;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus{
  background: #c3d2e8;
  color: #26355D;
}

/* COOKIE MODAL PREFERENCE */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 10000;
  background: rgba(38,53,93,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.28s;
}
.cookie-modal.hidden {
  opacity: 0; pointer-events: none;
}
.cookie-modal .modal-content {
  background: #fff;
  color: #26355D;
  max-width: 370px;
  width: 94vw;
  border-radius: 22px;
  padding: 39px 26px 29px 26px;
  box-shadow: 0 8px 36px rgba(38,53,93,.19);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  position: relative;
  animation: popup-in .33s cubic-bezier(.47,0,.745,.715);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 11px; right: 20px;
  background: none;
  border: none;
  color: #14D6C7;
  font-size: 1.65rem;
  cursor: pointer;
}
.cookie-modal h2 { margin-bottom: 4px; font-size: 1.18rem; }
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 19px; height: 19px;
  accent-color: #14D6C7;
}
.cookie-modal .cookie-category label {
  margin-bottom: 0; font-weight: 500; color: #26355D;
}
.cookie-modal .cookie-category .always-on {
  color: #808dac;
  margin-left: 5px;
  font-size: .98em;
}
.cookie-modal .btnbar {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 18px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal .btnbar button {
  min-width: 96px;
}
@keyframes popup-in {
  from { opacity: 0; transform: scale(.94) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 600px) {
  .cookie-modal .modal-content {
    padding: 21px 9px 17px 15px;
    max-width: 94vw;
  }
}

/* ==== RESPONSIVE LAYOUTS ==== */
@media (max-width: 900px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 650px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: 1.07rem; }
  .btn-primary, .btn {
    font-size: 1em;
    padding: 9px 17px;
  }
  .service-card, .card {
    min-width: 90%;
    padding: 17px 6vw;
  }
}

/* ==== MICRO INTERACTIONS ==== */
.btn-primary:active, .btn:active {
  transform: scale(.98);
}
.card:active, .service-card:active {
  transform: scale(.99);
  box-shadow: 0 1px 6px rgba(20,214,199,0.12);
}
.mobile-nav a:active {
  background: #26355D;
  color: #14D6C7;
}

/* ==== ACCESSIBILITY ==== */
:focus {
  outline: 2px solid #14D6C7;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #ccd1df; }
::-moz-placeholder { color: #ccd1df; }
:-ms-input-placeholder { color: #ccd1df; }
::placeholder { color: #ccd1df; }

/* ==== MISC HELPERS ==== */
.no-scroll {
  overflow: hidden !important;
}

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