/* ============================================================================
   RESET & BASE TYPOGRAPHY
============================================================================ */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F8F8F8;
  color: #23272A;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}

*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1A938D;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
a:hover,
a:focus {
  color: #14bfa0;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  padding-left: 22px;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================================
   BRAND TYPOGRAPHY & SCALES
============================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #23272A;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.06;
  margin-bottom: 22px;
  text-transform: uppercase;
  animation: fadein 1s;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.15;
  color: #1A938D;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #23272A;
}
p, ul, ol, blockquote {
  margin-bottom: 16px;
  font-size: 1rem;
  max-width: 700px;
}
.lead {
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 18px;
  color: #23272A;
}
blockquote {
  border-left: 5px solid #1A938D;
  padding-left: 18px;
  font-size: 1.15rem;
  color: #23272A;
  font-style: italic;
  margin-bottom: 10px;
  background: #ebfaf7;
  border-radius: 11px;
  margin-right: 0;
}
.testimonial-name {
  font-weight: 700;
  margin-top: 8px;
  font-size: 1rem;
  color: #1A938D;
  font-family: 'Oswald', Impact, Arial, sans-serif;
}

/* ============================================================================
   LAYOUT CONTAINERS / FLEXBOX
============================================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(26,147,141,0.08), 0 1.5px 2.5px 0 rgba(30,40,55,0.06);
  transition: box-shadow .2s;
}
.section:hover {
  box-shadow: 0 8px 28px 0 rgba(26,147,141,0.16), 0 2px 5px 0 rgba(30,40,55,0.12);
}
.cta-section {
  background: #1A938D;
  color: #fff;
  border-radius: 20px;
  margin-bottom: 45px;
  box-shadow: 0 3px 12px rgba(26,147,141,0.11);
}
.cta-section h2,
.cta-section p {
  color: #fff;
}

/* Card Containers and Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(26,147,141,0.07);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .15s, box-shadow .2s;
  z-index: 1;
}
.card:hover {
  transform: translateY(-5px) scale(1.03) rotate(-1.1deg);
  box-shadow: 0 8px 30px rgba(33,153,141,0.13), 0 4px 18px rgba(30,40,55,0.08);
}

.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;
}

/* List Features for playful look */
.feature-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 16px;
  margin-top: 8px;
}
.feature-grid li, .services-list li {
  background: #fff;
  border-radius: 16px;
  padding: 25px 18px 18px 16px;
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 360px;
  box-shadow: 0 1.5px 6px rgba(30,40,55,0.06);
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  position: relative;
  transition: box-shadow .18s, transform .22s cubic-bezier(.52,1.58,.69,1.23);
  color: #23272A;
}
.feature-grid li img, .services-list li img {
  width: 38px;
  height: 38px;
  margin-right: 12px;
  background: #ebfaf7;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 12px rgba(26,147,141,0.08);
  animation: wiggle 1.22s infinite alternate-reverse cubic-bezier(.6,1.4,.75,.6);
}
.feature-grid li:hover, .services-list li:hover {
  box-shadow: 0 8px 34px rgba(26,147,141,.12);
  transform: scale(1.025) rotate(2.5deg);
  z-index: 2;
}
@keyframes wiggle {
  0%{transform: rotate(-8deg);}
  100%{transform: rotate(8deg);}
}
@keyframes fadein {
  0%{opacity:0; transform:translateY(25px);}
  80%{opacity:1; transform:translateY(-2px);}
  100%{opacity:1; transform:translateY(0);}
}

.services-list em {
  display: inline-block;
  margin-top: 2px;
  padding-left: 2px;
  color: #F98118;
  font-style: normal;
  font-weight: 600;
  font-family: 'Oswald', Impact, Arial, sans-serif;
  font-size: 1.01em;
}


/* ============================================================================
   HEADER & NAVIGATION
============================================================================ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px rgba(26,147,141,0.07);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}
.logo img {
  width: 135px;
  height: auto;
  margin-right: 16px;
  display: block;
  animation: fadein .9s;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 11px;
  padding-bottom: 11px;
  gap: 18px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 17px;
}
.desktop-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  color: #23272A;
  letter-spacing: .01em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 6px;
  transition: color .18s;
}
.desktop-nav a:after {
  content: '';
  position: absolute;
  left: 2px; right: 2px; bottom: 4px;
  height: 3px;
  background: #F98118;
  border-radius: 1.5px;
  opacity: 0;
  transform: scaleX(0.4);
  transition: all .18s;
}
.desktop-nav a:hover:after, .desktop-nav a:focus:after {
  opacity: 1;
  transform: scaleX(1);
}
.desktop-nav a:hover, .desktop-nav a:focus {
  color: #1A938D;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F98118;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 44px;
  box-shadow: 0 2px 8px rgba(249,129,24,0.10);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .16s, box-shadow .17s, transform .12s;
  margin-left: 13px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #f79336;
  color: #fff;
  transform: translateY(-2.5px) scale(1.04) rotate(-1.9deg);
  box-shadow: 0 5px 18px rgba(249,129,24,0.16);
}

.mobile-menu-toggle {
  display: none;
  background: #1A938D;
  color: #fff;
  font-size: 2rem;
  padding: 7px 17px;
  border-radius: 25px;
  border: none;
  margin-left: 16px;
  transition: background .17s, transform .11s;
  z-index: 202;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #14bfa0;
  outline: 2px solid #F98118;
}

/* Responsive: show hamburger on mobile */
@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

/* ============================================================================
   MOBILE NAVIGATION
============================================================================ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 39, 42, 0.96);
  z-index: 400;
  transform: translateX(100vw);
  transition: transform .38s cubic-bezier(.47,1.64,.41,.91);
  will-change: transform;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  transition: color .19s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F98118;
  outline: 2px solid #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 75px 35px 20px 35px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 16px 7px 8px 4px;
  border-radius: 8px;
  transition: background .19s, color .19s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F98118;
  color: #fff;
  outline: none;
}

@media (max-width:768px) {
  .mobile-nav {
    padding: 70px 16px 16px 16px;
    gap: 12px;
  }
  .mobile-menu-close {
    top: 18px;
    right: 13px;
    font-size: 2rem;
  }
}

/* ============================================================================
   FOOTER
============================================================================ */
footer {
  background: #23272A;
  color: #F8F8F8;
  padding: 45px 0 28px 0;
  margin-top: 38px;
}
.footer-logo img {
  width: 68px;
  height: auto;
  margin-bottom: 11px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 13px;
  justify-content: flex-start;
}
.footer-nav a {
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  padding: 5px 3px;
  transition: color .16s;
  border-radius: 5px;
  background: transparent;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #F98118;
  background: #1A938D;
}
.footer-meta p {
  font-size: 0.93rem;
  color: #F8F8F8;
  margin: 0 0 7px 0;
  opacity: .75;
}

/* ============================================================================
   TESTIMONIALS
============================================================================ */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F8F8F8;
  border-radius: 20px;
  margin-bottom: 22px;
  box-shadow: 0 3px 14px rgba(26,147,141,0.11);
  border: 2.2px solid #1A938D18;
  transition: border .18s, box-shadow .2s;
}
.testimonial-card:hover {
  border: 2.2px solid #F98118;
  box-shadow: 0 6px 26px #F9811833;
}
.testimonial-card blockquote {
  background: transparent;
  padding: 0;
  font-size: 1.12em;
  border-left: 0;
  color: #23272A;
}

/* ============================================================================
   TABLES & LISTS
============================================================================ */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
}
th, td {
  text-align: left;
  padding: 9px 12px;
}
th {
  background: #ebfaf7;
}
tr:nth-child(even) {
  background: #f5fefd;
}

ul, ol {
  margin-bottom: 15px;
}
li {
  margin-bottom: 6px;
}

/* ============================================================================
   MISCELLANEOUS BUTTONS / INTERACTIONS
============================================================================ */
.btn-primary,
.btn, 
input[type='submit'], button[type='submit'] {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 44px;
  border: none;
  padding: 14px 30px;
  background: #F98118;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  box-shadow: 0 2px 8px rgba(249,129,24,0.10);
  transition: background .16s, box-shadow .16s, transform .11s;
}
.btn:hover, .btn:focus, .btn-primary:hover, .btn-primary:focus {
  background: #f79336;
  color: #fff;
  transform: translateY(-3px) scale(1.04) rotate(-2deg);
  box-shadow: 0 7px 14px rgba(249,129,24,0.16);
  outline: none;
}

/* ============================================================================
   COOKIE CONSENT BANNER & MODAL
============================================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 998;
  background: #23272A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 22px 26px 42px;
  box-shadow: 0 -5px 22px #1A938D11;
  transition: transform .38s cubic-bezier(.47,1.64,.41,.91), opacity .18s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(90px);
}
.cookie-banner p {
  margin: 0 0 0 0;
  font-size: 1.07rem;
  max-width: 490px;
  color: #fff;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 1rem;
  border: none;
  margin: 0 3px;
  background: #1A938D;
  color: #fff;
  cursor: pointer;
  transition: background .12s, color .15s;
  outline: none;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #F98118;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #F8F8F8;
  color: #23272A;
  font-size: .97rem;
  font-weight: bold;
  border: 2px solid #1A938D;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #fff3e4;
  border-color: #F98118;
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background:rgba(35,39,42,0.70);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .19s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #23272A;
  max-width: 410px;
  border-radius: 19px;
  padding: 28px 28px 16px 28px;
  box-shadow: 0 8px 38px rgba(26,147,141,0.23);
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  animation: fadein .6s;
}
.cookie-modal h3 {
  font-size: 1.32rem;
  font-family: 'Oswald', Arial, sans-serif;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1.08rem;
  font-weight: 500;
  color: #23272A;
  user-select: none;
}
.cookie-category input[type="checkbox"] {
  accent-color: #1A938D;
  width: 21px;
  height: 21px;
}
.cookie-modal .info {
  font-size: .97rem;
  opacity: .93;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 13px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 10px 20px;
  background: #1A938D;
  color: #fff;
  border: none;
  border-radius: 32px;
  font-size: 1rem;
  transition: background .14s;
}
.cookie-modal .modal-actions button:hover, .cookie-modal .modal-actions button:focus {
  background: #F98118;
}
.cookie-modal .close {
  position: absolute;
  right: 16px;
  top: 11px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #1A938D;
  cursor: pointer;
  transition: color .14s;
}
.cookie-modal .close:focus, .cookie-modal .close:hover {
  color: #F98118;
}

/* ============================================================================
   RESPONSIVE ADJUSTMENTS
============================================================================ */
@media (max-width:1020px) {
  .container {
    padding: 0 12px;
  }
  .feature-grid, .services-list {
    gap: 15px;
  }
  .section {
    padding: 27px 8px;
    margin-bottom: 38px;
  }
  footer {
    padding: 23px 0 18px 0;
    margin-top: 18px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 5px;
    max-width: 98vw;
  }
  .content-grid,
  .feature-grid,
  .services-list {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .testimonial-card {
    padding: 15px 8px;
    gap: 13px;
  }
  .section {
    padding: 16px 3px 12px 3px;
    margin-bottom: 30px;
  }
  .card-container {
    gap: 12px;
  }
  .card {
    padding: 16px 7px;
    border-radius: 13px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  h1 {
    font-size: 1.45rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.18rem;
    margin-bottom: 10px;
  }
  .btn-primary {
    font-size: .94rem;
    padding: 11px 19px;
    margin-left: 0;
    margin-top: 12px;
  }
}

/* Fine mobile adjustments for cookie/banner */
@media (max-width: 700px) {
  .cookie-banner {
    padding: 18px 5px 14px 7px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .cookie-banner p {
    font-size: .99rem;
    max-width: none;
  }
}
@media (max-width:520px) {
  .footer-nav {
    gap: 7px;
  }
  .footer-meta p {
    font-size: .875rem;
  }
}

/* ============================================================================
   PLAYFUL / DYNAMIC ACCENTS
============================================================================ */
body {
  /* Subtle energetic pattern on desktop background */
  background: #F8F8F8 url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 72 72' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='36' cy='36' r='3' fill='%231A938D' fill-opacity='0.09'/%3E%3C/svg%3E") repeat top left;
}

.section, .card, .feature-grid li, .services-list li {
  /* Fun shadow, bright border accent on hover handled above */
}
.cta-section {
  /* Add subtle playful wave edge */
  position: relative;
  overflow: hidden;
}
.cta-section:before {
  content: '';
  display: block;
  position: absolute;
  left: -20px; right: -20px; top: -22px;
  height: 42px;
  background: url("data:image/svg+xml,%3Csvg width='144' height='42' viewBox='0 0 144 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 36C24 14 51 42 76 18C119 -16 132 52 144 33' stroke='%23F98118' stroke-width='4' fill='none'/%3E%3C/svg%3E") repeat-x;
  pointer-events: none;
  z-index: 1;
  opacity: .11;
}

/* ============================================================================
   FORM FIELDS (if present)
============================================================================ */
input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #1A938D;
  border-radius: 12px;
  font-size: 1em;
  color: #23272A;
  background: #f8f8f8;
  margin-bottom: 17px;
  transition: border .14s, box-shadow .17s;
  font-family: 'Roboto', Arial, sans-serif;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus {
  border: 2px solid #F98118;
  outline: none;
  box-shadow: 0 3px 17px #F9811844;
}

/* ============================================================================
   UTILITIES
============================================================================ */
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.flex { display: flex; }
.flex-center { align-items: center; justify-content: center; }
.text-center { text-align: center; }
.hide { display: none !important; }

/* ============================================================================
   ANIMATIONS
============================================================================ */
@keyframes btn-bounce {
  0%, 100% {transform: translateY(0)}
  50% {transform: translateY(-6px) scale(1.03) rotate(-1deg)}
}
.btn-primary {
  animation: btn-bounce 2.3s infinite cubic-bezier(.4,.73,.46,1.2);
}

/* ============================================================================
   ACCESSIBILITY
============================================================================ */
:focus {
  outline: 2px solid #F98118;
  outline-offset: 3px;
}

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