/* -----------------------------------------
   CSS RESET & BASELINE NORMALIZATION
----------------------------------------- */
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%;
  scroll-behavior: smooth;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F9F9FB;
  color: #18213A;
  line-height: 1.62;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.03em;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: #15305B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4B942;
  outline: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
ul, ol {
  padding-left: 1.2em;
}

/* ----------------------
   COLOR VARIABLES
---------------------- */
:root {
  --primary: #15305B;
  --primary-rgb: 21, 48, 91;
  --secondary: #E9E7F2;
  --accent: #F4B942;
  --white: #fff;
  --soft-lavender: #F5F4FF;
  --pastel-blue: #E6F0FB;
  --pastel-yellow: #FFF8E6;
  --pastel-pink: #FFEDF8;
  --pastel-green: #EEF8F1;
  --text-main: #18213A;
  --text-muted: #7B7E90;
  --shadow-card: 0 4px 20px rgba(153, 181, 255, 0.10);
}

/* ------------------------
   TYPOGRAPHY
------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.19rem;
  margin-bottom: 24px;
  font-weight: 400;
  opacity: 0.87;
}
p {
  margin-bottom: 20px;
  color: var(--text-main);
  font-size: 1rem;
}
strong {
  font-weight: 700;
  color: var(--primary);
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-style: italic;
  color: var(--primary);
  padding-left: 16px;
  border-left: 4px solid var(--accent);
  margin-bottom: 12px;
  background: transparent;
}
cite {
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  color: var(--text-muted);
}

/* ------------------------
   CONTAINER & LAYOUT
------------------------ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
main {
  flex: 1 1 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

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

/* Spacing for repeated cards or features */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.28s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(153,181,255,0.18);
}
.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;
  background: var(--pastel-blue);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(153, 181, 255, 0.14);
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -----------------------------------
   HEADER, NAVIGATION, LOGO
----------------------------------- */
header {
  background: var(--soft-lavender);
  box-shadow: 0 2px 8px rgba(112, 115, 180, 0.05);
  position: relative;
  width: 100%;
  z-index: 1030;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 18px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 16px;
  padding: 7px 0;
}
.logo img {
  max-height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--white);
}
.cta-btn {
  border-radius: 28px;
  padding: 11px 32px;
  background: linear-gradient(90deg, #FEF6E8 0%, #F4B942 60%, #F4B942 100%);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  text-align: center;
  margin-left: 20px;
  box-shadow: 0 2px 8px rgba(244, 185, 66, 0.09);
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.22s;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 6px 24px rgba(244,185,66,0.13);
}
.cta-accent {
  background: linear-gradient(90deg, #FFE9D7 0%, var(--accent) 75%);
  color: var(--primary);
}
/* Hide desktop nav on mobile */
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 12px;
  }
}
/* Mobile burger menu styles */
.mobile-menu-toggle {
  background: var(--pastel-pink);
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  padding: 5px 18px;
  border-radius: 50%;
  margin-left: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1202;
  box-shadow: 0 1px 4px rgba(244,185,66,0.11);
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--white);
}
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(249,249,251,0.93);
  box-shadow: 0 8px 24px rgba(21,48,91,0.12);
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.7,.2,.3,1.0);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.4rem;
  background: transparent;
  color: var(--primary);
  border: none;
  align-self: flex-end;
  margin: 26px 22px 12px 0;
  cursor: pointer;
  z-index: 1203;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  gap: 16px;
  width: 85vw;
  max-width: 350px;
  padding-left: 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: var(--primary);
  padding: 7px 0 7px 5px;
  border-radius: 7px;
  margin-bottom: 7px;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--white);
}
/* Show nav & hamburger logic */
@media (max-width: 991px) {
  .mobile-menu {
    display: flex;
  }
  .cta-btn {
    margin-left: 0;
  }
}

/* ----------------------------------
   HERO SECTIONS
---------------------------------- */
.hero {
  background: linear-gradient(150deg, var(--soft-lavender) 55%, var(--pastel-yellow) 100%);
  padding: 56px 0 44px 0;
  margin-bottom: 46px;
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 0;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 14px;
  color: var(--primary);
}
.hero .subheadline {
  color: var(--primary);
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 28px 0;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* ----------------------------------
   SECTION PATTERNS (MANDATORY)
---------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.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;
}

/* -----------------------------------
   FEATURES/ADVANTAGES
----------------------------------- */
.features, .feature-grid, .feature-list {
  width: 100%;
  margin-bottom: 30px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 22px;
}
.feature-grid > div {
  flex: 1 1 230px;
  min-width: 200px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 25px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 36px rgba(153,181,255,0.18);
  transform: translateY(-3px) scale(1.025);
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}
.features ul, .feature-grid ul {
  margin: 0;
  padding-left: 16px;
  color: var(--text-main);
}
.features li, .feature-grid li {
  font-size: 1rem;
  margin-bottom: 9px;
}

/* -----------------------------------
   SERVICES
----------------------------------- */
.services ul {
  margin: 0 0 18px 0;
  padding-left: 20px;
  color: var(--text-main);
}
.services li {
  margin-bottom: 12px;
  line-height: 1.75;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
}
.services img {
  width: 24px;
  height: 24px;
}

/* -----------------------------------
   JOB LISTINGS
----------------------------------- */
.job_listings {
  background: var(--soft-lavender);
}
.job_listings .content-wrapper {
  gap: 28px;
}
.job-filter {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.job-filter label {
  font-weight: 500;
  margin-right: 5px;
}
.job-filter select {
  background: var(--pastel-pink);
  border-radius: 7px;
  border: 1px solid var(--secondary);
  padding: 6px 17px;
  font-size: 1rem;
  margin-top: 2px;
  color: var(--primary);
}
.job-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 22px 22px 16px 22px;
  margin-bottom: 20px;
  transition: box-shadow .23s, transform .19s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.job-card:hover {
  box-shadow: 0 6px 24px rgba(153,181,255,0.13);
  transform: translateY(-2px) scale(1.01);
}
.job-card h3 {
  font-size: 1.2rem;
  margin-bottom: 7px;
}
.job-card ul {
  font-size: 0.98rem;
  color: var(--text-main);
  margin-bottom: 12px;
  margin-left: 1em;
}

/* -----------------------------------
   TESTIMONIALS
----------------------------------- */
.testimonials h2 {
  margin-bottom: 18px;
}
.testimonial-card {
  background: var(--pastel-blue);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(153, 181, 255, 0.14);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: #18213A;
}
.testimonial-card blockquote {
  border-left: 4px solid var(--accent);
  color: var(--primary);
}
.testimonial-card cite {
  color: var(--text-muted);
  margin-left: 8px;
  font-size: 0.98rem;
}

/* -----------------------------------
   CTA SECTIONS
----------------------------------- */
.cta {
  background: var(--pastel-yellow);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 44px;
}
.cta.bg-primary {
  background: var(--primary);
}
.cta.bg-primary h2, .cta.bg-primary p {
  color: var(--white);
}
.cta .cta-btn {
  margin-top: 18px;
}

/* -----------------------------------
   ABOUT & POLICY SECTIONS
----------------------------------- */
.about, .team, .unique, .policy, .steps-employers, .steps-candidates, .contact-details, .contact-form, .thank-you {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 36px;
  padding: 32px 20px;
}
.policy ul {
  margin-bottom: 16px;
  margin-left: 12px;
}
.policy li {
  margin-bottom: 9px;
}

/* -----------------------------------
   FOOTER
----------------------------------- */
footer {
  background: var(--secondary);
  padding: 32px 0;
  margin-top: 20px;
  font-size: 0.97rem;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -1px 18px rgba(153, 181, 255, 0.07);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  transition: color .16s;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--text-main);
}
.footer-contact img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 7px;
  opacity: 0.8;
}
.footer-logo {
  margin-top: 9px;
}
.footer-logo img {
  max-width: 100px;
  opacity: 0.88;
  filter: drop-shadow(0 1px 4px rgba(244,185,66,0.11));
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-logo {
    margin-top: 0;
  }
}

/* -----------------------------------
   FORMS & CONTACT DETAILS
----------------------------------- */
.contact-details ul {
  margin-left: 1em;
  margin-bottom: 0;
}
.contact-details li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-info {
  color: var(--primary);
  background: var(--pastel-yellow);
  padding: 14px;
  border-radius: 9px;
  font-size: 1.01rem;
  margin-bottom: 12px;
}

/* -----------------------------------
   STEPS/PROCESSES
----------------------------------- */
.steps-employers, .steps-candidates, .howto, .process {
  background: var(--soft-lavender);
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  margin-bottom: 34px;
  padding: 28px 20px;
}
ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
ol li {
  margin-bottom: 9px;
  font-size: 1rem;
}
/* Distinctive step numbers (optional) */
.steps-employers ol, .steps-candidates ol {
  counter-reset: my-counter;
  list-style: none;
  padding-left: 0;
}
.steps-employers li, .steps-candidates li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
}
.steps-employers li:before, .steps-candidates li:before {
  counter-increment: my-counter;
  content: counter(my-counter) '.';
  position: absolute;
  left: 0;
  top: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.11rem;
}

/* -----------------------------------
   THANK YOU / SPECIAL MESSAGES
----------------------------------- */
.thank-you .thank-you-message {
  background: var(--pastel-green);
  color: var(--primary);
  border-radius: 9px;
  padding: 16px 12px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 500;
}

/* -------------------------------------
   COOKIE CONSENT BANNER & MODAL
------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1300;
  background: var(--pastel-blue);
  color: var(--primary);
  box-shadow: 0 -2px 14px rgba(21,48,91,0.10);
  padding: 22px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: transform .34s cubic-bezier(.6,.37,.48,1.09), opacity .2s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 7px;
}
.cookie-btn {
  border-radius: 32px;
  padding: 9px 30px;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  font-weight: 600;
  min-width: 130px;
  box-shadow: 0 2px 8px rgba(244, 185, 66, 0.11);
  transition: background 0.2s, color 0.2s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: var(--white);
}
.cookie-btn.cookie-reject {
  background: var(--pastel-pink);
  color: var(--primary);
  border: 1px solid var(--accent);
}
.cookie-btn.cookie-reject:hover {
  background: var(--primary);
  color: var(--accent);
}
.cookie-btn.cookie-settings {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--accent);
}
.cookie-btn.cookie-settings:hover {
  background: var(--pastel-yellow);
  color: var(--primary);
}

/* Cookie Preferences Modal */
#cookie-modal {
  display: none;
  position: fixed;
  z-index: 1400;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(21,48,91,0.15);
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
#cookie-modal.visible {
  display: flex;
  opacity: 1;
}
.cookie-modal-content {
  background: var(--white);
  border-radius: 21px;
  max-width: 420px;
  width: 92vw;
  padding: 28px 23px 24px 23px;
  box-shadow: 0 8px 32px rgba(21,48,91,0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInTop .44s;
}
@keyframes fadeInTop {
  from { opacity: 0; transform: translateY(-90px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal-content h3 {
  margin-bottom: 10px;
  color: var(--primary);
}
.cookie-modal-content ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--text-main);
}
.cookie-modal-content li {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 11px;
}
/* Custom switch */
.cookie-switch {
  position: relative;
  width: 42px;
  height: 22px;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--pastel-pink);
  transition: background 0.2s;
  border-radius: 18px;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--accent);
}
.cookie-slider::before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 3px; top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 1.5px 3px rgba(21,48,91,0.08);
}
.cookie-switch input:checked + .cookie-slider::before {
  transform: translateX(20px);
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 15px;
  background: none;
  border: none;
  font-size: 1.73rem;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1007;
}
.cookie-modal-close:hover {
  color: var(--accent);
}

/* -----------------------------------
   RESPONSIVE DESIGN (Mobile first)
----------------------------------- */
@media (max-width: 991px) {
  .container {
    max-width: 95vw;
    padding: 0 8px;
  }
  .main-nav {
    display: none;
  }
  .feature-grid {
    gap: 14px;
  }
  .section, .about, .team, .policy, .unique, .services, .job_listings, .contact-details, .contact-form, .thank-you, .steps-employers, .steps-candidates {
    padding: 22px 7px;
    border-radius: 10px;
  }
}
@media (max-width: 768px) {
  html { font-size: 95%; }
  body { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.07rem; }

  .hero, .cta {
    padding: 24px 0 15px 0;
  }
  .footer-logo img {
    max-width: 70px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 15px;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 520px) {
  .hero, .cta {
    padding: 14px 0 10px 0;
  }
  .section, .about, .team, .policy, .unique, .services, .job_listings, .contact-details, .contact-form, .thank-you, .steps-employers, .steps-candidates {
    padding: 11px 1px;
  }
  .container {
    padding: 0 3px;
  }
  .cta-btn, .cookie-btn {
    padding: 8px 14px;
    font-size: 0.96rem;
    min-width: 100px;
  }
}

/* -----------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
----------------------------------- */
.cta-btn, .cookie-btn {
  transition: background 0.23s, color 0.23s, transform 0.17s, box-shadow 0.18s;
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.97);
  box-shadow: none;
}
.card, .job-card, .testimonial-card, .feature-grid > div {
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, .job-card:hover, .testimonial-card:hover, .feature-grid > div:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 8px 24px rgba(21, 48, 91, 0.10);
}

/* -----------------------------------
   ACCESSIBILITY/FOCUS
----------------------------------- */
:focus {
  outline: 2.5px solid var(--accent);
  outline-offset: 2px;
}

/* -----------------------------------
   PASTEL ELEMENT EFFECTS
----------------------------------- */
.section, .about, .team, .unique, .policy, .services, .thank-you, .contact-details, .contact-form, .steps-employers, .steps-candidates {
  box-shadow: 0 1.5px 8px rgba(174, 200, 255, 0.08);
}

/* Pastel badges - for top-right icons if needed */
.badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--pastel-pink);
  color: var(--primary);
  border-radius: 9px;
  padding: 3px 10px;
  font-size: 0.89rem;
  box-shadow: 0 1px 4px rgba(244,185,66,0.04);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  z-index: 20;
}

/* -----------------------
   Performance tweaks
----------------------- */
img[data-src], source[data-srcset] {
  opacity: 0;
  transition: opacity 0.4s;
}
img[data-loaded='true'], source[data-loaded='true'] {
  opacity: 1;
}

/* -----------------------
   END
----------------------- */
