/* 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #F6F8FC;
  font-family: 'Roboto', Arial, sans-serif;
  color: #23394d;
  font-size: 16px;
  min-height: 100vh;
}
img, svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}
ul, ol {
  list-style: none;
}
a {
  color: #175072;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #55A630;
  outline: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* BRAND COLORS & FONTS */
:root {
  --color-primary: #175072;
  --color-secondary: #55A630;
  --color-accent: #F6F8FC;
  --color-white: #fff;
  --color-black: #16181b;
  --color-warning: #FFA726;
  --color-info: #56CCF2;
  --shadow-card: 0 4px 16px 0 rgba(23,80,114,0.12);
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* UTILITIES */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 14px;
  animation: pop-in 0.9s cubic-bezier(.68, -0.55, .27, 1.55);
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--color-secondary);
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}
h4 {
  font-size: 1.1rem;
}
p, li, address {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #23394d;
}
blockquote {
  font-style: italic;
  background: #e4ffd5;
  color: #338622;
  border-left: 5px solid #55A630;
  padding: 12px 22px 12px 18px;
  margin: 18px 0 12px 0;
  border-radius: 18px;
  font-size: 1.05rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
strong {
  color: var(--color-secondary);
  font-weight: 700;
}
.subheadline {
  font-size: 1.13rem;
  color: #175072;
  margin-bottom: 14px;
  font-family: var(--font-display);
}

/* FUN & ENERGETIC FONTS (HEADINGS) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;700&display=swap');

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 3px 12px 0 rgba(23,80,114,0.08);
  position: sticky;
  top: 0;
  z-index: 90;
  width: 100%;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  height: 68px;
}
.main-nav > a img {
  height: 38px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.main-nav ul li a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--color-primary);
  padding: 5px 10px;
  border-radius: 8px;
  position: relative;
  transition: background 0.16s, color 0.16s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus, .main-nav ul li.active a {
  background: var(--color-secondary);
  color: var(--color-accent);
}
.cta-button {
  background: var(--color-secondary);
  color: #fff!important;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.02rem;
  border: none;
  border-radius: 2em;
  box-shadow: 0 4px 16px 0 rgba(85,166,48,0.11);
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.16s, transform 0.15s;
  margin-left: 19px;
  display: inline-block;
  outline: none;
  text-decoration: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-primary);
  color: #fff!important;
  box-shadow: 0 6px 20px 0 rgba(23,80,114,0.20);
  transform: translateY(-2px) scale(1.03) rotate(-2deg);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 12px;
  padding: 6px 18px;
  margin-right: 10px;
  border: none;
  z-index: 140;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,80,114,0.97);
  box-shadow: 0 8px 38px 0 rgba(23,80,114,0.25);
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 16px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  font-size: 2.0rem;
  margin: 24px 20px 8px 0;
  border: none;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 38px 0 0 12px;
  width: 90vw;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-weight: 800;
  font-size: 1.18rem;
  padding: 8px 2px 8px 0;
  border-radius: 8px;
  transition: background 0.13s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* HEADER RESPONSIVENESS */
@media (max-width: 1024px) {
  .main-nav {
    gap: 13px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 10px;
  }
  .cta-button {
    padding: 10px 18px;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    margin-left: auto;
  }
}
/* LOGO RESPONSIVENESS */
@media (max-width: 480px) {
  .main-nav > a img {
    height: 27px;
  }
}

/* HERO & GENERAL SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
@media (max-width: 600px) {
  .section, section {
    padding: 27px 0 0 0;
  }
}

/* FEATURE GRID ON HOMEPAGE */
.features-grid, .services-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .features-grid, .services-preview-grid {
    gap: 19px;
    flex-direction: column;
  }
}
.feature {
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: 24px;
  padding: 26px 20px 20px 20px;
  flex: 1 1 220px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.19s, transform 0.2s;
  position: relative;
  z-index: 1;
  border: 2px solid #e0eafd;
  animation: float-card 1s 0.06s both cubic-bezier(.68,-0.55,.27,1.55);
}
.feature:hover {
  box-shadow: 0 8px 32px 0 rgba(85,166,48,.20);
  transform: translateY(-5px) scale(1.018) rotate(-1.5deg);
  border-color: var(--color-secondary);
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  filter: drop-shadow(1px 3px 3px #dafbe9);
}

/* SERVICES OVERVIEW GRID */
.service-preview {
  background: #e6faff;
  border-radius: 18px;
  box-shadow: 0 1px 6px rgba(23,80,114,0.05);
  padding: 20px 16px 16px;
  margin-bottom: 16px;
  flex: 1 1 240px;
  min-width: 210px;
  transition: background 0.16s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid #d6f3ff;
}
.service-preview:hover {
  background: #f6f8fc;
  box-shadow: 0 6px 18px 0 rgba(85,166,48,0.13);
  border-color: #55A630;
}

/* CTA BANNER */
section .cta-button {
  margin-top: 11px;
}

/* ABOUT US PAGE */
.text-section {
  margin-bottom: 16px;
}
.text-section p {
  margin-bottom: 8px;
  color: #175072;
}
ul, ol {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 22px;
}
ul li, ol li {
  margin-bottom: 6px;
  padding-left: 8px;
  position: relative;
  font-size: 1rem;
}
ul li:before {
  content: '\2022';
  color: var(--color-secondary);
  position: absolute;
  left: -15px;
  font-size: 1.05em;
  top: 0.08em;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 17px 0;
}
.stat {
  background: #fffbe6;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(255, 231, 85, 0.10);
  padding: 22px 28px;
  min-width: 120px;
  text-align: center;
  flex: 1 1 120px;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-weight: bold;
}
.stat h3 {
  color: var(--color-secondary);
  font-size: 2rem;
  margin-bottom: 6px;
  font-weight: 900;
}
.stat p {
  color: #23394d;
  font-size: 1.06rem;
}
@media (max-width: 600px) {
  .stats-grid {
    flex-direction: column;
    gap: 13px;
  }
}

/* SERVICES PAGE */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.service-item {
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 14px;
  box-shadow: 0 2px 12px 0 rgba(23,80,114,0.09);
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  border: 2px solid #eaf9e0;
  transition: box-shadow 0.17s, border-color 0.16s, transform 0.18s;
  z-index: 1;
}
.service-item:hover {
  box-shadow: 0 8px 24px 0 rgba(85,166,48,0.15);
  border-color: var(--color-secondary);
  transform: translateY(-3px) scale(1.01) rotate(1deg);
}
.service-item h2 {
  font-size: 1.25rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 7px;
}
.service-item strong {
  font-size: 1.09rem;
  color: var(--color-secondary);
}

/* PROJECTS PAGE */
.project-summaries {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 6px 0;
}
.project-item {
  background: #fff;
  border-radius: 22px;
  padding: 20px 18px 18px 18px;
  box-shadow: 0 3px 16px 0 rgba(23,80,114,0.10);
  flex: 1 1 280px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.17s, border-color 0.18s;
  border: 2px solid #d3f2e7;
  position: relative;
}
.project-item:hover {
  box-shadow: 0 9px 30px 0 rgba(23,80,114,0.16);
  border-color: #55A630;
  transform: rotate(-2deg) scale(1.018);
}

/* TESTIMONIALS */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 17px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(23,80,114,0.11);
  min-width: 220px;
  flex: 1 1 280px;
  position: relative;
  border-left: 7px solid var(--color-secondary);
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.04rem;
  border-left: none;
}
.testimonial-card p {
  color: #1c2830;
  font-size: 0.97rem;
  margin-top: 6px;
}
@media (max-width: 700px) {
  .testimonials-slider {
    flex-direction: column;
    gap: 14px;
  }
}

/* TEAM PAGE */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 20px 0;
  justify-content: flex-start;
}
.team-member {
  background: #f5faff;
  border-radius: 18px;
  padding: 20px 17px 15px 17px;
  min-width: 200px;
  flex: 1 1 208px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(23,80,114,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, border-color 0.19s, transform 0.18s;
  border: 2px solid #c6e0ff;
}
.team-member:hover {
  box-shadow: 0 8px 25px 0 rgba(23,80,114,0.15);
  border-color: var(--color-primary);
  transform: rotate(1.5deg) scale(1.02);
}
.team-member h3 {
  margin-bottom: 8px;
  color: var(--color-secondary);
  font-size: 1.18rem;
  font-family: var(--font-display);
}
.team-member p {
  font-size: 0.98rem;
  color: #23394d;
}
@media (max-width: 700px) {
  .team-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* CONTACT PAGE */
.contact-info-block {
  display: flex;
  gap: 30px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.contact-info-block > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(23,80,114,0.09);
  padding: 16px 20px;
  margin-bottom: 20px;
}
.contact-info-block h2 {
  font-size: 1.15rem;
  font-family: var(--font-display);
  margin-bottom: 8px;
  color: var(--color-secondary);
}
.contact-info-block img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
.map-embed-placeholder {
  background: #e6faff;
  border-radius: 12px;
  padding: 10px 14px 10px 7px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 11px;
  font-size: 1rem;
  color: #175072;
}
.map-embed-placeholder img {
  width: 21px;
  height: 21px;
}
.cta-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
}
@media (max-width: 700px) {
  .contact-info-block {
    flex-direction: column;
    gap: 13px;
  }
  .cta-row {
    justify-content: flex-start;
    margin-top: 12px;
  }
}

/* THANK YOU PAGE */
.confirmation-message {
  background: #F6F8FC;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(23,80,114,0.05);
  padding: 30px 20px 22px;
  margin-top: 13px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.confirmation-message p {
  font-size: 1.08rem;
  color: #175072;
}

/* FOOTER */
footer {
  background: #fafdff;
  padding: 42px 16px 31px 16px;
  border-top: 3px solid #e7f7ea;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.98rem;
  padding: 3px 8px;
  border-radius: 6px;
  transition: background 0.14s;
}
.footer-nav a:hover {
  background: #e2ffee;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #23394d;
}
.footer-contact address {
  font-size: 0.98rem;
  font-style: normal;
  color: #175072;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 6px;
}
.footer-logo {
  margin-top: 8px;
}
.footer-logo img {
  height: 44px;
}
@media (max-width: 600px) {
  .footer-nav {
    gap: 8px;
  }
}

/* FLEXBOX SPACING & 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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* RESPONSIVE FLEXBOX ADJUSTMENTS */
@media (max-width: 768px) {
  .content-grid, .card-container, .team-grid, .features-grid, .services-preview-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ANIMATIONS: playful dynamic! */
@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0.7) rotate(-8deg);
  }
  80% {
    opacity: 1;
    transform: scale(1.06) rotate(1.5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
@keyframes float-card {
  0% {
    opacity: 0;
    transform: translateY(25px) scale(0.95);
  }
  80% {
    opacity: 1;
    transform: translateY(-7px) scale(1.06);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* BUTTONS */
button,
.cta-button {
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.17s, box-shadow 0.19s, transform 0.13s;
}
button:focus, .cta-button:focus {
  box-shadow: 0 0 6px 3px #eafff3;
}

/* Cookie Consent Banner + Modal */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #175072;
  box-shadow: 0 -2px 14px 0 rgba(23,80,114,0.11);
  padding: 20px 24px 20px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 3000;
  font-size: 1rem;
  animation: pop-in 0.5s ease;
  font-family: var(--font-body);
}
.cookie-banner button {
  margin-left: 10px;
}
.cookie-banner .cookie-btn {
  padding: 8px 22px;
  border-radius: 19px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  margin-right: 9px;
  margin-top: 4px;
  margin-bottom: 4px;
  box-shadow: 0 3px 9px 0 rgba(85,166,48,0.07);
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner .accept:hover {
  background: var(--color-primary);
}
.cookie-banner .reject {
  background: #f4d9d9;
  color: #d94f4f;
}
.cookie-banner .reject:hover {
  background: #ffb1b1;
}
.cookie-banner .settings {
  background: #fdfbe0;
  color: #968d24;
}
.cookie-banner .settings:hover {
  background: #fff8b7;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    font-size: 0.97rem;
    padding: 15px 8px 16px 10px;
  }
  .cookie-banner .cookie-btn {
    width: 90%;
    margin-bottom: 4px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(23,80,114,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  pointer-events: auto;
  transition: background 0.3s;
}
.cookie-modal {
  background: #fff;
  border-radius: 23px;
  box-shadow: 0 8px 32px 0 rgba(23,80,114,0.21);
  padding: 32px 28px 24px 28px;
  width: 100%;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: pop-in 0.33s;
  position: relative;
  font-family: var(--font-body);
  color: #1c2830;
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.26rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  margin-bottom: 11px;
  gap: 10px;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-modal .switch {
  width: 36px; height: 20px;
  background: #e7f7ea;
  border-radius: 10px;
  position: relative;
  transition: background 0.21s;
}
.cookie-modal input[type="checkbox"] {
  display: none;
}
.cookie-modal .toggleball {
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: var(--color-secondary);
  border-radius: 50%;
  transition: left 0.19s;
}
.cookie-modal input[type="checkbox"]:checked + .switch {
  background: #D6EEDD;
}
.cookie-modal input[type="checkbox"]:checked + .switch .toggleball {
  left: 18px;
}
.cookie-modal .close {
  position: absolute;
  top: 14px; right: 17px;
  background: none;
  font-size: 1.22rem;
  color: #175072;
  cursor: pointer;
  border: none;
}
.cookie-modal .close:hover {
  color: #d94f4f;
}
.cookie-modal-actions {
  margin-top: 24px;
  width: 100%;
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 8px 16px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1px;
}
.cookie-modal-actions .accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-modal-actions .accept:hover {
  background: var(--color-primary);
}
.cookie-modal-actions .reject {
  background: #f4d9d9;
  color: #d94f4f;
}
.cookie-modal-actions .reject:hover {
  background: #ffb1b1;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 19px 10px 12px 10px;
  }
  .cookie-modal-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
  }
}

/* PLAYFUL DYNAMIC DECORATIVE EFFECTS */
.feature:before, .service-item:before, .project-item:before, .team-member:before {
  content: "";
  display: block;
  position: absolute;
  width: 28px; height: 28px;
  right: 16px; top: 12px;
  background: var(--color-secondary);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}
.service-item:after {
  content: "";
  display: block;
  position: absolute;
  width: 16px; height: 16px;
  left: 12px; bottom: 13px;
  background: var(--color-primary);
  opacity: 0.16;
  border-radius: 44% 56% 63% 37% / 53% 72% 28% 47%;
  z-index: 0;
}

/* MICRO-INTERACTIONS & HOVER TRANSITIONS */
.cta-button, .service-item, .feature, .project-item, .team-member, .service-preview {
  transition: box-shadow 0.17s, transform 0.18s, border-color 0.17s, background 0.18s;
}
.cta-button:active {
  transform: scale(0.99);
}

/* RESPONSIVE GLOBAL ADJUSTMENTS */
@media (max-width: 500px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  h3 {
    font-size: 1rem;
  }
}
