/* =============================================
   CSS RESET & NORMALIZE (MOBILE FIRST BASELINE)
============================================= */
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,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img,
picture {
  max-width: 100%;
  display: block;
  border: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

/* ============================
   SOFT PASTEL COLOR VARIABLES
============================ */
:root {
  --primary: #283e4a;
  --primary-light: #4a5d70;
  --secondary: #86c5c1;
  --secondary-light: #b1e0de;
  --accent: #f6f2e7;
  --accent2: #faeee3;
  --pastel-pink: #ffd8e4;
  --pastel-lilac: #e7eafe;
  --pastel-mint: #dcf7f4;
  --pastel-yellow: #fffbe8;
  --pastel-sky: #d1e5f9;
  --white: #fff;
  --gray: #6e7379;
  --shadow: 0 4px 20px rgba(134, 197, 193, 0.13);
  --radius: 18px;
  --space-s: 8px;
  --space-m: 16px;
  --space-l: 32px;
  --space-xl: 48px;
  --transition: all 0.23s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background: var(--accent2);
  font-family: "Roboto", Arial, sans-serif;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 var(--space-m);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* ================================
   TYPOGRAPHY
================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Roboto", Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 0.75em;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.7em;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4em;
  font-weight: 600;
}
h4,
h5,
h6 {
  font-size: 1.1rem;
}
p,
ul,
ol {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: var(--space-m);
}
ul,
ol {
  padding-left: var(--space-m);
  margin-bottom: var(--space-m);
}
ul li,
ol li {
  margin-bottom: var(--space-s);
}
strong,
b {
  font-weight: 600;
  color: var(--primary);
}

/* ====================
   BUTTONS & CTA
==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", Arial, sans-serif;
  padding: 12px 32px;
  border-radius: var(--radius);
  border: none;
  font-weight: 600;
  font-size: 1.14rem;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 12px rgba(40, 62, 74, 0.04);
}
.btn-primary {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 6px 18px rgba(40, 62, 74, 0.09);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(40, 62, 74, 0.16);
}
.btn:hover,
.btn:focus {
  background: var(--secondary-light);
}
.btn-filter {
  background: var(--pastel-mint);
  color: var(--primary);
  margin-right: 6px;
  border: 1px solid var(--secondary-light);
  font-size: 1rem;
  padding: 6px 18px;
  border-radius: 9999px;
  transition: var(--transition);
}
.btn-filter:hover,
.btn-filter.active {
  background: var(--secondary);
  color: var(--white);
}
.btn-download {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: var(--radius);
  padding: 8px 24px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  margin-top: var(--space-s);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.btn-download:hover,
.btn-download:focus {
  background: var(--primary);
  color: var(--accent);
}

/* ============================
   HEADER, NAVIGATION & LOGO
============================ */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 3px 18px rgba(134, 197, 193, 0.09);
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding-top: 0;
  padding-bottom: 0;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  font-size: 1.07rem;
  border-radius: 809px;
  padding: 7px 15px;
  position: relative;
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--secondary-light);
}

.mobile-menu-toggle {
  display: none !important;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  margin-left: var(--space-s);
  padding: 6px 12px;
  border-radius: 6px;
  align-items: center;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--pastel-mint);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 5px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 2px;
  }
  .logo img {
    height: 30px;
  }
}
@media (max-width: 768px) {
  header .btn.btn-primary {
    display: none;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =======================
   MOBILE MENU & OVERLAY
======================= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    135deg,
    var(--accent2) 70%,
    var(--secondary-light) 100%
  );
  z-index: 200;
  box-shadow: 0 2px 28px rgba(40, 62, 74, 0.16);
  transform: translateX(-100%);
  transition: var(--transition);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--primary);
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  border-radius: 8px;
  padding: 3px 12px;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--pastel-mint);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  margin-top: 44px;
  margin-left: 36px;
}
.mobile-nav a {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  padding: 12px 0 12px 6px;
  border-radius: 6px;
  transition: background 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary-light);
  color: var(--primary-light);
}

@media (max-width: 400px) {
  .mobile-nav {
    margin-left: 12px;
  }
}

/* ===========================
   HERO & SECTION STYLES
=========================== */
.hero {
  background: linear-gradient(
    135deg,
    var(--pastel-mint) 40%,
    var(--pastel-sky) 100%
  );
  min-height: 410px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
.hero .container,
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 340px;
}
.hero h1 {
  color: var(--primary);
  margin-bottom: var(--space-m);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero p {
  color: var(--gray);
  font-size: 1.18rem;
  margin-bottom: var(--space-l);
}

/* --- SECTION SPACING --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
}
@media (max-width: 600px) {
  section {
    padding: 28px 7px;
    margin-bottom: 32px;
  }
}

.features,
.feature-grid,
.feature-item {
  width: 100%;
}
.features .content-wrapper > h2 {
  margin-bottom: 28px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: var(--space-m);
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  flex: 1 1 220px;
  max-width: 305px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.feature-item img {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 6px #dcf7f480);
}
.feature-item h3 {
  font-size: 1.21rem;
  margin-bottom: 0.3em;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 8px 28px rgba(40, 62, 74, 0.16);
  transform: translateY(-3px) scale(1.012);
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 12px;
  }
}
@media (max-width: 700px) {
  .feature-grid {
    flex-direction: column;
    gap: 12px;
  }
  .feature-item {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* =========
  CARDS
========= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  transition: box-shadow 0.19s, transform 0.18s;
  display: flex;
  flex-direction: column;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 7px 22px rgba(40, 62, 74, 0.16);
  transform: translateY(-2px) scale(1.01);
}

/* =============================================================================
   FLEX ALIGNMENT LAYOUTS (MANDATORY - MATCH EXACT CLASSNAMES FROM REQUIREMENTS)
============================================================================= */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* =======================
   TESTIMONIALS & PARTNERS
======================== */
.testimonials {
  background: var(--pastel-lilac);
}
.testimonials .content-wrapper {
  align-items: stretch;
}
.testimonials h2 {
  color: var(--primary);
  margin-bottom: 28px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 20px;
  min-width: 230px;
  flex: 1 1 260px;
  max-width: 340px;
  margin-bottom: 20px;
  border: 1px solid var(--accent2);
  transition: box-shadow 0.16s, transform 0.19s;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: var(--primary);
}
.testimonial-meta span {
  font-size: 0.99rem;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--gray);
  opacity: 0.82;
  margin-top: 3px;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 7px 22px rgba(40, 62, 74, 0.17);
  transform: translateY(-2px) scale(1.01);
}
.partner-logos {
  margin-top: 26px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.partner-logos img {
  width: 72px;
  height: 72px;
  opacity: 0.78;
  filter: grayscale(1);
  transition: opacity 0.16s;
}
.partner-logos img:hover,
.partner-logos img:focus {
  opacity: 1;
  filter: grayscale(0);
}
@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .partner-logos {
    gap: 10px;
  }
}

/* ===============
  ABOUT/TEAM
=============== */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: var(--space-m);
}
.team-member {
  background: var(--pastel-pink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px 17px 20px;
  margin-bottom: 20px;
  flex: 1 1 230px;
  max-width: 300px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.15s, transform 0.17s;
}
.team-member h3 {
  color: var(--primary);
  margin-bottom: 2px;
}
.team-member:hover,
.team-member:focus-within {
  box-shadow: 0 9px 28px rgba(225, 170, 221, 0.13), var(--shadow);
  transform: translateY(-3px) scale(1.013);
}
@media (max-width: 700px) {
  .team-list {
    flex-direction: column;
    gap: 16px;
  }
  .team-member {
    max-width: 100%;
  }
}

/* ===============
  CTA SECTIONS
=============== */
.cta,
.contact-cta {
  background: var(--pastel-mint);
  text-align: center;
  border-radius: var(--radius);
  box-shadow: 0 2px 13px rgba(134, 197, 193, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta h2,
.contact-cta h2 {
  margin-bottom: 16px;
}
.cta .btn,
.contact-cta .btn {
  margin-top: 24px;
  align-self: center;
}

/* =================
  PROJECTS/PUBLICATIONS/EVENTS
================= */
.project-categories,
.filter-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.project-categories .category {
  background: var(--pastel-mint);
  color: var(--primary);
  border-radius: 409px;
  padding: 7px 19px;
  font-size: 1rem;
  font-family: "Montserrat", Arial, sans-serif;
  margin-right: 5px;
}
.project-teasers,
.publication-teasers,
.event-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 16px;
}
.project-item,
.publication-item,
.event-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px 20px 18px;
  margin-bottom: 20px;
  flex: 1 1 270px;
  max-width: 340px;
  min-width: 210px;
  transition: box-shadow 0.18s, transform 0.14s;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.project-item:hover,
.publication-item:hover,
.event-item:hover,
.project-item:focus-within,
.publication-item:focus-within,
.event-item:focus-within {
  box-shadow: 0 8px 26px rgba(40, 62, 74, 0.13);
  transform: translateY(-2px);
}
@media (max-width: 700px) {
  .project-teasers,
  .publication-teasers,
  .event-overview {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .project-item,
  .publication-item,
  .event-item {
    max-width: 100%;
    min-width: 0;
  }
}

/* =============
  LEGAL PAGES
============ */
.legal {
  background: var(--pastel-yellow);
  min-height: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.legal h1,
.legal h2,
.legal h3 {
  color: var(--primary);
}

/* ==========
  VALUES
========== */
.values ul,
.highlights ul,
.about ul,
.event-highlights ul,
.opening-hours ul,
.thank-you ul {
  list-style-type: disc;
  padding-left: 20px;
}
.values li,
.highlights li,
.about li,
.event-highlights li,
.opening-hours li,
.thank-you li {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.07rem;
  line-height: 1.7;
}
.values {
  background: var(--pastel-lilac);
}
.about-details {
  background: var(--pastel-sky);
}
.contact-info {
  background: var(--pastel-mint);
}
.opening-hours {
  background: var(--pastel-pink);
}

/* =================
   FOOTER STYLES
================= */
footer {
  width: 100%;
  background: var(--primary);
  margin-top: 64px;
  padding: 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 24px 24px 24px;
  justify-content: space-between;
}
.footer-logo img {
  width: 46px;
  height: 46px;
  display: block;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-nav a {
  color: var(--accent);
  font-size: 1rem;
  font-family: "Montserrat", Arial, sans-serif;
  opacity: 0.88;
  transition: opacity 0.16s, color 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--secondary-light);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--accent);
  font-size: 1rem;
  font-family: "Roboto", Arial, sans-serif;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 17px;
  height: 17px;
  filter: brightness(3.9) grayscale(1) drop-shadow(0 0 3px #283e4a34);
  opacity: 0.91;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    text-align: left;
  }
  .footer-logo {
    margin-bottom: 7px;
  }
}

/* ===========================
   MISC CONTENT & UTILITIES
========================== */
.contact-details,
.contact-info .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-details img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.contact-details a {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: underline dotted;
  transition: color 0.14s;
}
.contact-details a:hover,
.contact-details a:focus {
  color: var(--primary);
  text-decoration: underline solid;
}

/* ===========================
   THANK YOU PAGE
=========================== */
.thank-you {
  background: var(--pastel-yellow);
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding-bottom: var(--space-xl);
}
.thank-you h1 {
  font-size: 2.3rem;
  color: var(--primary);
  margin-bottom: var(--space-m);
}
.thank-you h2 {
  margin-top: var(--space-l);
}
.thank-you ul {
  margin-bottom: var(--space-l);
}
.thank-you a.btn {
  margin-top: var(--space-m);
}

/* ===========================
   COOKIE CONSENT BANNER
=========================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 910;
  background: var(--white);
  box-shadow: 0 -3px 23px rgba(40, 62, 74, 0.08);
  border-radius: 18px 18px 0 0;
  padding: 22px 16px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  max-width: 530px;
  left: 50%;
  transform: translateX(-50%) translateY(130%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.cookie-banner.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner-text {
  font-size: 1.03rem;
  color: var(--primary);
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: 100%;
}
.cookie-btn {
  padding: 7px 23px;
  border-radius: 19px;
  font-size: 1.06rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: var(--pastel-mint);
  color: var(--primary);
  transition: var(--transition);
}
.cookie-btn.accept {
  background: var(--secondary);
  color: var(--white);
}
.cookie-btn.reject {
  background: var(--pastel-pink);
  color: var(--primary);
}
.cookie-btn.settings {
  background: var(--pastel-lilac);
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--secondary-light);
  color: var(--primary);
}

@media (max-width: 600px) {
  .cookie-banner {
    max-width: 98vw;
    padding: 17px 7px 14px 9px;
  }
  .cookie-banner-buttons {
    flex-wrap: wrap;
    gap: 9px;
  }
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1020;
  background: rgba(133, 197, 193, 0.23);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.17s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--accent2);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(40, 62, 74, 0.17);
  padding: 36px 28px 18px 28px;
  min-width: 330px;
  max-width: 98vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
  transform: translateY(70px) scale(0.94);
  opacity: 0;
  transition: var(--transition);
}
.cookie-modal-overlay.active .cookie-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.cookie-modal-title {
  font-size: 1.32rem;
  font-family: "Montserrat", Arial, sans-serif;
  margin-bottom: 11px;
  color: var(--primary);
  font-weight: 600;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 1.25em;
  height: 1.25em;
}
.cookie-category .label {
  font-size: 1.07rem;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--primary);
}
.cookie-category .essential[disabled] {
  color: #adb6b5;
  opacity: 0.67;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 19px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary-light);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.16s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--pastel-mint);
}

@media (max-width: 450px) {
  .cookie-modal {
    padding: 16px 7px 7px 7px;
    min-width: 0;
  }
  .cookie-modal-title {
    font-size: 1.05rem;
  }
}

/* ===========================
   SHADOWS & EFFECTS
=========================== */
.card,
.testimonial-card,
.feature-item,
.team-member,
.project-item,
.publication-item,
.event-item {
  box-shadow: var(--shadow);
  transition: box-shadow 0.19s, transform 0.21s;
}
.card:hover,
.testimonial-card:hover,
.feature-item:hover,
.team-member:hover,
.project-item:hover,
.publication-item:hover,
.event-item:hover {
  box-shadow: 0 8px 24px rgba(134, 197, 193, 0.16);
  transform: translateY(-2px) scale(1.012);
}

/* ============
   RESPONSIVE
============ */
@media (max-width: 600px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.27rem;
  }
  .container {
    padding: 0 4px;
  }
  .section {
    padding: 15px 2px;
    margin-bottom: 18px;
  }
}

/* =============
   ANIMATIONS
============= */
.btn,
.btn-primary,
.btn-filter,
.btn-download,
.feature-item,
.card,
.card *,
.testimonial-card,
.team-member,
.cookie-banner,
.cookie-modal {
  transition: var(--transition);
}

/* Fade in page */
body {
  opacity: 0;
  animation: fadeInBody 0.8s 0.13s forwards;
}
@keyframes fadeInBody {
  to {
    opacity: 1;
  }
}

/* Micro interactions on hover for buttons */
.btn:active,
.btn-primary:active,
.btn-filter:active,
.btn-download:active,
.card:active,
.feature-item:active,
.testimonial-card:active,
.team-member:active {
  transform: scale(0.98);
}

/* ==========
  UTILITIES
========== */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

/* ===============================================
   ENSURE NO GRID or COLUMNS: ONLY FLEX LAYOUTS
=============================================== */
/* All container layouts above use display: flex ONLY! */
