/* --- 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, 
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #175276;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.18s;
}
ul, ol {
  list-style: none;
}

/* --- FONTS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #175276;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.07rem;
  margin-bottom: 8px;
}

p, address, li, td, th {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #175276;
}

strong {
  font-weight: bold;
  color: #175276;
}

/* --- CONTAINERS & STRUCTURE --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #E7EEF3;
  border-radius: 28px;
  box-shadow: 0 2px 16px 0 rgba(23, 82, 118, 0.08);
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 26px 10px;
    border-radius: 18px;
  }
}

/* --- HEADER --- */
header {
  background: #ffffff;
  box-shadow: 0px 4px 18px 0 rgba(23, 82, 118, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 36px;
}
.logo {
  min-width: 160px;
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  padding: 0 8px 4px 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: #175276;
  position: relative;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #59C3C3;
  transition: width 0.22s cubic-bezier(.56,.01,.47,1.31);
  position: absolute;
  left: 0;
  bottom: 0;
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

header .button.primary {
  margin-left: 20px;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #ffffff;
  color: #175276;
  border: 2px solid #E7EEF3;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 1.7rem;
  cursor: pointer;
  margin-left: 20px;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 2000;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #278989;
  background: #E7EEF3;
}
@media (max-width: 970px) {
  .main-nav,
  header .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23, 82, 118, 0.96);
  transform: translateX(-110vw);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.35s;
  box-shadow: 0 4px 32px 0 rgba(23, 82, 118, 0.18);
  z-index: 3010;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #E7EEF3;
  font-size: 2.5rem;
  padding: 18px 24px 8px 24px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 3020;
  transition: color 0.18s;
}
.mobile-menu-close:focus {
  outline: 2px solid #59C3C3;
  color: #59C3C3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 26px;
  margin-top: 36px;
  margin-left: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.37rem;
  color: #E7EEF3;
  padding: 6px 0;
  border-radius: 6px;
  transition: background 0.22s, color 0.19s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #59C3C3;
  color: #175276;
}

@media (min-width: 971px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO --- */
.hero {
  background: #E7EEF3;
  border-radius: 38px;
  margin: 34px 0 60px 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 32px 0 rgba(23, 82, 118, 0.075);
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  min-height: 360px;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 14px;
}
.hero h1 {
  color: #175276;
  font-size: 2.8rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.015em;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 18px;
    margin: 18px 0 30px 0;
    min-height: 190px;
  }
  .hero .container {
    min-height: 210px;
    padding: 16px 6px;
  }
  .hero h1 {
    font-size: 1.64rem;
  }
}

/* --- BUTTONS --- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: none;
  text-decoration: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 17px;
  background: #175276;
  color: #fff;
  font-size: 1.09rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px 0 rgba(23, 82, 118, 0.09);
  cursor: pointer;
  transition: background 0.16s, color 0.12s, box-shadow 0.15s, transform 0.18s;
}
.button.primary {
  background: #175276;
  color: #fff;
}
.button.primary:hover, .button.primary:focus {
  background: #278989;
  color: #fff;
  transform: translateY(-2px) scale(1.018);
  box-shadow: 0 4px 14px 0 rgba(23, 82, 118, 0.18);
}
.button.accent {
  background: #59C3C3;
  color: #175276;
}
.button.accent:hover, .button.accent:focus {
  background: #175276;
  color: #fff;
  transform: translateY(-2px) scale(1.019);
}
.button:active {
  filter: brightness(0.98);
}

@media (max-width: 480px) {
  .button {
    font-size: 0.98rem;
    padding: 11px 17px;
    border-radius: 11px;
  }
}

/* --- FEATURES --- */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
  padding: 0;
}
.features .container {
  width: 100%;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.features li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 20px 28px;
  border-radius: 17px;
  box-shadow: 0 2px 12px 0 rgba(23, 82, 118, 0.07);
  font-size: 1.04rem;
  min-width: 210px;
}
.features img {
  height: 34px;
  width: 34px;
}
@media (max-width: 770px) {
  .features ul {
    flex-direction: column;
    gap: 14px;
  }
  .features li {
    width: 100%;
    min-width: 0;
    padding: 14px 13px;
  }
}

/* --- SERVICE LISTS & CARDS --- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-item, .service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(23, 82, 118, 0.07);
  padding: 30px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 265px;
  max-width: 340px;
  flex: 1 0 265px;
  transition: box-shadow 0.17s, transform 0.19s;
  border: 2.5px solid #E7EEF3;
  position: relative;
}
.service-item:hover, .service-card:hover {
  box-shadow: 0 6px 26px 0 rgba(23, 82, 118, 0.15);
  transform: translateY(-4px) scale(1.011);
  border-color: #278989;
}
.service-item h3, .service-card h3 {
  font-size: 1.18rem;
  color: #175276;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 7px;
}
.service-item strong, .service-card strong {
  color: #278989;
  font-weight: 700;
}
@media (max-width:900px){
  .service-list {
    gap: 12px;
  }
  .service-item, .service-card {
    min-width: 0;
    max-width: unset;
    width: 100%;
  }
}

/* --- TESTIMONIALS --- */
.testimonials {
  display: flex;
}
.testimonials .container {
  width: 100%;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  margin-right: 22px;
  background: #E7EEF3;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(23, 82, 118, 0.07);
  min-width: 265px;
  max-width: 380px;
  flex: 1 1 255px;
  border-left: 4px solid #59C3C3;
  font-size: 1.09rem;
}
.testimonial-card p {
  color: #175276;
  font-size: 1.092rem;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #278989;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
@media (max-width: 850px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 9px;
  }
  .testimonial-card {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
    max-width: unset;
  }
}

/* --- CTA BLOCK --- */
.cta-block {
  margin-bottom: 62px;
  background: #175276;
  border-radius: 36px;
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(23, 82, 118, 0.11);
}
.cta-block .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cta-block .content-wrapper {
  width: 100%;
  align-items: center;
  text-align: center;
  gap: 17px;
  color: #fff;
}
.cta-block h2 {
  color: #fff;
  font-size: 2.1rem;
}
.cta-block .button {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .cta-block {
    border-radius: 13px;
    margin-bottom: 33px;
    padding: 12px 4px;
  }
  .cta-block .content-wrapper h2 {
    font-size: 1.3rem;
  }
}

/* --- ABOUT / USP / TEAM --- */
.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
}
.usp-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(23, 82, 118, 0.04);
  border-radius: 16px;
  padding: 15px 19px;
  font-size: 1.04rem;
  min-width: 190px;
}
.usp-list img {
  width: 28px;
  height: 28px;
}
@media (max-width: 700px) {
  .usp-list {
    flex-direction: column;
    gap: 12px;
  }
  .usp-list li {
    width: 100%;
    min-width: 0;
  }
}
.text-section {
  margin-bottom: 18px;
}
.text-section ul {
  margin-left: 0;
}
.text-section li {
  margin-bottom: 12px;
}

/* --- FAQ SECTION --- */
.faq-section, .faq {
  background: #E7EEF3;
  border-radius: 22px;
  padding: 34px 20px 36px 20px;
  margin-bottom: 60px;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 14px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 20px 16px 11px 16px;
  box-shadow: 0 1.5px 8px 0 rgba(23, 82, 118, 0.07);
  min-width: 215px;
  flex: 1 1 180px;
  margin-bottom: 20px;
  border-left: 4px solid #59C3C3;
}
.faq-item h2, .faq-item h3 {
  margin-bottom: 9px;
  color: #175276;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
@media (max-width: 700px) {
  .faq-list {
    flex-direction: column;
    gap: 11px;
  }
  .faq-item {
    width: 100%;
    min-width: 0;
    padding: 11px 8px;
  }
}

/* --- PRICING TABLE --- */
.pricing table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 18px;
  box-shadow: 0 2px 9px 0 rgba(23, 82, 118, 0.04);
  overflow: hidden;
  margin: 26px 0;
  background: #fff;
}
.pricing th, .pricing td {
  padding: 20px 18px;
  border-bottom: 1.5px solid #E7EEF3;
  text-align: left;
  font-size: 1.01rem;
}
.pricing th {
  color: #278989;
  background: #E7EEF3;
  font-weight: 800;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
}
.pricing tr:last-child td {
  border-bottom: none;
}
@media (max-width: 740px) {
  .pricing table, .pricing thead, .pricing tbody, .pricing th, .pricing td, .pricing tr {
    display: block;
    width: 100%;
  }
  .pricing td, .pricing th {
    padding: 12px 9px;
    font-size: 0.99rem;
  }
}

/* --- CONTACT PAGE --- */
.contact .map-placeholder {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #278989;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-style: italic;
  background: #e7eef3;
  padding: 10px 14px;
  border-radius: 11px;
}

/* --- THANK YOU + UTILITY --- */
.thankyou {
  background: #E7EEF3;
  border-radius: 28px;
  min-height: 280px;
  padding: 60px 24px 36px 24px;
  text-align: center;
}
.thankyou .button {
  margin-top: 18px;
}

/* --- FOOTER --- */
footer {
  background: #175276;
  color: #fff;
  padding-top: 32px;
  padding-bottom: 24px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo img {
  height: 44px;
  width: auto;
}
.footer-main-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-main-nav a, .footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  opacity: 0.89;
  transition: color 0.18s, opacity 0.15s;
}
.footer-main-nav a:hover, .footer-menu a:hover {
  color: #59C3C3;
  opacity: 1;
}
.footer-contact h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.08rem;
}
.footer-contact address, .footer-contact a {
  color: #fff;
  font-size: 0.99rem;
  opacity: 0.91;
  line-height: 1.6;
  font-style: normal;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1) opacity(0.88);
  transition: filter 0.18s;
}
.footer-social a:hover img {
  filter: brightness(1) invert(0) opacity(1);
}
@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  footer {
    padding-top: 16px;
    padding-bottom: 10px;
    font-size: 0.98rem;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #175276;
  color: #fff;
  box-shadow: 0 -2px 16px 0 rgba(23, 82, 118, 0.17);
  z-index: 4090;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px 22px 16px;
  font-size: 1rem;
  animation: cookie-slide-in 0.7s cubic-bezier(.62,.41,.38,.95);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
@keyframes cookie-slide-in {
  0% { transform: translateY(100%); opacity: 0; }
  80% { transform: translateY(-9%); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .banner-content {
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
.cookie-consent-banner .cookie-btn {
  margin-left: 12px;
  min-width: 110px;
  border-radius: 11px;
  font-size: 1rem;
  padding: 11px 18px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.17s, color 0.13s, box-shadow 0.17s;
  margin-bottom: 0;
}
.cookie-consent-banner .accept {
  background: #59C3C3;
  color: #175276;
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus {
  background: #278989;
  color: #fff;
}
.cookie-consent-banner .reject {
  background: #E7EEF3;
  color: #175276;
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus {
  background: #59C3C3;
  color: #fff;
}
.cookie-consent-banner .settings {
  background: #fff;
  color: #278989;
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  background: #278989;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    font-size: 0.93rem;
    padding: 18px 7px 19px 7px;
    gap: 12px;
  }
  .cookie-consent-banner .banner-content {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .cookie-consent-banner .cookie-btn {
    min-width: 70px;
    margin-left: 0;
    margin-bottom: 9px;
  }
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4150;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(13, 49, 80, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  animation: cookie-modal-fade 0.25s;
}
@keyframes cookie-modal-fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 54px 0 rgba(23, 82, 118, 0.29);
  max-width: 400px;
  width: 93vw;
  padding: 36px 22px 26px 22px;
  color: #175276;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #175276;
  margin-bottom: 13px;
}
.cookie-modal label {
  font-size: 1.03rem;
  color: #175276;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.cookie-modal .essential {
  color: #278989;
  font-weight: bold;
}
.cookie-modal .switch {
  height: 1.2em;
}
.cookie-modal .cookie-btn {
  margin-top: 9px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 15px;
  right: 13px;
  background: none;
  border: none;
  color: #278989;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #59C3C3;
}

/* --- GEOMETRIC & STRUCTURED DECOR --- */
.section, .features, .service-list, .service-card, .testimonial-card, .cta-block, .faq-section, .faq, .thankyou {
  position: relative;
  overflow: visible;
}
.section::before, .cta-block::before {
  content: '';
  display: block;
  position: absolute;
  top: -28px;
  right: -30px;
  width: 60px;
  height: 60px;
  background: #59C3C3;
  border-radius: 26% 74% 62% 38%/30% 31% 69% 70%;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}
.section::after, .cta-block::after {
  content: '';
  display: block;
  position: absolute;
  left: -18px;
  bottom: -26px;
  width: 38px;
  height: 38px;
  background: #278989;
  border-radius: 38% 62% 42% 58%/53% 37% 63% 47%;
  opacity: 0.09;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 800px) {
  .section::before, .cta-block::before {
    top: -12px;
    right: -9px;
    width: 28px;
    height: 28px;
  }
  .section::after, .cta-block::after {
    left: -8px;
    bottom: -11px;
    width: 19px;
    height: 19px;
  }
}

/* --- FLEX SPACING AND MANDATORY PATTERNS --- */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- UTILITIES --- */
.mt-40 { margin-top:40px; }
.mb-32 { margin-bottom:32px; }
.no-select { user-select: none; }

/* --- TRANSITIONS & MICRO-INTERACTIONS --- */
input, button, select, textarea {
  transition: background 0.17s, box-shadow 0.18s, color 0.13s, border 0.13s;
}
a, .button {
  transition: color 0.18s, background 0.15s, box-shadow 0.14s, transform 0.18s;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px;
  background: #E7EEF3;
}
::-webkit-scrollbar-thumb {
  background: #59C3C3;
  border-radius: 8px;
}

/* --- HTML5 elements (Reset for legacy) --- */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

table { border-collapse: collapse; border-spacing: 0; }

/***** END OF CSS *****/
