/* RESET & BASE STYLES */
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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F6F6F4;
  color: #25425D;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #90B048;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #DAA93A;
  text-decoration: underline;
}
strong, b {
  font-weight: bold;
}

/* BRAND & PLAYFUL_DYNAMIC COLORS */
:root {
  --primary: #25425D;
  --secondary: #90B048;
  --accent: #fff260;
  --gray-bg: #F6F6F4;
  --contrast: #fff;
  --brand-orange: #FFA930;
  --brand-blue: #4DC6FF;
  --brand-pink: #FD6EA8;
  --brand-green: #90B048;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 var(--accent), 0px 1px 6px rgba(0,0,0,0.08);
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #25425D;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}

em {
  color: var(--brand-pink);
  font-style: italic;
}

/* Fun Playful Font Utilities */
.cta-button, .cta-small,
.mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
  font-weight: bold;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1rem;
  }
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(104,178,55,0.08), 0 2px 12px rgba(253,110,168,0.03);
  padding: 28px 20px;
  transition: box-shadow 0.28s, transform 0.24s;
  overflow: hidden;
  min-width: 250px;
  flex: 1 1 270px;
}
.card:hover {
  transform: translateY(-4px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(77,198,255,0.12), 0 4px 20px rgba(253,110,168,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;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--contrast);
  color: var(--primary);
  border-radius: 24px;
  box-shadow: 0 2px 10px 0 rgba(36,66,93,0.07);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 380px;
  transition: box-shadow 0.22s, transform 0.18s;
  border-left: 6px solid var(--brand-orange);
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(104,178,55,0.12), 0 8px 32px rgba(254,200,96,0.10);
  transform: scale(1.03) rotate(-1deg);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 18px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 12px 0 rgba(36,66,93,0.07);
}

.features-grid, .services-list, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.features-grid > div, .services-list > div {
  background: #fff;
  border-radius: 20px;
  padding: 26px 18px 24px 18px;
  box-shadow: 0 4px 16px rgba(144,176,72,0.1);
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  text-align: left;
  transition: box-shadow 0.19s, transform 0.17s;
}
.features-grid > div:hover, .services-list > div:hover {
  box-shadow: 0 12px 36px rgba(253,110,168,0.10), 0 8px 32px rgba(254,200,96,0.07);
  transform: translateY(-6px) scale(1.04);
}

.services-list .price {
  font-weight: bold;
  color: var(--brand-orange);
  font-size: 1.2rem;
  margin-top: 10px;
  display: inline-block;
}

/* LISTS & TEXT SECTIONS */
.text-section {
  padding: 16px 0;
}
ul, ol {
  margin-bottom: 20px;
  margin-top: 4px;
  padding-left: 22px;
}
ul li, ol li {
  padding-left: 0;
  margin-bottom: 8px;
  position: relative;
  color: #275177;
  font-size: 1rem;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg,#FFA930 60%, #FD6EA8);
  vertical-align: middle;
}
.contact-info-mini {
  font-size: 1rem;
  margin-bottom: 18px;
}
.contact-info-mini a {
  color: var(--primary);
  font-weight: bold;
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 1rem;
  margin-top: 10px;
}
.quick-links a {
  background: var(--accent);
  color: var(--primary);
  border-radius: 12px;
  padding: 6px 12px;
  text-decoration: none;
  transition: background 0.19s, color 0.19s;
  font-weight: 600;
}
.quick-links a:hover { background: var(--brand-orange); color: #fff; }

/* HERO SECTION */
.hero {
  background: linear-gradient(85deg, #fff260 0 55%, #FD6EA8 100%);
  border-radius: 0 0 40px 40px;
  padding-top: 26px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  box-shadow: 0 8px 28px 2px rgba(36,66,93,0.09);
  overflow: visible;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.6rem;
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: 0.03em;
  /* Playful Shadow */
  text-shadow: 4px 4px 0px var(--accent), 0px 6px 24px rgba(77,198,255,0.13);
}
.hero p {
  font-size: 1.24rem;
  font-weight: 500;
  color: #3A538B;
  margin-bottom: 22px;
}

/* BUTTONS */
.cta-button {
  display: inline-block;
  background: var(--brand-orange);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 14px 34px;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 2px 10px 0 rgba(254,200,96,0.12);
  cursor: pointer;
  transition: background 0.18s, transform 0.16s, box-shadow 0.18s;
  margin-left: 20px;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--brand-pink);
  color: #fff;
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 7px 22px 0 rgba(36,66,93,0.16);
}

.cta-small {
  display: inline-block;
  background: var(--brand-blue);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 10px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px 0 rgba(77,198,255,0.08);
  cursor: pointer;
  text-align: center;
  transition: background 0.18s, color 0.19s, transform 0.14s;
}
.cta-small:hover, .cta-small:focus {
  background: var(--brand-orange);
  color: #fff;
  transform: scale(1.07) rotate(-2deg);
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px 0 18px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 12px rgba(36,66,93,0.06);
  position: sticky;
  top: 0;
  z-index: 90;
}
.logo {
  margin-right: 36px;
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  padding: 5px 11px;
  border-radius: 9px;
  transition: background 0.13s, color 0.14s;
  margin: 0 4px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-orange);
  color: #fff;
}

.mobile-menu-toggle {
  margin-left: auto;
  font-size: 2rem;
  background: var(--brand-pink);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 6px 16px 2px 16px;
  cursor: pointer;
  display: none;
  outline: none;
  transition: background 0.17s, transform 0.15s;
  box-shadow: 0 2px 8px 0 rgba(253,110,168,0.07);
}
.mobile-menu-toggle:hover,.mobile-menu-toggle:focus {
  background: var(--brand-blue);
}

@media (max-width: 1024px) {
  header {
    flex-wrap: wrap;
    padding-right: 8px;
    padding-left: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
  .logo {
    margin-right: 20px;
    max-width: 106px;
  }
  .cta-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
}
@media (max-width: 790px) {
  .main-nav { display: none; }
  .cta-button { display: none; }
  .mobile-menu-toggle { display: block;  }
}

/* MOBILE BURGER MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,81,119,0.85);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.39s cubic-bezier(.84,.07,.45,1.04);
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  border: none;
  background: var(--brand-blue);
  color: #fff;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.15s, transform 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-pink);
  transform: scale(1.04);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 60px 36px;
  width: 94vw;
  height: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 8px 18px;
  border-radius: 12px;
  background: none;
  transition: background 0.14s, color 0.13s;
  margin-bottom: 4px;
}
.mobile-nav a:hover,.mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
@media (max-width: 580px) {
  .mobile-nav { padding: 40px 14px; }
  .mobile-menu-close { margin: 14px 14px 0 0; }
}

/* FOOTER */
footer {
  margin-top: 24px;
  padding: 38px 0 32px 0;
  background: var(--primary);
  color: #fff;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -4px 16px 0 rgba(36,66,93,0.08);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  background: var(--brand-pink);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 10px;
  padding: 7px 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.17s, color 0.14s;
}
.footer-nav a:hover,.footer-nav a:focus {
  background: var(--brand-orange);
  color: var(--primary);
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-brand img {
  width: 42px;
  height: 42px;
}

/* TESTIMONIAL SECTION */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.stars {
  font-size: 1.4rem;
  color: var(--brand-orange);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 4px;
  text-shadow: 0px 2px 4px rgba(253,110,168,0.13);
}

/* Animations - Playful Kick */
.cta-button, .cta-small, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background 0.16s, color 0.14s, transform 0.12s, box-shadow 0.17s;
}
.card, .testimonial-card, .features-grid > div, .services-list > div {
  transition: box-shadow 0.19s, transform 0.14s;
}

/* Subtle Animated Icon Wiggle */
.features-grid img, .testimonial-card .stars {
  animation: wiggle 3s infinite ease-in-out;
}
@keyframes wiggle {
  0% { transform: rotate(-2deg) scale(1.02); }
  10% { transform: rotate(3deg) scale(1.06); }
  20% { transform: rotate(-1deg) scale(1.03); }
  30% { transform: rotate(1deg) scale(1); }
  40% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(-2deg) scale(1.02); }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1300;
  background: #fff;
  border-top: 5px solid var(--brand-orange);
  box-shadow: 0 -4px 24px 0 rgba(36,66,93,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 22px 32px;
  min-height: 90px;
  gap: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  animation: cookie-banner-in 0.9s cubic-bezier(.7,0,.23,1) 0s 1;
}
@keyframes cookie-banner-in {
  0% { transform: translateY(100%); opacity: 0;}
  70% { transform: translateY(-8px); opacity: 1;}
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1.08rem;
  margin: 0;
  flex: 1 1 240px;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 13px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin: 0 5px;
  transition: background 0.15s, color 0.13s, transform 0.12s;
}
.cookie-btn.accept {
  background: var(--brand-green);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--brand-pink);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--brand-orange);
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  transform: scale(1.07);
  filter: brightness(1.07);
}
@media (max-width: 500px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 16px 10px;
  }
  .cookie-btns {
    justify-content: flex-start;
    width: 100%;
  }
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1400;
  background: rgba(39,81,119,0.77);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  padding: 40px 28px 28px 28px;
  border-radius: 22px;
  box-shadow: 0 12px 48px rgba(253,110,168,0.13), 0 2px 8px rgba(144,176,72,0.09);
  max-width: 340px;
  width: 96vw;
  position: relative;
  animation: cookie-modal-in 0.29s cubic-bezier(0.7,0,0.22,1) 1;
}
@keyframes cookie-modal-in {
  0% { transform: scale(0.82); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  margin-bottom: 12px;
}
.modal-cookie-options {
  margin-bottom: 20px;
}
.modal-cookie-options label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.modal-cookie-options input[type=checkbox],
.modal-cookie-options input[type=radio] {
  accent-color: var(--brand-orange);
  margin-right: 11px;
}
.cookie-modal-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: var(--brand-pink);
  color: #fff;
  border: none;
  border-radius: 10px;
  width: 34px;
  height: 34px;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cookie-modal-close:hover,.cookie-modal-close:focus { background: var(--brand-orange); }

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .features-grid, .services-list, .testimonial-list {
    gap: 15px;
  }
  .features-grid > div, .services-list > div, .testimonial-card {
    min-width: 170px;
    max-width: 47vw;
  }
}
@media (max-width: 820px) {
  .container {
    max-width: 99vw;
    padding: 0 4vw;
  }
  .features-grid, .services-list, .testimonial-list {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .features-grid, .services-list, .testimonial-list, .card-container {
    flex-direction: column;
    align-items: stretch !important;
    gap: 20px;
  }
  .hero {
    padding: 28px 6px 36px 6px;
  }
  .hero .container {
    padding: 0 0;
  }
  .card, .testimonial-card, .features-grid > div, .services-list > div {
    min-width: 90vw;
    max-width: 97vw;
    margin-left: 0;
    margin-right: 0;
  }
  .section {
    padding: 28px 7px;
    margin-bottom: 36px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 440px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1rem; }
  .logo img { max-width: 78px; }
  .footer-brand img { width: 26px; height: 26px; }
}

/* UTILITIES & SPACING */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* A11Y: OBVIOUS FOCUS STYLES */
a:focus, button:focus, .cta-button:focus, .cta-small:focus, .cookie-btn:focus, .mobile-nav a:focus, .footer-nav a:focus {
  outline: 2px solid var(--brand-pink);
  outline-offset: 2px;
  z-index: 2;
}

/* FORM ELEMENTS for contact page: feel free to adjust if you add a form */
input, textarea, select {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--brand-blue);
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 18px;
  background: #fff;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-pink);
  outline: none;
}

/* MISC. */
::-webkit-input-placeholder { color: #B1BAC2; font-size:1em; }
::-moz-placeholder { color: #B1BAC2; font-size:1em; }
:-ms-input-placeholder { color: #B1BAC2; font-size:1em; }
::placeholder { color: #B1BAC2; font-size:1em; }

/*********************************
** END OF STYLE.CS FILE **
*********************************/
