/* ================== RESET, NORMALIZE & 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 { height: 100%; font-size: 16px; }
body {
  min-height: 100%;
  background: #FFF;
  color: #14336E;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; cursor: pointer; transition: color 0.2s; }
button { font: inherit; cursor: pointer; border: none; background: none; padding: 0; outline: none; }


/* ================== COLOR VARIABLES (FALLBACKS INCLUDED) ================== */
:root {
  --primary: #14336E;
  --secondary: #F4BD31;
  --accent: #FFFFFF;
  --playful-pink: #F94589;
  --playful-blue: #31D6FF;
  --card-bg: #FFF5E6;
  --section-bg: #F4F9FF;
  --text-main: #14336E;
  --gray: #F7F7F7;
  --shadow: 0 4px 24px rgba(50, 54, 87, 0.12);
  --radius: 20px;
}


/* ================== TYPOGRAPHY ================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  line-height: 1.1;
  font-weight: 900;
  color: var(--primary);
}
h1 { font-size: 2.75rem; margin-bottom: 20px; letter-spacing: -1px; }
h2 { font-size: 2rem;   margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4 { font-size: 1.125rem; }

p, li, span, label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-main);
}
small { font-size: 0.95rem; color: #7D869E; }

.hero h1 {
  font-size: 2.5rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1.5px;
  text-shadow: 0 2px 8px rgba(244,189,49,0.06);
}
.hero p {
  font-size: 1.2rem;
  color: var(--playful-pink);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin-bottom: 24px;
}

/**** Fun + Energetic Headlines ****/
h1, h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 900;
  text-transform: none;
  /* Dynamic accent underline */
  position: relative;
}
h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 6px;
  border-radius: 3px;
  background: var(--secondary);
  margin-top: 16px;
  margin-bottom: 0;
  animation: playful-underline 1.1s 0.2s both cubic-bezier(.42,0,0,1.2);
}
@keyframes playful-underline {
  from { width: 0; opacity: 0; }
  to   { width: 60px; opacity: 1; }
}

/**** Fun Font for Teaser Text ****/
.text-section h3 {
  color: var(--playful-pink);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
}


/* ================== CONTAINER & LAYOUT ================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--section-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 14px;
  }
}

main > section { margin-bottom: 60px; }

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 0 0 0;
}

/****  Flexbox Patterns ****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 32px 20px;
  min-width: 260px;
  flex: 1 1 260px;
  position: relative;
  transition: transform .2s cubic-bezier(.68,-0.55,.27,1.55), box-shadow .2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover {
  transform: translateY(-5px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 36px rgba(244,75,137,0.13), var(--shadow);
  z-index: 1;
}

/**** CONTENT GRIDS & FLEXBOX ****/
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content { display: flex; flex-direction: column; justify-content: center; }

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 20px; align-items: flex-start; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(20,51,110,0.12);
  border: 2px solid var(--secondary);
  color: #222;
  max-width: 500px;
  transition: box-shadow .2s;
  position: relative;
}
.testimonial-card p {
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.06rem;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--primary);
  font-weight: bold;
  letter-spacing: 0.01em;
}
.testimonial-card:hover { box-shadow: 0 8px 36px rgba(49,214,255,0.14), var(--shadow); }

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

/**** Feature grid (for .feature-grid, .team-list, etc.) ****/
.feature-grid, .team-list, .project-list, .post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div, .project-list > div, .post-list > div, .team-list > div {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: transform .18s cubic-bezier(.82,-0.9,.21,1.6), box-shadow .2s;
}
.feature-grid > div:hover,
.project-list > div:hover,
.post-list > div:hover,
.team-list > div:hover {
  transform: translateY(-5px) scale(1.03) rotate(2deg);
  box-shadow: 0 8px 36px rgba(49,214,255,0.11), var(--shadow);
}
.feature-grid img, .text-section img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px rgba(20,51,110,0.11));
}

/**** Blog category tags ****/
.blog-categories {
  margin-top: 18px;
  margin-bottom: 18px;
}
.blog-categories h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.blog-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.blog-categories li {
  padding: 6px 16px;
  background: var(--playful-blue);
  color: #fff;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

/**** Contact Info Icons ****/
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.contact-info img { width: 24px; height: 24px; }

/**** Text Section / Standard Rich Text ****/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}
.text-section ul {
  margin-left: 18px;
  margin-bottom: 8px;
}
.text-section ul li {
  list-style: disc inside;
  margin-bottom: 5px;
}

/**** Project, Team, and Posts List ****/
.project-list > div, .team-list > div, .post-list > div {
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  transition: transform .18s, box-shadow .18s;
  margin-bottom: 20px;
  padding: 30px 22px;
  min-width: 220px;
}

/**** Responsive Flexbox ****/
@media (max-width: 768px) {
  .feature-grid, .team-list, .project-list, .post-list {
    flex-direction: column;
    gap: 16px;
  }
}


/**** Consistent Spacing ****/
.section > *, .container > *, .content-wrapper > * {
  margin-bottom: 20px;
}
.section > *:last-child, .container > *:last-child, .content-wrapper > *:last-child {
  margin-bottom: 0;
}


/* ================== HEADER, NAVIGATION, LOGO ================== */
header {
  width: 100%;
  background: var(--primary);
  box-shadow: 0 4px 16px rgba(20,51,110,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 12px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--accent);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  position: relative;
  transition: color .15s, transform .12s;
  padding: 5px 10px;
  border-radius: 12px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  background: rgba(249,69,137,0.10);
  transform: scale(1.09) rotate(-2deg);
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary) !important;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  padding: 12px 32px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(244,189,49,0.11);
  border: none;
  outline: none;
  transition: background .14s, color .13s, transform .15s;
  margin-left: 24px;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--playful-pink);
  color: #fff !important;
  transform: scale(1.05) rotate(2deg);
}

/**** Hamburger Menu ****/
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: background .14s, box-shadow .15s, color .13s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--playful-pink);
  color: #fff;
}

@media (max-width: 1024px) {
  .btn-primary { padding: 12px 18px; font-size: 1rem; margin-left: 12px; }
  .main-nav { gap: 18px; }
  .logo img { height: 40px; }
}
@media (max-width: 900px) {
  header .container { gap: 6px; }
  .btn-primary { margin-left: 0; }
}
@media (max-width: 768px) {
  .main-nav, .btn-primary { display: none !important; }
  .mobile-menu-toggle { display: flex; }
  header .container { flex-wrap: nowrap; }
}

/* ================== MOBILE MENU OVERLAY ================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  box-shadow: 0 12px 38px rgba(20,51,110,0.29);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 38px 0 0 0;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(.65,0,.27,1) , opacity .23s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--secondary);
  background: var(--playful-pink);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  border: none;
  transition: background .1s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 6rem;
  align-items: center;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.23rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 18px 14px;
  border-radius: 18px;
  transition: background .13s, color .13s, transform .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.07) rotate(-2deg);
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}
@media (max-width: 420px) {
  .mobile-menu nav.mobile-nav a { font-size: 1.08rem; }
}

/* ================== HERO / BANNER SECTIONS ================== */
.hero {
  background: linear-gradient(92deg, var(--section-bg) 60%, var(--playful-blue) 100%);
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  box-shadow: 0 8px 44px rgba(20,51,110,0.08);
  position: relative;
  padding: 60px 0 40px 0;
  margin-bottom: 60px;
  overflow: hidden;
  min-height: 270px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 160px;
}
.hero .content-wrapper {
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  gap: 18px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .hero { padding: 38px 0 22px 0; margin-bottom: 36px; border-radius: 0 0 26px 26px; }
  .hero .content-wrapper { gap: 14px; }
  .hero h1 { font-size: 1.78rem; }
}


/* ================== FOOTER ================== */
footer {
  background: var(--primary);
  color: #fff;
  width: 100%;
  padding: 44px 0 18px 0;
  box-shadow: 0 -3px 20px rgba(20,51,110,0.12);
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
footer .footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  margin: 15px 0 10px 0;
  align-items: center;
  justify-content: center;
}
footer .footer-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color .13s, background .13s, transform .13s;
  border-radius: 8px;
  padding: 5px 10px;
}
footer .footer-nav a:hover {
  color: var(--playful-blue);
  background: rgba(49,214,255,0.14);
  transform: scale(1.07) rotate(2deg);
}
footer .footer-contact p {
  font-size: 0.98rem;
  color: #e4def7;
  margin-bottom: 4px;
}
footer small {
  color: #FFFE;
  font-size: 0.90rem;
  margin-top: 10px;
  letter-spacing: 0.04em;
}
footer img {
  height: 38px;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  footer { padding: 24px 0 8px 0; }
}


/* ================== BUTTONS & ANIMATIONS ================== */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  left: -16%;
  top: 0;
  height: 100%;
  width: 30%;
  background: rgba(255,255,255,0.22);
  transform: skewX(-20deg);
  transition: left 0.4s cubic-bezier(.5,.1,.22,1);
  z-index: 1;
  pointer-events: none;
}
.btn-primary:hover::before, .btn-primary:focus::before {
  left: 82%;
}

/**** Fun micro-interaction: Pop in cards on scroll ****/
.card, .feature-grid > div, .project-list > div, .team-list > div, .post-list > div, .testimonial-card {
  opacity: 0;
  transform: scale(0.97) translateY(24px);
  animation: popIn .44s forwards cubic-bezier(.55,-0.6,.27,1.45);
  animation-delay: 0.14s;
}
@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/**** Bounce animation for playful style ****/
.btn-primary:active {
  animation: bounce .24s linear;
}
@keyframes bounce {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(.92) rotate(-2deg); }
  90% { transform: scale(1.08) rotate(3deg); }
  100% { transform: scale(1) rotate(0deg); }
}


/* ================== COOKIE CONSENT BANNER & MODAL ================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 3px solid var(--secondary);
  box-shadow: 0 -4px 20px rgba(20,51,110,0.07);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 18px 30px;
  z-index: 11000;
  animation: cookie-slide-up .7s cubic-bezier(.2,.57,.56,1.01);
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1rem;
  flex: 2 1 auto;
  margin-right: 12px;
}
.cookie-banner .banner-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  padding: 8px 20px;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(244,189,49,0.11);
  margin: 0;
  transition: background .12s, color .12s, transform .13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--playful-pink);
  color: #fff;
  transform: scale(1.06) rotate(-2deg);
}
.cookie-banner .cookie-settings {
  background: var(--playful-blue);
  color: #fff;
  margin-left: 4px;
}
.cookie-banner .cookie-settings:hover {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 8px;
    font-size: 0.99rem;
  }
  .cookie-banner .banner-actions { gap: 10px; }
}

/**** Cookie preferences modal ****/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 12000;
  background: rgba(20,51,110,0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fadein .26s;
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  min-width: 320px;
  max-width: 94vw;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 48px rgba(49,214,255,0.18), var(--shadow);
  padding: 32px 30px 25px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-popin .53s cubic-bezier(.5,-1.8,.27,2.11);
}
@keyframes cookie-modal-popin {
  0% { opacity: 0; transform: scale(.75) translateY(50px); }
  85% { opacity: 1; transform: scale(1.03) translateY(-8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  width: 24px;
  height: 24px;
  accent-color: var(--secondary);
  margin-right: 7px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 22px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 2px 8px rgba(244,189,49,0.10);
  transition: background .14s, color .13s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--playful-pink);
  color: #fff;
}
.cookie-modal .close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  color: var(--primary);
  font-size: 1.84rem;
  border-radius: 16px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center; justify-content: center;
  transition: background .1s;
}
.cookie-modal .close:hover {
  background: var(--secondary);
  color: var(--playful-pink);
}
.cookie-category input[disabled] {
  opacity: 0.7;
  pointer-events: none;
}
@media (max-width: 600px) {
  .cookie-modal { padding: 18px 10px 12px 10px; font-size: .99rem; }
}

/* ================== MISC & OVERRIDES ================== */
::-webkit-input-placeholder { color:#8badf7; }
::-moz-placeholder { color:#8badf7; }
:-ms-input-placeholder { color:#8badf7; }
::placeholder { color:#8badf7; }

/* Scrollbar Styles */
body::-webkit-scrollbar { width: 12px; background: var(--section-bg); }
body::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: linear-gradient(180deg, var(--playful-pink) 40%, var(--secondary) 100%);
}
body::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/**** Decorative Absolute Confetti & Dots  (playful dynamic) ****/
.section::before {
  content: '';
  position: absolute;
  left: 16px; top: 12px;
  width: 18px; height: 18px;
  background: var(--playful-blue);
  border-radius: 50%;
  opacity: .12;
  z-index: 0;
}
.section::after {
  content: '';
  position: absolute;
  right: 26px; bottom: 18px;
  width: 22px; height: 22px;
  background: var(--playful-pink);
  border-radius: 50%;
  opacity: .11;
  z-index: 0;
}

/**** Responsive image adjustments ****/
img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 475px) {
  h1 { font-size: 1.16rem; }
  h2 { font-size: 1.03rem; }
  .btn-primary { font-size: 0.92rem; padding: 10px 12px; }
}

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