/* ------------------------------------------------------
   CSS RESET & NORMALIZE
---------------------------------------------------------*/
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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F4F9FB;
  color: #233A53;
  font-family: 'Roboto', Arial, sans-serif;
}

/* Webfonts */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');

/* ------------------------------------------------------
   BRAND & PLAYFUL COLOR PALETTE
---------------------------------------------------------*/
:root {
  --brand-primary: #233A53;
  --brand-secondary: #6EB799;
  --brand-accent: #F4F9FB;
  --playful-yellow: #FFE25B;
  --playful-blue: #3FB6E0;
  --playful-pink: #FF518A;
  --playful-orange: #FFBB50;
  --bright-bg1: #F9F5FF;
  --bright-bg2: #FFF6E8;
  --shadow-play: 0 8px 24px rgba(60,80,125,.08), 0 2px 8px 0 rgba(90,200,170,.10);
}

/* ------------------------------------------------------
   TYPOGRAPHY
---------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 900;
  letter-spacing: -1px;
}
h1 { font-size: 2.6rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.18; margin-bottom: 20px; }
h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }

p, li, ul, ol, a, strong, label, input, textarea, button, small {
  font-family: 'Roboto', Arial, sans-serif; 
  font-size: 1rem;
}
p { margin-bottom: 16px; color: var(--brand-primary); }
strong { font-weight: 700; }
a { color: var(--playful-pink); text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: var(--playful-blue); text-decoration: underline; }

/* ------------------------------------------------------
   SPACING & LAYOUT TOOLKIT
---------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-play);
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.20s cubic-bezier(.26,1.42,.58,1), box-shadow .20s;
  will-change: transform, box-shadow;
}
.card:hover {
  transform: translateY(-5px) scale(1.035) rotate(-1deg);
  box-shadow: 0 4px 32px 0 rgba(255,81,138,.14);
}
.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: center;
  gap: 20px;
  padding: 20px;
  min-width: 260px;
  max-width: 450px;
  background: #fff;
  border: 2.5px solid var(--playful-yellow);
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(110,183,153,.13);
  margin-bottom: 20px;
  transition: border-color .20s, box-shadow .20s;
  color: #181820;
}
.testimonial-card p {
  color: #181820;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--brand-primary);
  font-size: 1.05rem;
  font-weight: bold;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------------------------------------------------------
   HEADER + NAVIGATION
---------------------------------------------------------*/
header {
  background: var(--brand-primary);
  width: 100%;
  box-shadow: 0 2px 8px 0 rgba(35,58,83,.07);
  z-index: 30;
  position: sticky;
  top: 0;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0 20px;
  height: 68px;
  justify-content: flex-start;
}
header nav a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .01em;
  padding: 8px 6px;
  border-radius: 4px;
  transition: background .14s, color .22s, transform .18s;
  position: relative;
}
header nav a.cta-main {
  background: var(--playful-yellow);
  color: var(--brand-primary);
  font-weight: 900;
  padding: 10px 20px;
  margin-left: 10px;
  border-radius: 8px 24px 8px 24px;
  box-shadow: 0 2px 8px 0 rgba(255,226,91,0.10);
  transition: background .19s,color .20s, transform .10s;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0;
  outline: none;
}
header nav a.cta-main:hover, header nav a.cta-main:focus {
  background: var(--playful-pink);
  color: #fff;
  transform: scale(1.05) rotate(-2deg);
}
header nav a:hover, header nav a:focus {
  background: rgba(110,183,153,0.25);
  color: var(--playful-yellow);
  transform: scale(1.04);
}
header nav a img {
  height: 36px;
}

.mobile-menu-toggle {
  display: none;
  background: var(--playful-yellow);
  color: var(--brand-primary);
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  margin-right: 12px;
  margin-left: auto;
  cursor: pointer;
  z-index: 41;
  transition: background .17s, color .15s, transform .17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--playful-blue);
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: var(--brand-primary);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
  z-index: 99;
  transform: translateX(100%);
  transition: transform .30s cubic-bezier(.63,.22,.24,1.12);
  box-shadow: -2px 0 32px 0 rgba(60,80,125,.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--playful-pink);
  color: #fff;
  padding: 8px 14px;
  border: none;
  border-radius: 20px;
  font-size: 1.7rem;
  margin: 16px 22px 16px 0;
  cursor: pointer;
  align-self: flex-end;
  transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--playful-yellow);
  color: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  padding: 14px 42px 0 0;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  padding: 12px 0;
  margin: 0;
  font-weight: 700;
  border-radius: 6px;
  min-width: 180px;
  text-align: right;
  transition: background .15s, color .16s, transform .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--playful-yellow);
  color: var(--brand-primary);
  transform: scale(1.06) translateX(-5px);
}

@media (max-width: 992px) {
  header nav {
    gap: 12px;
  }
}
@media (max-width: 820px) {
  header nav a:not(.cta-main):not(:first-child) {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 6px; }
  .content-wrapper { padding: 0 2px; }
}

/* ------------------------------------------------------
   HERO SECTION
---------------------------------------------------------*/
.hero {
  background: linear-gradient(100deg,var(--playful-blue),var(--playful-yellow),var(--brand-accent));
  background-size: 200% 100%;
  animation: hero-bg-move 9s linear infinite alternate;
  padding: 54px 0 54px 0;
  margin-bottom: 60px;
}
@keyframes hero-bg-move {
  0% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  max-width: 600px;
}
.hero h1 {
  color: var(--brand-primary);
  font-family: 'Montserrat',Arial,sans-serif;
  letter-spacing: -.7px;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 24px;
  color: #233A53;
  font-weight: 500;
}
.hero .cta-main {
  margin-top: 10px;
}

/* ------------------------------------------------------
   FEATURE GRID & GENERAL CARDS
---------------------------------------------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 24px;
  justify-content: flex-start;
  margin-top: 16px;
  margin-bottom: 16px;
}
.feature-grid > div {
  background: var(--playful-orange);
  border-radius: 16px 36px 16px 20px;
  box-shadow: var(--shadow-play);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 295px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .17s, background .16s, transform .16s;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid > div img {
  height: 44px;
  filter: drop-shadow(0 2px 2px rgba(35,58,83,0.08));
}
.feature-grid > div:hover {
  box-shadow: 0 6px 42px 0 rgba(255,81,138,.10);
  background: var(--playful-yellow);
  transform: rotate(-1.5deg) scale(1.025);
}
.feature-grid > div h3 {
  font-size: 1.09rem;
  margin-bottom: 6px;
  font-weight: 900;
  color: var(--brand-primary);
  font-family: 'Montserrat',sans-serif;
}
.feature-grid > div p {
  font-size: 1rem;
  color: #222b36;
}
.feature-grid > div ul {
  margin-top: 6px;
  padding-left: 24px;
}
.feature-grid > div ul li {
  list-style: disc;
  font-size: 0.97rem;
  color: var(--brand-primary);
  margin-bottom: 4px;
}

/* ------------------------------------------------------
   ARTICLE LIST / FILTERS IN PORADY
---------------------------------------------------------*/
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.filters button {
  background: var(--playful-yellow);
  border: none;
  color: var(--brand-primary);
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 0.99rem;
  padding: 7px 14px;
  border-radius: 12px 22px 12px 22px;
  cursor: pointer;
  transition: background .16s, color .12s, transform .17s;
  box-shadow: 0 1px 6px 0 rgba(255,226,91,.08);
}
.filters button:hover,.filters button:focus {
  background: var(--playful-pink);
  color: #fff;
  transform: scale(1.06) rotate(-2deg);
}
.article-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 16px;
}
.article-list article {
  background: #fff;
  border-radius: 14px 14px 24px 24px;
  box-shadow: 0 3px 18px 0 rgba(63,182,224,.05);
  padding: 22px 18px 16px 18px;
  transition: box-shadow .21s, transform .15s;
}
.article-list article:hover {
  box-shadow: 0 6px 35px 0 rgba(255,81,138,.10);
  transform: scale(1.018) rotate(-1deg);
}
.article-list h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  color: var(--brand-primary);
  font-weight: 700;
}

/* ------------------------------------------------------
   TEXT/INFO/FAQ/THANKYOU SECTIONS
---------------------------------------------------------*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul {
  margin-left: 20px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.text-section li {
  list-style: disc inside;
  color: #233A53;
  font-size: 1rem;
}
.text-section h2 {
  margin-top: 18px;
  font-size: 1.22rem;
}
.text-section p img {
  height: 18px;
  margin-right: 8px;
  vertical-align: bottom;
}
.text-section p {
  color: #233A53;
  font-size: 1rem;
}
.thankyou {
  background: var(--playful-blue);
  background: linear-gradient(90deg, #FFF6E8, #3FB6E0 90%);
  border-radius: 36px 36px 2px 2px;
  box-shadow: 0 3px 24px 0 rgba(255,187,80,.07);
  min-height: 360px;
  margin-top: 60px;
  margin-bottom: 60px;
}

/* ------------------------------------------------------
   CALL TO ACTION CTA SECTIONS
---------------------------------------------------------*/
.cta {
  background: var(--bright-bg2);
  border-radius: 36px 36px 2px 2px;
  box-shadow: 0 4px 32px 0 rgba(246,136,174,.14);
  margin-bottom: 40px;
  text-align: left;
}
.cta h2 {
  font-size: 2rem;
  color: var(--brand-primary);
  font-family: 'Montserrat',sans-serif;
  margin-bottom: 14px;
}
.cta .cta-main {
  margin-left: 0;
}

.cta-main {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.10rem;
  background: var(--playful-yellow);
  color: var(--brand-primary);
  padding: 14px 32px;
  border-radius: 16px 32px 16px 32px;
  margin-top: 10px;
  text-align: center;
  transition: background .19s, color .19s, transform .13s, box-shadow .14s;
  box-shadow: 0 2px 12px 0 rgba(255,226,91,.12);
  border: none;
  outline: none;
  cursor: pointer;
}
.cta-main:hover, .cta-main:focus {
  background: var(--playful-pink);
  color: #fff;
  box-shadow: 0 6px 40px 0 rgba(255,81,138,.12);
  transform: scale(1.04) rotate(-2.5deg);
}

/* ------------------------------------------------------
   FOOTER
---------------------------------------------------------*/
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 28px 0 18px 0;
  margin-top: 38px;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -3px 16px 0 rgba(35,58,83,.06);
}
footer .container {
  padding-top: 0;
  padding-bottom: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
footer img[alt="Spokój Majątku"] {
  height: 42px;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  transition: color .18s, text-decoration .11s;
  font-family: 'Roboto', Arial, sans-serif;
}
footer nav a:hover, footer nav a:focus {
  color: var(--playful-yellow);
  text-decoration: underline;
}
footer .text-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer .text-section p {
  font-size: 0.995rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 7px;
}
footer .text-section img {
  height: 18px;
}
footer .social-icons {
  display: flex;
  gap: 7px;
  align-items: center;
}
footer .social-icons img {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
  transition: background .17s, transform .12s;
}
footer .social-icons img:hover,footer .social-icons img:focus {
  background: var(--playful-blue);
  transform: scale(1.12) rotate(-6deg);
}
footer small {
  margin-top: 12px;
  display: block;
  color: var(--playful-yellow);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

/* ------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
---------------------------------------------------------*/
#cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--playful-yellow);
  box-shadow: 0 -3px 24px 0 rgba(255,81,138,.10);
  padding: 26px 16px 18px 16px;
  min-height: 64px;
  gap: 16px;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform .27s cubic-bezier(.31,.86,.67,1.23);
  opacity: 1;
}
#cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
#cookie-banner p {
  margin: 0 14px 0 0;
  color: var(--brand-primary);
  font-size: 1rem;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
  padding: 7px 20px;
  min-width: 100px;
  border-radius: 10px 18px 10px 18px;
  color: #fff;
  background: var(--playful-pink);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(255,81,138,0.13);
  transition: background .18s, color .13s, transform .14s;
  font-weight: bold;
}
.cookie-btn.settings {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-btn.accept {
  background: var(--playful-pink);
}
.cookie-btn.reject {
  background: var(--playful-blue);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--playful-yellow);
  color: var(--brand-primary);
  transform: scale(1.06) rotate(-2deg);
}

#cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 2022;
  background: #fff;
  border-radius: 30px 25px 10px 30px;
  box-shadow: 0 10px 60px 0 rgba(35,58,83, .18);
  transform: translate(-50%, -60%) scale(0.98);
  display: none;
  flex-direction: column;
  min-width: 300px;
  max-width: 95vw;
  padding: 30px 28px 26px 28px;
  gap: 18px;
  transition: transform .22s, box-shadow .16s;
  animation: pop-in-modal .32s cubic-bezier(.41,1.54,.45,1.22);
}
@keyframes pop-in-modal {
  0% { opacity: 0; transform: scale(0.85) translate(-50%, -70%); }
  95% { opacity: 1; }
  100% { transform: scale(1) translate(-50%, -60%); }
}
#cookie-modal.open {
  display: flex;
}
#cookie-modal h2 {
  color: var(--brand-primary);
  font-size: 1.32rem;
}
#cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#cookie-modal label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.06rem;
  color: var(--brand-primary);
}
#cookie-modal input[type="checkbox"] {
  accent-color: var(--brand-secondary);
  width: 1.15em;
  height: 1.15em;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-start;
}
#cookie-modal .cookie-btn {
  min-width: 110px;
}
#cookie-modal .cookie-btn.settings {
  background: var(--playful-pink);
  color: #fff;
}

/* ------------------------------------------------------
   RESPONSIVE & FLEXBOX LAYOUTS
---------------------------------------------------------*/
@media (max-width: 1116px) {
  .feature-grid > div, .card, .testimonial-card {
    min-width: 180px;
    max-width: 80vw;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    flex-wrap: wrap;
    gap: 20px 14px;
    justify-content: flex-start;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.39rem; }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div {
    max-width: unset;
    width: 100%;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 99vw;
  }
  .section, .cta, .hero {
    padding: 25px 7px;
    border-radius: 14px;
  }
  .thankyou { border-radius: 16px 16px 2px 2px; }
  .content-wrapper { gap: 19px; }
  .text-image-section { flex-direction: column; gap: 22px; }
  header nav { height: 60px; }
  footer .content-wrapper {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1rem; }
  .hero, .cta, .section { padding: 15px 2px; }
  .feature-grid > div, .card, .testimonial-card { padding: 11px 8px; }
}

/* ------------------------------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
---------------------------------------------------------*/
.feature-grid > div, .testimonial-card, .card, .article-list article, .cta-main, .filters button, .cookie-btn {
  transition: box-shadow .23s cubic-bezier(.48,1.39,.37,.91),
              background .17s,
              color .15s,
              transform .19s,
              border-color .13s;
  will-change: transform, box-shadow;
}
.cta-main, .cookie-btn, .filters button {
  cursor: pointer;
}
.cta-main:active, .cookie-btn:active, .filters button:active {
  transform: scale(.98) rotate(.5deg) !important;
}

/* Fun floating animation for icons in features */
.feature-grid > div img, .testimonial-card strong {
  animation: floatyIcon 2.7s ease-in-out infinite alternate;
  animation-delay: 0.2s;
}
@keyframes floatyIcon {
  0% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-5px) rotate(2deg); }
  100% { transform: translateY(0) rotate(-1deg); }
}

/* Colorful blinking border for testimonial cards (playful) */
.testimonial-card {
  border: 2.5px dashed var(--playful-yellow);
  animation: borderGlow 2.5s linear infinite alternate;
  position: relative;
  overflow: hidden;
}
@keyframes borderGlow {
  0% { border-color: var(--playful-yellow); }
  33% { border-color: var(--playful-pink); }
  66% { border-color: var(--playful-blue); }
  100% { border-color: var(--playful-yellow); }
}

/* ------------------------------------------------------
   LIST STYLES & MISC
---------------------------------------------------------*/
ul, ol {
  margin-left: 21px;
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 6px;
  font-size: 1rem;
  color: #1a2333;
  font-family: 'Roboto', Arial, sans-serif;
}
ul img, ol img {
  height: 18px;
  margin-right: 7px;
  vertical-align: text-bottom;
}

/* Fix for images that should not overflow card corners */
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* ------------------------------------------------------
   FORM ELEMENTS & BUTTONS (if any form exists)
---------------------------------------------------------*/
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 10px;
  border: 1.5px solid var(--brand-secondary);
  padding: 8px 12px;
  font-size: 1rem;
  margin-bottom: 14px;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--playful-yellow);
}
button, .button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-radius: 12px;
  background: var(--playful-pink);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 22px;
  border: none;
  margin-top: 4px;
  box-shadow: 0 1px 10px 0 rgba(255,81,138,0.10);
  cursor: pointer;
  transition: background .19s, color .16s, transform .16s;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: var(--playful-yellow);
  color: var(--brand-primary);
  transform: scale(1.05) rotate(-2deg);
}

/* ------------------------------------------------------
   END OF MAIN STYLE.CSS
---------------------------------------------------------*/
