body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f7f9fc; /* was #0e1625 */
    color: #1e293b; /* was white */
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f7f9fc; /* was #0e1625 */
    color: #1e293b; /* was white */
}

/* HERO SECTION (Section 1) */
.employer_section_1 {
	grid-column: 1/-1;
	grid-row: 6/8; 
    display: grid;
	grid-template-rows: 50px auto 20px auto 30px auto 20px auto 50px auto 2px auto 20px;
    grid-template-columns: grid-template-columns: 1fr minmax(0, 1200px) 1fr;;
    background: linear-gradient(to right, #ffffff, #e2e8f0); /* light gradient */
    color: #1e293b; /* light text */
}

/* Background image and animation for section 1 */
.employer_section_1 {
  position: relative;
  background: url('/globalpic/light-background3.png') no-repeat center right; /* light bg */
  background-size: cover;
  background-color: #f9fafb;
  color: #0f172a; /* light body text */
  animation: background-pan 40s linear infinite alternate;
  overflow: hidden;
}

/* Optional background pan animation */
@keyframes background-pan {
  0% {
    background-position: center center;
  }
  100% {
    background-position: right center;
  }
}

/* Gradient overlays */
.employer_section_1::before,
.employer_section_1::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: none !important; /* light removes overlays */
}

.employer_section_1::before {
  background: linear-gradient(to right, #0e1625 30%, rgba(14, 22, 37, 0.3) 100%);
}

.employer_section_1::after {
  background: linear-gradient(to top, #0e1625 20%, transparent);
}

/* Ensure content is above background layers */
.employer_section_1 .container {
  position: relative;
  z-index: 1;
}

.employer_section1_hero {
    font-size: 3.5em;
    line-height: 1.2;
    font-weight: bold;
    max-width: 700px;
	text-align: left !important; 
	color: #1e293b !important; /* light */
	 font-family: Inter, sans-serif !important;
}

.employer_section1_hero span {
    color: #6366f1 !important; /* light accent */
    display: block;
    margin-top: 10px;
	 font-family: Inter, sans-serif !important;
}

.employer_section1_manchet {
    margin-top: 30px;
    font-size: 1.25em;
    max-width: 700px;
    color: black !important; /* light */
	 font-family: Inter, sans-serif !important;
}

.cta-wrapper {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
	 font-family: Inter, sans-serif !important;
}

.cta-button {
    padding: 14px 28px;
    background-color: #6366f1 !important; /* light */
    color: white !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1em;
	 font-family: Inter, sans-serif !important;
}

/* Base CTA button is already styled by .cta-button */

/* New "Search for Talent" variation */
/* Base Search Talent Button */
.search-talent-btn {
  background-color: #ffffff;
  color: #0b6cff;
  border: 2px solid #0b6cff;
  margin-left: 10px;
    padding: 14px 28px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1em; 
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  	 font-family: Inter, sans-serif !important;
}

.search-talent-btn:hover {
  background-color: #6366f1;
  color: #ffffff;
}

/* Light Version of Search Talent Button */
.search-talent-btn-light {
  background-color: #0b6cff;
  color: #ffffff;
  border: 2px solid #0b6cff;
  margin-left: 10px;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.search-talent-btn-light:hover {
  background-color: #0047b3; /* slightly darker blue */
  border-color: #0047b3;
  color: #ffffff;
}


.job-seeker-link {
  color: black !important;
  text-decoration: underline;
  text-decoration-color: #0b6cff;          /* brand accent */
  text-decoration-thickness: 3px;          /* thicker underline */
  text-underline-offset: 4px;              /* space from text */
  font-weight: 600;                         /* subtle emphasis */
  font-size: 1em;
  font-family: Inter, sans-serif !important;
}
.job-seeker-link:hover {
  text-decoration-color: #0047b3;
}
.job-seeker-link:focus-visible {
  outline: 2px solid #0b6cff;
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
	grid-column: 1/-1; 
	grid-row: 2; 
	width: 100%; 
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
	 font-family: Inter, sans-serif !important;
}



/* SECTION 2: Cards for job services */
.employer_section_2 {
	grid-column: 1/-1;
	grid-row: 10/11; 
  background-color: #f7f9fc; /* light */
  padding: 80px 20px;
  color: #1e293b; /* light */
 	 font-family: Inter, sans-serif !important;
}

.container_section2 {
  width: 100%;
  margin: 0 auto;
 	 font-family: Inter, sans-serif !important;
}

.employer_section2_title {
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1e293b;  /* light */
 	 font-family: Inter, sans-serif !important;
}

.employer_section2_manchet {
  text-align: center;
  font-size: 1.2em;
  color: #64748b; /* light */
  margin-bottom: 60px;
 	 font-family: Inter, sans-serif !important;
}

.card-grid {

  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin: 0 auto; 
  width: 100%; 
 	 font-family: Inter, sans-serif !important;
}

.card {
  background-color: #ffffff; /* light */
  border-radius: 16px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06); /* light */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
 	 font-family: Inter, sans-serif !important;
	 text-align: left; 
}

.icon-wrapper {
  background-color: #e2e8f0; /* light */
  color: #6366f1;           /* light */
  font-size: 1.5em;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
 	 font-family: Inter, sans-serif !important;
}

.card h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #1e293b; /* light */
 	 font-family: Inter, sans-serif !important;
}

.card p {
  color: #334155; /* light */
  margin-bottom: 20px;
 	 font-family: Inter, sans-serif !important;
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
 	 font-family: Inter, sans-serif !important;
}

.card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
  color: #475569; /* light */
 	 font-family: Inter, sans-serif !important;
}

.card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #10b981; /* light */
  font-size: 1em;
  line-height: 1.2;
 	 font-family: Inter, sans-serif !important;
}

.card-button {
  display: inline-block;      /* Prevent full-width stretch */
  padding: 15px 24px;
  background-color: #6366f1; /* light */
  color: white;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 20px auto 0 auto;   /* Center the button horizontally */
  width: 80%; 
 	 font-family: Inter, sans-serif !important;
}


.card-button:hover {
  background-color: #3a4270;
 	 font-family: Inter, sans-serif !important;
}


/* SECTION 3: Strategic Advantage */
.employer_section_3 {
  background-color: white; /* light */
  padding: 80px 20px;
  color: #1e293b; /* light */
  grid-column: 1/-1; 
  grid-row: 12/13; 
 	 font-family: Inter, sans-serif !important;
}

.container_section3 {
  max-width: 1200px;
  margin: 0 auto;
 	 font-family: Inter, sans-serif !important;
}

.employer_section3_title {
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1e293b;  /* light */
 	 font-family: Inter, sans-serif !important;
}

.employer_section3_manchet {
  text-align: center;
  font-size: 1.2em;
  color: #64748b; /* light */
  margin-bottom: 60px;
 	 font-family: Inter, sans-serif !important;
}

.advantage-grid {
  display: flex;

  gap: 8px;
  justify-content: center;
 	 font-family: Inter, sans-serif !important;
}

.advantage {
  background-color: #ffffff; /* light */
  border-radius: 16px;
  padding: 40px 10px;
  text-align: center;
  flex: 0 1 22%;
  min-width: 260px;
  max-width: 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06); /* light */
 	 font-family: Inter, sans-serif !important;
}

.icon-circle {
  background-color: #e2e8f0; /* light */
  color: #6366f1;            /* light */
  font-size: 1.8em;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
 	 font-family: Inter, sans-serif !important;
}

.advantage h4 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1e293b; /* light */
 	 font-family: Inter, sans-serif !important;
}

.advantage p {
  color: #334155; /* light */
  font-size: 0.95em;
  line-height: 1.5;
 	 font-family: Inter, sans-serif !important;
}





.employer_section_4 {
	grid-column: 1/-1;
	grid-row: 14/15;
  background-color: #f7f9fc; /* light */
  padding: 80px 20px;
  color: #1e293b; /* light */
 	 font-family: Inter, sans-serif !important;
}



.testimonial_title {
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1e293b; /* light */
 	 font-family: Inter, sans-serif !important;
}

.testimonial_subtitle {
  text-align: center;
  font-size: 1.2em;
  color: #64748b; /* light */
  margin-bottom: 60px;
 	 font-family: Inter, sans-serif !important;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
 	 font-family: Inter, sans-serif !important;
}

.testimonial-card {
  background-color: #ffffff; /* light */
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 520px;
  flex: 1 1 45%;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06); /* light */
 	 font-family: Inter, sans-serif !important;
}

.quote-mark {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4em;
  color: rgba(255,255,255,0.05);
  z-index: 0;
  pointer-events: none;
  color: white; 
 	 font-family: Inter, sans-serif !important;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05em;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  color: #334155; /* light */
 	 font-family: Inter, sans-serif !important;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  margin-top: 30px;
 	 font-family: Inter, sans-serif !important;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
 	 font-family: Inter, sans-serif !important;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
 	 font-family: Inter, sans-serif !important;
}

.testimonial-name {
  font-weight: bold;
  color: #1e293b; /* light */
 	 font-family: Inter, sans-serif !important;
}

.testimonial-role {
  color: #334155; /* light */
  font-size: 0.9em;
 	 font-family: Inter, sans-serif !important;
}



.employer_section_5 {
	grid-column: 1/-1;
	grid-row: 16/17;
  background-color: white; /* light */
  padding: 100px 20px 80px;
  text-align: center;
  color: #1e293b; /* light */
 	 font-family: Inter, sans-serif !important;
}

.cta_title {
  font-size: 2.4em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1e293b; /* light */
 	 font-family: Inter, sans-serif !important;
}

.cta_subtitle {
  color: #b0b8d0;
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px;
 	 font-family: Inter, sans-serif !important;
}

.cta_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
 	 font-family: Inter, sans-serif !important;
}

.cta_primary {
  background-color: #6366f1; /* light */
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
 	 font-family: Inter, sans-serif !important;
}

.cta_primary:hover {
  background-color: #7d74ff;
 	 font-family: Inter, sans-serif !important;
}

.cta_secondary {
  color: #64748b; /* light */
  font-size: 1em;
  text-decoration: none;
  transition: color 0.3s ease;
 	 font-family: Inter, sans-serif !important;
}

.cta_secondary:hover {
  color: #1e293b; /* light */
 	 font-family: Inter, sans-serif !important;
}


/* Theme Toggle Button */
.theme-toggle-wrapper {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 9999;
}

.theme-toggle-btn {
  background-color: #e2e8f0;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.95em;
  color: #1e293b;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 100px; 
}

body.light-mode .theme-toggle-btn {
  background-color: #1e293b;
  color: #fff;
}


/* Light Mode Overrides */
body.light-mode {
  background-color: #f7f9fc;
  color: #1e293b;
}

body.light-mode .employer_section_1,
body.light-mode .employer_section_2,
body.light-mode .employer_section_4
{
  background-color: #f7f9fc;
  color: #1e293b;
}

body.light-mode .employer_section1_hero span,
body.light-mode .employer_section2_title,
body.light-mode .employer_section3_title,
body.light-mode .testimonial_title,
body.light-mode .cta_title {
  color: #1e293b;
}

body.light-mode .employer_section2_manchet,
body.light-mode .employer_section3_manchet,
body.light-mode .testimonial_subtitle,
body.light-mode .cta_subtitle {
  color: #64748b;
}

body.light-mode .card,
body.light-mode .advantage,
body.light-mode .testimonial-card {
  background-color: #ffffff;
  color: #1e293b;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

body.light-mode .icon-wrapper,
body.light-mode .icon-circle {
  background-color: #e2e8f0;
  color: #6366f1;
}

body.light-mode .card h3,
body.light-mode .advantage h4,
body.light-mode .testimonial-name {
  color: #1e293b;
}

body.light-mode .card p,
body.light-mode .advantage p,
body.light-mode .testimonial-text,
body.light-mode .testimonial-role {
  color: #334155;
}

body.light-mode .card-button,
body.light-mode .cta_primary {
  background-color: #6366f1;
  color: white;
}

body.light-mode .cta_secondary {
  color: #64748b;
}

body.light-mode .cta_secondary:hover {
  color: #1e293b;
}


/* Light Mode Overrides: Section 1 (Hero) */
body.light-mode .employer_section_1 {
  background: linear-gradient(to right, #ffffff, #e2e8f0); /* Light gradient */
  color: #1e293b;
}

/* (old version of light section 1)
body.light-mode .employer_section_1 {
  background-image: none !important;
  animation: none !important;
  background-color: #f9fafb; } Optional: fallback light bg color */


body.light-mode .employer_section_1 {
  background: 
    url('/globalpic/light-background3.png') no-repeat center right;
  background-size: cover;
  background-color: #f9fafb;
  color: #0f172a;
}



body.light-mode .employer_section_1::before,
body.light-mode .employer_section_1::after {
  display: none !important;
}





body.light-mode .employer_section1_hero {
  color: #1e293b !important;
}

body.light-mode .employer_section1_hero span {
  color: #6366f1 !important;
}

body.light-mode .employer_section1_manchet {
  color: black !important;
}

body.light-mode .cta-button {
  background-color: #6366f1 !important;
  color: white !important;
}

body.light-mode .job-seeker-link {
  color: black !important;
}

body.light-mode .job-seeker-link:hover {
  color: #1e293b !important;
}



body.light-mode .employer_section_3 {
  background-color: white; /* light gray-blue background */
  color: #1e293b; /* dark slate text */
}

body.light-mode .employer_section_5
{
  background-color: white; /* light gray-blue background */
  color: #1e293b; /* dark slate text */
}


body.light-mode .card ul li {
  color: #475569; /* Slate gray for readability in light mode */
}

body.light-mode .card ul li::before {
  color: #10b981; /* A medium green for checkmarks (matches #3adb78 but better for light) */
}



/* EOR info page */
.eor_section_1 {
	grid-column: 1/-1;
	grid-row: 6/8; 
    display: grid;
	grid-template-rows: 200px auto 20px auto 30px auto 20px auto 50px auto 2px auto 20px;
    grid-template-columns: 15px auto auto 200px 10px 200px auto auto 15px;
    background: linear-gradient(to right, #ffffff, #f1f5f9); /* light */
    color: #0f172a; /* light */
		 font-family: Inter, sans-serif !important;
}



.eor_back_link {
  position: relative;
  top: 50px;
  left: 100px;
  color: black;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: Inter, sans-serif !important;
  width: 500px; 
}


.eor_title {
	text-align: center; 
	grid-column: 1/-1; 
	grid-row: 2; 
  font-size: 3em;
  font-weight: 800;
  color: #0f172a; /* light */
  margin-top: 40px;
  margin-bottom: 20px;
	 font-family: Inter, sans-serif !important;
}

.eor_subtitle {
		grid-column: 1/-1; 
	grid-row: 4; 
  font-size: 1.25em;
  color: #0f172a; /* light */
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;

  text-align: center; 
  	 font-family: Inter, sans-serif !important;
}

.eor_section_2 {
	grid-column: 1/-1; 
	grid-row: 10/11; 
  background-color: #f9fafb; /* light */
  padding: 100px 20px;
  text-align: center;
  	 font-family: Inter, sans-serif !important;
}

.eor_section2_container {
  max-width: 1200px;
  margin: 0 auto;
  	 font-family: Inter, sans-serif !important;
}

.eor_section2_title {
  font-size: 2.5em;
  font-weight: 800;
  color: #0f172a; /* light */
  margin-bottom: 10px;
	 font-family: Inter, sans-serif !important;
  
}

.eor_section2_subtitle {
  font-size: 1.125em;
  color: #475569; /* light */
  margin-bottom: 60px;
	 font-family: Inter, sans-serif !important;
}

.eor_features_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  	 font-family: Inter, sans-serif !important;
}

.eor_feature_card {
  background-color: #ffffff; /* light */
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  transition: transform 0.2s ease;
  border: 1px solid #e2e8f0; /* light */
  	 font-family: Inter, sans-serif !important;
}

.eor_feature_card:hover {
  transform: translateY(-4px);
  	 font-family: Inter, sans-serif !important;
}

.eor_icon_circle {
  background-color: #e2e8f0; /* light */
  color: #4f46e5; /* light */
  font-size: 1.8em;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  	 font-family: Inter, sans-serif !important;
}

.eor_card_title {
  font-size: 1.2em;
  font-weight: 700;
  color: #0f172a; /* light */
  margin-bottom: 12px;
	 font-family: Inter, sans-serif !important;
}

.eor_card_desc {
  color: #475569; /* light */
  font-size: 1em;
  line-height: 1.6;
	 font-family: Inter, sans-serif !important;
}


.eor_section_3 {
  background-color: #f9fafb; /* light */
  padding: 100px 20px;
  color: #0f172a; /* light */
  grid-column: 1/-1;
  grid-row: 12/13;
  	 font-family: Inter, sans-serif !important;
}

.eor_section3_container {
  max-width: 1000px;
  margin: 0 auto;
  	 font-family: Inter, sans-serif !important;
}

.eor_section3_title {
  text-align: center;
  font-size: 2.5em;
  font-weight: 800;
  margin-bottom: 60px;
	 font-family: Inter, sans-serif !important;
  color: #0f172a; /* light */
}

.eor_steps_timeline {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  	 font-family: Inter, sans-serif !important;
}

.eor_step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  position: relative;
  	 font-family: Inter, sans-serif !important;
}

.eor_step_icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #e2e8f0; /* light */
  color: #4f46e5; /* light */
  font-size: 1.6em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  	 font-family: Inter, sans-serif !important;
}

.eor_step_text h3 {
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 10px;
	 font-family: Inter, sans-serif !important;
  color: #0f172a; /* light */ 
}

.eor_step_text h3 span {
  color: #0f172a; /* light */
  
}

.eor_step_text p {
  color: #475569; /* light */
  font-size: 1em;
  line-height: 1.6;
	 font-family: Inter, sans-serif !important;
  margin: 0;
}

/* Add vertical line between icons */
.eor_step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 30px;
  width: 2px;
  height: calc(100% - 60px);
  background-color: #cbd5e1; /* light */
  z-index: 1;
  	 font-family: Inter, sans-serif !important;
}



.eor_section_4 {
  background-color: #f9fafb; /* light */
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  grid-column: 1/-1;
  grid-row: 14/15;
  	 font-family: Inter, sans-serif !important;
}

.quote_form_wrapper {
  background-color: #ffffff; /* light */
  padding: 50px;
  border-radius: 12px;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); /* light */
  color: #0f172a; /* light */
  text-align: center;
  	 font-family: Inter, sans-serif !important;
}

.quote_form_title {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 10px;
	 font-family: Inter, sans-serif !important;
  color: #0f172a; /* light */ 
}

.quote_form_subtitle {
  font-size: 1.1em;
  color: #475569; /* light */
  margin-bottom: 40px;
	 font-family: Inter, sans-serif !important;
}

.quote_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  	 font-family: Inter, sans-serif !important;
}

.form_row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  	 font-family: Inter, sans-serif !important;
}

@media (min-width: 600px) {
  .form_row {
    flex-direction: row;
		 font-family: Inter, sans-serif !important;
  }
}

.quote_form input,
.quote_form textarea {
  background-color: #f1f5f9; /* light */
  color: #0f172a;           /* light */
  border: 1px solid #cbd5e1;/* light */
  border-radius: 8px;
  padding: 16px;
  font-size: 1em;
	 font-family: Inter, sans-serif !important;
  width: 100%;
}

.quote_form input::placeholder,
.quote_form textarea::placeholder {
  color: #64748b; /* light */
  	 font-family: Inter, sans-serif !important;
}

.quote_form textarea {
  resize: vertical;
  min-height: 100px;
  width: 95%;
  	 font-family: Inter, sans-serif !important;
}

.quote_form button {
  background-color: #4f46e5; /* light */
  color: white;
  padding: 16px;
  font-size: 1em;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
	 font-family: Inter, sans-serif !important;
  transition: background-color 0.2s ease-in-out;
}

.quote_form button:hover {
  background-color: #4338ca; /* light */
}


/* Light mode overrides */
body.light-mode {
  background-color: #f9fafb;
  color: #0f172a;
}

/* Quote Section Light Mode */
body.light-mode .eor_section_4 {
  background-color: #f9fafb;
}

body.light-mode .quote_form_wrapper {
  background-color: #ffffff;
  color: #0f172a;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

body.light-mode .quote_form_title {
  color: #0f172a;
}

body.light-mode .quote_form_subtitle {
  color: #475569;
}

body.light-mode .quote_form input,
body.light-mode .quote_form textarea {
  background-color: #f1f5f9;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

body.light-mode .quote_form input::placeholder,
body.light-mode .quote_form textarea::placeholder {
  color: #64748b;
}

body.light-mode .quote_form button {
  background-color: #4f46e5;
  color: white;
}

body.light-mode .quote_form button:hover {
  background-color: #4338ca;
}


body.light-mode .eor_section_1 {
  background: linear-gradient(to right, #ffffff, #f1f5f9);
  color: #0f172a;
}

body.light-mode .eor_title,
body.light-mode .eor_subtitle {
  color: #0f172a;
}


body.light-mode .eor_section_2 {
  background-color: #f9fafb;
}

body.light-mode .eor_section2_title {
  color: #0f172a;
}

body.light-mode .eor_section2_subtitle {
  color: #475569;
}

body.light-mode .eor_feature_card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
}

body.light-mode .eor_icon_circle {
  background-color: #e2e8f0;
  color: #4f46e5;
}

body.light-mode .eor_card_title {
  color: #0f172a;
}

body.light-mode .eor_card_desc {
  color: #475569;
}


body.light-mode .eor_section_3 {
  background-color: #f9fafb;
  color: #0f172a;
}

body.light-mode .eor_section3_title {
  color: #0f172a;
}

body.light-mode .eor_step_icon {
  background-color: #e2e8f0;
  color: #4f46e5;
}

body.light-mode .eor_step_text h3,
body.light-mode .eor_step_text h3 span {
  color: #0f172a;
}




body.light-mode .eor_step_text p {
  color: #475569;
}

body.light-mode .eor_step:not(:last-child)::after {
  background-color: #cbd5e1;
}


html, body {
  max-width: 100vw;
  overflow-x: hidden;
}



/* Blog overview page */

/* ===== VietAssist Insights - Hero Section ===== */
:root {
  --va-bg: #0b1220;          /* deep navy background */
  --va-text: #e6ecff;        /* near-white text */
  --va-muted: #a6b0c3;       /* muted gray-blue */
  --va-muted-2: #8b94a7;     /* darker muted */
}

/* Main section container */
/* Main section container */
.blog_overview_section1 {
  position: relative;                 /* <-- make this the containing block */
  box-sizing: border-box;
  grid-column: 1 / -1;
  grid-row: 6 / 8;
  width: 100%;
  margin: 0 auto;
  background: var(--va-bg);
  color: var(--va-text);

  min-height: 52vh;
  display: grid;
  grid-template-rows: 50px auto 20px auto 20px auto 25px auto 25px auto 20px;
  grid-template-columns: 1fr;
  place-items: center;
  text-align: center;
  /* if you still don't see it, temporarily comment this out */
  overflow: clip;                      /* <-- safe now that it's positioned */
}

/* Back link */
.blog_overview_backlink {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 8px 10px;
  line-height: 1;
  transition: color .2s, background-color .2s, transform .2s;
  width: 100px; 
}
.blog_overview_backlink:hover {
  color: var(--va-text);
  background: rgba(124,140,251,.08);
  transform: translateX(-1px);
}


.blog_overview_backlink:focus-visible {
  outline: 2px solid #7c8cfb;
  outline-offset: 2px;
}

.va-back-icon {
  flex: 0 0 auto;
  
}

.va-back-text {
  display: inline-flex;  /* <-- put text on one line */
  gap: 4px;              /* space between "Go" and "Back" */
  font-size: 22px;
  letter-spacing: 0.2px;
}

.va-back-text span:first-child {
  color: var(--va-muted-2);
}

/* Title section */
.blog_overview_section1_title_part {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border: red 1px solid; 
}

/* Icon wrapper */
.va-hero-icon {
	grid-column: 1/-1; 
	grid-row: 2; 
	margin: 0 auto; 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: rgba(124, 140, 251, 0.06);
  box-shadow:
    0 10px 30px rgba(123, 53, 246, 0.18),
    inset 0 0 0 1px rgba(124, 140, 251, 0.18);
	display: none; 
}

/* Main title */
.employer_blog_overview_section1_title {
	grid-column: 1/-1; 
	grid-row: 4; 
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.06;
  font-weight: 800;
  margin: 6px 0 14px;
  color: var(--va-text);
}

/* Subtitle */
.employer_blog_overview_section1_manchet {
	grid-column: 1/-1; 
	grid-row: 6; 
  font-size: clamp(16px, 2.1vw, 22px);
  line-height: 1.6;
  margin: 0 auto;
  color: var(--va-muted);
  max-width: 900px;
}

/* Small screen adjustments */
@media (max-width: 520px) {
  .blog_overview_backlink {
    top: 14px;
    left: 12px;
    padding: 6px 8px;
  }
  .va-hero-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
  }
}


/* ===== Articles Grid Section ===== */
:root {
  --va-bg: #0b1220;
  --va-text: #e6ecff;
  --va-muted: #a6b0c3;
  --va-card: rgba(255,255,255,0.03);
  --va-card-border: rgba(255,255,255,0.06);
  --va-card-shadow: 0 8px 30px rgba(0,0,0,0.35);
  --va-accent-1: #7C8CFB;
  --va-accent-2: #7B35F6;
}

/* Section wrapper */
.blog_overview_section2 {
	grid-column: 1/-1; 
	grid-row: 10/11; 
  background-color: rgb(30 41 59 / 0.5);
  color: var(--va-text);
  padding: clamp(24px, 4vw, 40px) 20px clamp(40px, 6vw, 64px);
}

/* Grid */
.blog_cards {
  max-width: 1320px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

/* 3 columns on desktop, 2 on tablets, 1 on phones */
.blog_cards > .blog_card {
  grid-column: span 4; /* desktop: 12/3 = 4 */
}
@media (max-width: 1100px) {
  .blog_cards > .blog_card { grid-column: span 6; }
}
@media (max-width: 680px) {
  .blog_cards > .blog_card { grid-column: 1 / -1; }
}

/* Card (full clickable link) */
.blog_card {
  display: block;
  background: var(--va-card);
  border: 1px solid var(--va-card-border);
  border-radius: 18px;
  padding: clamp(18px, 2.4vw, 28px);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--va-card-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.blog_card:hover {
  transform: translateY(-2px);
  border-color: rgba(124,140,251,0.35);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}
.blog_card:focus-visible {
  outline: 2px solid var(--va-accent-1);
  outline-offset: 3px;
}

/* Category tag */
.blog_cat {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--va-accent-1), var(--va-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Title */
.blog_title {
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--va-text);
}

/* Excerpt */
.blog_excerpt {
  color: var(--va-muted);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.7;
  margin: 0 0 20px;
}

/* Meta (author + date, each on its own line like screenshot) */
.blog_meta {
  display: grid;
  gap: 4px;
  font-size: 15px;
}
.blog_author {
  font-weight: 700;
  color: var(--va-text);
}
.blog_date {
  color: var(--va-muted);
}

/* Utility: screen-reader only for the section title */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}


/* Space between article sections; cards reuse existing styles */
.blog_overview_section3 {
	grid-column: 1/-1; 
	grid-row: 12/13; 
  background-color: rgb(30 41 59 / 0.5);
  color: var(--va-text);
  padding: clamp(12px, 3vw, 28px) 20px clamp(40px, 6vw, 64px);
  /* optional subtle separation from the previous grid */
  margin-top: clamp(12px, 3vw, 28px);
}


.blog_overview_section4 {
	grid-column: 1/-1; 
	grid-row: 14/15; 
  background-color: rgb(30 41 59 / 0.5);
  color: var(--va-text);
  padding: clamp(12px, 3vw, 28px) 20px clamp(40px, 6vw, 64px);
  margin-top: clamp(12px, 3vw, 28px);
}


.blog_overview_section5 {
	grid-column: 1/-1; 
	grid-row: 16/17; 
  background-color: rgb(30 41 59 / 0.5);
  color: var(--va-text);
  padding: clamp(12px, 3vw, 28px) 20px clamp(40px, 6vw, 64px);
  margin-top: clamp(12px, 3vw, 28px);
}

.blog_overview_section6 {
	grid-column: 1/-1; 
	grid-row: 18/19; 
  background-color: rgb(30 41 59 / 0.5);
  color: var(--va-text);
  padding: clamp(12px, 3vw, 28px) 20px clamp(40px, 6vw, 64px);
  margin-top: clamp(12px, 3vw, 28px);
}


.blog_overview_section7 {
	grid-column: 1/-1; 
	grid-row: 20/21; 
  background-color: rgb(30 41 59 / 0.5);
  color: var(--va-text);
  padding: clamp(12px, 3vw, 28px) 20px clamp(40px, 6vw, 64px);
  margin-top: clamp(12px, 3vw, 28px);
}


.blog_overview_section8 {
	grid-column: 1/-1; 
	grid-row: 22/23; 
  background-color: rgb(30 41 59 / 0.5);
  color: var(--va-text);
  padding: clamp(12px, 3vw, 28px) 20px clamp(40px, 6vw, 64px);
  margin-top: clamp(12px, 3vw, 28px);
}


.blog_overview_section9 {
	grid-column: 1/-1; 
	grid-row: 24/25; 
  background-color: rgb(30 41 59 / 0.5);
  color: var(--va-text);
  padding: clamp(12px, 3vw, 28px) 20px clamp(40px, 6vw, 64px);
  margin-top: clamp(12px, 3vw, 28px);
}


/* ===== THEME TOKENS ===== */

/* Dark (default) -> now using LIGHT tokens as default */
body.theme-dark,
body:not(.theme-light) { /* fallback: now light if no class yet */
  --va-bg: #f0f4fa;               /* page background (light) */
  --va-text: #0b1220;             /* primary text (light) */
  --va-muted: #475569;            /* muted text (light) */
  --va-muted-2: #64748b;

  --va-accent-1: #5b7cfa;         /* light accent */
  --va-accent-2: #6f3ff2;

  --va-card: #ffffff;             /* light cards */
  --va-card-border: rgba(2,6,23,0.08);
  --va-card-shadow: 0 8px 24px rgba(2,6,23,0.06);

  --va-section-bg: #f0f4fa;       /* light section wrapper */
}

/* Real dark values (kept as-is on .theme-light if you switch back) */
body.theme-dark,
body:not(.theme-light) {
  /* intentionally overridden above with light tokens */
}

/* Light */
body.theme-light {
	/* very light slate/indigo tint */
  --va-text: #0b1220;            /* deep navy for text */
  --va-muted: #475569;           /* slate-600 */
  --va-muted-2: #64748b;         /* slate-500/600 */

  --va-accent-1: #5b7cfa;        /* slightly softer gradient in light */
  --va-accent-2: #6f3ff2;

  --va-card: #ffffff;            /* light cards are white */
  --va-card-border: rgba(2,6,23,0.08);  /* subtle border */
  --va-card-shadow: 0 8px 24px rgba(2,6,23,0.06);

  --va-section-bg: #f0f4fa;      /* light section wrapper background */
}

/* Light tokens – make page bg same as section bg */
body.theme-light {
  --va-bg: #f0f4fa;        /* was #f7f9fc */
  --va-section-bg: #f0f4fa;
}





/* ===== Theme toggle button ===== */
.theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--va-card-border);
  background: var(--va-card);
  color: var(--va-text);
  box-shadow: var(--va-card-shadow);
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}
.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(124,140,251,0.35);
}
.theme-toggle .icon-sun,
.theme-toggle .icon-moon { display: none; }

/* Show SUN in dark mode (because clicking would go to light) */
body.theme-dark .theme-toggle .icon-sun,
body:not(.theme-light) .theme-toggle .icon-sun { display: block; }

/* Show MOON in light mode (because clicking would go to dark) */
body.theme-light .theme-toggle .icon-moon { display: block; }

@media (max-width: 520px) {
  .theme-toggle { top: 14px; right: 12px; width: 36px; height: 36px; }
}


/* Use themed background for all overview sections except the hero */
[class^="blog_overview_section"]:not(.blog_overview_section1) {
  background-color: var(--va-section-bg);
}

/* The hero itself already uses var(--va-bg); nothing else to change. */

/* Light mode text */
body.theme-light .va-back-text {
  color: #64748B;
}

/* Hover effect */
.backlink:hover {
  border-color: var(--va-accent-1);
  background-color: rgba(124, 140, 251, 0.08);
  transform: translateY(-1px);
}

body.theme-light .blog_overview_section3,
body.theme-light .blog_overview_section4,
body.theme-light .blog_overview_section5,
body.theme-light .blog_overview_section6,
body.theme-light .blog_overview_section7,
body.theme-light .blog_overview_section8,
body.theme-light .blog_overview_section9 {
  background-color: #F0F4FA;
}


body.theme-light .blog_overview_section1 {
  background-color: white !important;
}



/* Remove top margins and use padding instead so the light bg fills the space */
.blog_overview_section3,
.blog_overview_section4,
.blog_overview_section5,
.blog_overview_section6,
.blog_overview_section7,
.blog_overview_section8,
.blog_overview_section9 {
  /* was: margin-top: clamp(12px, 3vw, 28px); */
  margin-top: 0;
  padding-top: calc(clamp(12px, 3vw, 28px) + 12px);
}

/* If you still want a soft separation line between sections (optional) */
.blog_overview_section3 + .blog_overview_section4,
.blog_overview_section4 + .blog_overview_section5,
.blog_overview_section5 + .blog_overview_section6,
.blog_overview_section6 + .blog_overview_section7,
.blog_overview_section7 + .blog_overview_section8,
.blog_overview_section8 + .blog_overview_section9 {

}
body.theme-dark .blog_overview_section3 + .blog_overview_section4,
body.theme-dark .blog_overview_section4 + .blog_overview_section5,
body.theme-dark .blog_overview_section5 + .blog_overview_section6,
body.theme-dark .blog_overview_section6 + .blog_overview_section7,
body.theme-dark .blog_overview_section7 + .blog_overview_section8,
body.theme-dark .blog_overview_section8 + .blog_overview_section9 {

}


.blog_post_section {
	grid-column: 1/-1; 
	grid-row: 6/8; 
    background: var(--va-bg);
    color: var(--va-text);
    padding: clamp(40px, 6vw, 64px) 20px;
}

.blog_post_container {
    max-width: 900px;
    margin: 0 auto;
}

.blog_post_backlink {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--va-accent-1);
    font-weight: 600;
    text-decoration: none;
}
.blog_post_backlink:hover {
    text-decoration: underline;
}

.blog_post_title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 10px;
	color: white; 
}

.blog_post_meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--va-muted);
    margin-bottom: 32px;
}

.blog_post_intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--va-muted);
    margin-bottom: 40px;
}

.blog_post_point {
    margin-bottom: 28px;
}
.blog_post_point h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--va-text);
}
.blog_post_point p {
    line-height: 1.7;
    color: #A6B0C3;
}

.blog_post_subheading {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--va-text);
}

.blog_post_cta {
    text-align: center;
    padding: 20px;
    border: 2px dashed var(--va-accent-1);
    border-radius:5px; 
}


.blog_post_list {
    padding-left: 20px;
    margin: 12px 0;
    list-style-type: disc;
    color: var(--va-muted);
}
.blog_post_list li {
    margin-bottom: 6px;
    line-height: 1.6;
}


.blog_post_table_wrapper {
    overflow-x: auto;
    margin: 20px 0;
}

.blog_post_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.blog_post_table th,
.blog_post_table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--va-border);
}

.blog_post_table th {
    background-color: var(--va-surface-raised);
    font-weight: 600;
    text-align: left;
}

.blog_post_table td.accent,
.blog_post_table th.accent {
    color: var(--va-accent);
    font-weight: bold;
}

.blog_post_point {
    margin-top: 28px;
}

.blog_post_highlight {
    margin-top: 32px;
    padding: 20px;
    background: var(--va-surface-raised);
    border-left: 4px solid var(--va-accent);
    border-radius: 6px;
}


/* Reuse your existing blog_post_* styles.
   These are NEW helpers for checklist styling. */

/* Checkmark list */
.blog_post_checklist {
  padding-left: 0;
  margin: 12px 0;
  list-style: none;
}
.blog_post_checklist li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  line-height: 1.6;
  color: var(--va-muted);
}
.blog_post_checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(2px);
  font-weight: 700;
  color: var(--va-accent-1);
}

/* Optional subtle spacing to match points */
.blog_post_point { margin-top: 28px; }


.blog_post_section {
  padding: clamp(16px, 3vw, 32px) 0;
}

.blog_post_container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog_post_backlink {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--accent-color, #0ea5e9);
  font-weight: 500;
  text-decoration: none;
}
.blog_post_backlink:hover {
  text-decoration: underline;
}

.blog_post_title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 8px;
}

.blog_post_meta {
  font-size: 14px;
  color: var(--muted-color, #6b7280);
  margin-bottom: 28px;
}

.blog_post_intro {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.blog_post_point {
  background-color: rgba(30, 41, 59, 0.05);
  padding: 20px;
  border-left: 4px solid var(--accent-color, #0ea5e9);
  border-radius: 6px;
  margin-top: 28px;
}

.blog_post_table_wrapper {
  overflow-x: auto;
  margin-top: 16px;
}
.blog_post_table {
  width: 100%;
  border-collapse: collapse;
}
.blog_post_table th, .blog_post_table td {
  padding: 12px;
  border-bottom: 1px solid #ccc;
}
.blog_post_table thead th {
  background-color: rgba(30, 41, 59, 0.08);
}
.blog_post_table .highlight {
  color: var(--accent-color, #0ea5e9);
  font-weight: 600;
}

.blog_post_list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 12px;
}
.blog_post_list li {
  margin-bottom: 8px;
}

.blog_post_cta {
  margin-top: 28px;
  padding: 20px;
  border: 2px dashed var(--accent-color, #0ea5e9);
  border-radius: 8px;
  text-align: center;
}
.blog_post_cta_link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-color, #0ea5e9);
  text-decoration: none;
}
.blog_post_cta_link:hover {
  text-decoration: underline;
}

/* Optional helper for ordered lists used in points */
.blog_post_ol {
  margin: 12px 0;
  padding-left: 1.25rem;
  color: var(--va-muted);
}
.blog_post_ol li { margin: 6px 0; line-height: 1.6; }



.eor_section_sent_info {
  background: #ffffff; /* light */
  color: #1a1f2c;      /* light */
  padding: 24px;       /* light */
  display: flex;
  justify-content: center;
  grid-column: 1/-1;
  grid-row: 6/8;
  	 font-family: Inter, sans-serif !important;
}


.quote_form .field {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.quote_form .form_row {
  display: flex;
  gap: 20px;
}

.quote_form label {
  font-weight: 500;
  margin-bottom: 5px;
  color: #5a6578; /* light */
  font-size: 18px; 
}

.field-value {
  display: block;
  padding: 10px;
  font-size: 22px;
  color: black; /* light */
  white-space: pre-wrap; /* preserves newlines */
  font-weight: 700; 
}


/* ========= LIGHT THEME ========= */
body.light .eor_section_sent_info {
  background: #ffffff;
  color: #1a1f2c;
  padding: 24px;
}

body.light .quote_form_wrapper {
  background: #f7f8fa;
  border: 1px solid #e6e8ef;
  border-radius: 12px;
  padding: 24px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

body.light .quote_form_title {
  margin: 0 0 8px 0;
  font-size: 28px;
  line-height: 1.2;
  color: #1a1f2c;
}

body.light .quote_form_subtitle {
  margin: 0 0 20px 0;
  color: #5a6578;
  font-size: 16px;
}

body.light .quote_form {
  display: grid;
  gap: 16px;
}

body.light .form_row {
  display: grid;
  gap: 16px;
}

@media (min-width: 700px) {
  body.light .form_row {
    grid-template-columns: 1fr 1fr;
  }
}

body.light .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.light .quote_form label {
  font-weight: 500;
  color: #5a6578;
  font-size: 18px;
}

body.light .field-value {
  display: block;
  padding: 12px 14px;
  color: black;
  font-size: 22px;
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-word;
  font-weight: 700; 
}

body.light .quote_form_wrapper::before {
  content: "";
  display: block;
  height: 4px;
  width: 64px;
  border-radius: 999px;
  margin-bottom: 16px;
}


/* Go Back — fixed at top-left, consistent across themes */
.sent-go-back-link {
  position: fixed;
  top: 200px;
  left: 50px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  font-family: Inter, sans-serif;

  /* Light/base look now */
  background: rgba(255, 255, 255, 0.95);
  color: #5a6578;
  border-color: rgba(11,108,255,0.3);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);

  transition: transform 0.12s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sent-go-back-link:hover {
  transform: translateY(-1px);
  color: black; /* light hover */
}

/* Light theme colors only (no position changes) */
body.light .sent-go-back-link {
  background: rgba(255, 255, 255, 0.95);
  color: #5a6578;
  border-color: rgba(11,108,255,0.3);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

body.light .sent-go-back-link:hover {
  color: black;
}
