:root {
  --primary-color: #124BB1;
  /* Deep Navy Blue */
  --accent-color: #FFC426;
  /* Gold/Yellow */
  --text-color: #252525;
  --text-color-sub: #5c5c5c;
  --bg-color: #FFFFFF;
  --light-bg: #F9F9F9;
  --font-main: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}


/* Hero Section */
.hero {
  height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  /* padding-left: 5%; */
  padding: 0 5%;
  position: relative;
  margin-top: 120px;
  overflow: hidden;
}

.hero-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-image.active {
  opacity: 1;
}

.hero-image-gradation-sp {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: #fff;
  /* max-width: 750px; */
  width: 100%;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.3;
  opacity: 0.9;
  letter-spacing: 1.3px;
  text-align: right;
  /* text-transform: uppercase; */
}

.hero-content-text {
  font-weight: bold;
  text-align: left !important;
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(to bottom right, rgba(255, 196, 38, 0.1), rgba(255, 241, 203, 0.1));
  position: relative;
  color: var(--primary-color);
}

.about-container {
  background-image: url('../img/Group\ 37.png');
  background-size: contain;
  background-position: center;
  text-align: center;
}

.about-title {
  font-size: 37px;
}

.about-title-en {
  font-family: 'Barlow';
  font-weight: 900;
  font-style: italic;
}

.about-subtitle {
  font-size: 26px;
  font-weight: bold;
  margin: 50px 0 30px 0;
}

.about-text {
  font-size: 16px;
  line-height: 2.0;
  /* color: var(--primary-color); */
  margin-bottom: 70px;
}

/* Services Section */
.services {
  padding: 80px 0 90px 0;
  background-color: #F9F9F9;
}

.services .section-title {
  /* color: #333; */
  line-height: 1.4;
  margin-bottom: 10px;
}

.services .section-subtitle {
  /* font-size: 16px; */
  /* color: #666; */
  margin: 20px 0 50px 0;
}

.service-grid-3 {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.service-grid-2 {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.service-item {
  flex: 1;
  text-align: left;
  max-width: 410px;
}

.service-grid-2 .service-item {
  flex: 0 0 calc(50% - 15px);
  /* Half width minus gap */
  max-width: 485px;
}

.service-img-wrapper {
  position: relative;
  /* width: 410px; */
  height: 130px;
  margin-bottom: 30px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  /* Darken image slightly for text contrast */
}

.img-overlay-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 54px;
  font-weight: 900;
  font-style: italic;
  font-family: 'Barlow';
  width: 100%;
  text-align: center;
  /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); */
  line-height: 1;
  margin-bottom: -7px;
  /* Slight adjustment to sit on bottom edge */
}

.service-title-jp {
  font-size: 20px;
  font-weight: bold;
  /* color: var(--text-color-sub); */
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.service-title-jp::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--accent-color);
  margin-right: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-color-sub);
  line-height: 1.6;
  padding: 0 18px;
  font-weight: bold;
}

/* Features Section */
.features {
  padding: 105px 0;
  background-color: #fff;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 74px;
  max-width: 620px;
  margin: 0 auto;
}

.feature-item {
  background-color: #EFF5FF;
  padding: 40px 50px 50px 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 3px solid #025BDA;
  position: relative;
  /* overflow: hidden; */
  /* height: 300px; */
}

.feature-number {
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 1;
  z-index: 0;
  width: 100px;
}

.feature-number img {
  width: 100%;
  height: auto;
}

.feature-content {
  position: relative;
  z-index: 1;
  text-align: left;
  width: 100%;
}

.feature-content h3 {
  font-size: 20px;
  font-weight: bold;
  /* color: #333; */
  margin-bottom: 20px;
  line-height: 1.4;
}

.feature-content p {
  font-size: 14px;
  color: var(--text-color-sub);
  margin-bottom: 0;
  line-height: 1.8;
}

.feature-banner {
  position: absolute;
  bottom: -15px;
  right: -15px;
  /* background-color: #004098; */
  background: linear-gradient(90deg, #01327A, #015CE0);
  color: #fff;
  padding: 10px 30px 5px 50px;
  clip-path: polygon(50px 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 2;
  font-size: 18px;
  display: flex;
  /* align-items: center; */
  align-items: baseline;
  gap: 10px;
}

.feature-banner span {
  font-size: 20px;
  font-weight: bold;
}

.feature-banner strong {
  font-size: 32px;
  font-weight: bold;
}

/* Case Study Section */
.case-study {
  padding: 150px 0;
  background-color: #fff;
}

.slider-container {
  width: 90%;
  /* 90% width means 5% margin on each side effectively */
  margin: 0 auto;
  /* Center the container to create equal side margins */
  overflow: hidden;
  /* Strict masking at the 90% boundary */
  cursor: grab;
  /* padding removed for strict masking */
}

.slider-container:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  width: fit-content;
  /* Allow track to grow based on contents */
  transition: transform 0.1s;
  /* Small transition for smooth drag, but handled by JS mostly */
}

.slide {
  width: 33.3333%;
  /* 3 slides visible in the container */
  flex-shrink: 0;
  padding: 0 10px;
  text-align: left;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  /* border-radius: 8px; */
  pointer-events: none;
  /* Prevent image dragging interfering with slide drag */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.case-img {
  height: 180px;
  background-color: #eee;
  margin-bottom: 20px;
  overflow: hidden;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.case-item:hover .case-img img {
  transform: scale(1.05);
}

.case-info h3 {
  font-size: 20px;
  margin: 20px 0;
  /* color: var(--text-color); */
  font-weight: bold;
}

.case-detail {
  margin-bottom: 15px;
}

.label-gray {
  display: inline-block;
  background-color: #ededed;
  /* color: #333; */
  font-size: 16px;
  padding: 2px 10px;
  margin-bottom: 5px;
  font-weight: bold;
}

.label-gold {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 16px;
  padding: 2px 10px;
  margin-bottom: 5px;
  font-weight: bold;
}

.case-detail p {
  font-size: 16px;
  color: #5c5c5c;
  line-height: 1.6;
  margin-top: 5px;
  font-weight: bold;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  margin: 60px 0;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #003366;
  /* Deep blue/navy accent */
}

/* Wide Button */
.btn-wide {
  width: 100%;
  max-width: 400px;
  text-align: center;
  border-radius: 4px;
  /* Less rounded than pill */
  padding: 15px 0;
  font-size: 18px;
}

/* What Assista Can Do Section */
.what-we-do {
  padding: 80px 0 150px 0;
  background-color: #fff;
}

.do-grid {
  display: flex;
  flex-wrap: wrap;
  /* Allow wrapping for 2x2 grid */
  justify-content: space-between;
  gap: 80px;
  /* Gap between items */
  max-width: 900px;
  /* Limit width to keep grid tight */
  margin: 0 auto;
}

.do-item {
  flex: 0 0 calc(50% - 40px);
  /* 2 items per row with gap */
  text-align: left;
  /* Left align text */
}

.do-img {
  height: 250px;
  /* Taller images */
  margin-bottom: 20px;
  overflow: hidden;
}

.do-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.do-content {
  border-left: 1px solid var(--accent-color);
  /* Yellow vertical bar */
  padding-left: 15px;
}

.do-item h3 {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 5px;
  font-weight: bold;
  line-height: 1.2;
}

.do-item p {
  font-size: 16px;
  /* color: #333; */
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: "Helvetica Neue", Arial, sans-serif;
  /* Ensure English font looks clean */
}

/* Public Institutions Section */
.public-institutions {
  /* padding: 60px 0 100px; */
  padding-top: 15px;
  background-color: #0A2A62;
  /* Approximate gradient stops based on image */
  color: #fff;
  position: relative;
  overflow: hidden;
}

.public-institutions>.container {
  padding: 0;
}

.official-header {
  text-align: center;
  margin-bottom: 50px;
}

.crown-icon {
  width: 63px;
  /* margin-bottom: 10px; */
}

.official-title-text {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.official-subtitle {
  font-size: 20px;
  color: var(--accent-color);
  /* Gold color */
}

.institution-grid-wrapper {
  background-color: #A3C0EA;
  width: 100%;
  padding: 50px 0;
}

/* Grid Layout */
.institution-grid-top {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.institution-grid-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Card Styling */
.institution-card {
  width: 360px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.inst-logo-area {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.inst-logo-area img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.inst-info-area {
  background-color: #002B5B;
  /* Dark Blue Footer */
  color: #fff;
  padding: 10px;
  text-align: center;
  height: 48px;
  /* Fixed height for alignment */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inst-name {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 2px;
  line-height: 1.2;
}

.inst-role {
  font-size: 14px;
  font-weight: bold;
  opacity: 0.9;
  line-height: 1.2;
}

.official-bg-text {
  pointer-events: none;
  margin: 45px 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.official-bg-text::before {
  content: '';
  flex-grow: 1;
  height: 2px;
  background-color: #113677;
  /* background-color: rgba(255, 255, 255, 0.1); */
  margin-right: 20px;
  margin-bottom: 13px;
  /* Space between line and image */
}

.official-bg-text img {
  height: 80px;
  margin-right: 45px;
}

/* News Section */
.news {
  padding-bottom: 150px;
  background-color: #fff;
  /* Changed to white based on image */
}

.news-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  text-align: left;
  margin: 0 5%;
}

.news-header {
  flex: 0 0 350px;
}

.news-header .section-title {
  /* font-size: 32px; */
  /* color: #333; */
  margin-bottom: 5px;
  text-align: left;
}

.news-header .section-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  text-align: left;
  font-weight: bold;
}

.news-desc-box {
  border-left: 1px solid var(--accent-color);
  padding-left: 25px;
}

.news-lead {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 15px;
  /* color: #333; */
}

.news-sub {
  font-size: 14px;
  color: #5c5c5c;
}

.news-list {
  flex: 1;
  max-width: none;
  margin: 0;
}

.news-item {
  border-bottom: 1px solid #d9d9d9;
}

.news-item a {
  display: flex;
  align-items: center;
  padding: 25px 0;
  transition: background-color 0.3s;
}

.news-icon {
  margin-right: 20px;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.news-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-title {
  font-size: 20px;
  color: #01327A;
  font-weight: bold;
  flex: 1;
  text-align: left;
}

.news-item a:hover .news-title {
  text-decoration: underline;
}

/* Contact Section */
.contact-section {
  position: relative;
  /* padding: 60px 0 100px 0; */
  color: #fff;
  background-color: var(--primary-color);
  overflow: hidden;
  z-index: 0;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/contact_bg_1.png');
  background-size: cover;
  background-position: bottom;
  z-index: -1;
  clip-path: polygon(0 0, 55% 0, 45% 100%, 0 100%);
}

.contact-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/contact_bg_2.png');
  background-size: cover;
  background-position: bottom;
  z-index: -1;
  clip-path: polygon(55% 0, 100% 0, 100% 100%, 45% 100%);
}

.contact-section-bg-filter {
  background: linear-gradient(45deg, rgba(23, 45, 157, 0.5), rgba(0, 169, 242, 0.5));
  /* width: 100%;
  height: 100%; */
  padding: 60px 0 100px 0;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(10, 46, 120, 1);
}

.contact-subtitle {
  font-size: 22px;
  margin-bottom: 45px;
  line-height: 1.8;
  text-shadow: 0 2px 4px rgba(10, 46, 120, 1);
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.contact-card {
  background-color: rgba(255, 255, 255, 0.8);
  /* Semi-transparent white */
  border-radius: 15px;
  padding: 35px 25px;
  width: 350px;
  color: #565656;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
}

.contact-icon {
  width: 68px;
  height: 68px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.contact-communication_icon {
  width: 56px;
  position: absolute;
  top: -3px;
  left: 12px;
}

.contact-mail_icon {
  width: 34px;
}

.contact-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #565656;
  line-height: 1.4;
}

.contact-card p {
  font-size: 14px;
  font-weight: bold;
  color: #565656;
  margin-bottom: 30px;
  line-height: 1.6;
  flex: 1;
  /* Push button to bottom */
}

.contact-card>.spacer {
  height: 28px;
}

.btn-contact-blue {
  font-size: 16px;
  padding: 15px 30px;
  width: 100%;
}

.btn-contact-yellow {
  padding: 15px 30px;
  width: 100%;
}


/* Intro Section */
.consulting-intro {
  padding: 100px 0;
}

.intro-flex {
  display: flex;
  align-items: center;
  gap: 55px;
  max-width: 1130px;
  margin: 0 auto;
}

.intro-img {
  flex: 0 0 45%;
  /* border-radius: 8px; */
  /* overflow: hidden; */
}

.intro-img img {
  width: 100%;
  height: auto;
  display: block;
}

.intro-text {
  flex: 1;
}

.intro-text h3 {
  font-size: 20px;
  /* color: #333; */
  font-weight: bold;
  margin-bottom: 35px;
  line-height: 1.3;
  text-align: left;
  /* Removed border from here */
}

.intro-description {
  border-left: 1px solid var(--accent-color);
  /* Orange line */
  padding-left: 20px;
}

.intro-description p {
  font-size: 16px;
  /* color: #333; */
  line-height: 1.3;
  font-weight: normal;
  /* Image text looks normal weight, maybe bold? keeping normal or 500 */
  font-weight: bold;
  /* User code had bold before, let's keep it bold as it looks sharp in image */
  margin-bottom: 0;
  text-align: left;
}

/* Process Flow Section */
.consulting-process {
  padding: 135px 0 200px;
  background-color: #FAFAFA;
}

.consulting-process .section-title {
  text-align: center;
  font-size: 30px;
  color: var(--primary-color);
  font-weight: bold;
  background-color: #fff;
  width: 55%;
  margin: 0 auto 90px;
  padding: 20px 45px;
}

.consulting-process .section-title .highlight {
  position: relative;
  z-index: 1;
}

.consulting-process .section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #FFF0C9;
  /* Yellow accent */
  z-index: -1;
  /* border-radius: 4px; */
}

/* Phase Block */
.process-phase {
  /* display: flex; REMOVED FLEX */
  /* justify-content: center; */
  /* align-items: center; */
  /* gap: 40px; */
  /* width: 90%; */
  max-width: 1336px;
  margin: 0 auto;
  position: relative;
  /* For absolute mascot */
  padding-top: 40px;
  /* Space for mascot/banner */
}

.phase-mascot-wrapper {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  /* Let clicks pass through if needed */
}

.phase-mascot01 {
  top: -225px;
  left: -8px;
}

.phase-mascot02 {
  top: -245px;
  right: -30px;
}

.phase-mascot03 {
  top: -185px;
  left: 88px;
}

.phase-content {
  /* flex: 1; */
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 4px 4px 10px 5px rgba(0, 0, 0, 0.03);
  padding: 100px 30px;
  /* Top padding increased for banner */
  position: relative;
  /* border: 1px solid #eee; */
  width: 100%;
}

/* Banner */
.phase-banner {
  background: linear-gradient(90deg, #172D9D, #00A9F2);
  /* Deep Blue to Light Blue Gradient */
  color: #fff;
  /* padding: 10px 40px 10px 120px; */
  padding: 3px 60px;
  /* Left padding for Mascot space */
  border-radius: 10px;
  /* Rounded right side */
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  /* width: 70%; */
  /* Banner doesn't go full width in design */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  font-size: 38px;
}

/* Phase 3 Banner specific */
.process-phase:not(.reverse) .phase-banner {
  background: linear-gradient(90deg, #103688, #00A9EA);
}

.process-phase:last-child .phase-banner {
  /* padding-left: 120px; */
  /* Ensure space for mascot on left */
}

.phase-label {
  font-family: 'Barlow', sans-serif;
  /* Or Oswald/Impact type font */
  /* font-size: 38px; */
  font-weight: 900;
  font-style: italic;
  /* border-right: 1px solid rgba(255, 255, 255, 0.3); */
  padding-right: 15px;
  letter-spacing: 0.05em;
}

.phase-title {
  /* font-size: 38px; */
  font-weight: bold;
  letter-spacing: 0.05em;
  /* border-left: 2px solid rgba(255, 255, 255, 0.4); */
  padding-left: 20px;
}

/* Steps Grid */
.phase-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  /* margin-top: 40px; */
  /* Space from banner area */
}

/* Individual Pill/Step */
.phase-step {
  /* flex: 1; */
  /* background-color: #F8FBFF; */
  /* border: 1px solid #E1EFFF; */
  /* border-radius: 20px; */
  /* padding: 20px; */
  text-align: center;
  /* min-height: 180px; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-header {
  background-color: #013F99;
  /* Dark Blue Pill */
  color: #fff;
  font-size: 20px;
  padding: 7px 10px;
  border-radius: 20px;
  width: 100%;
  margin-bottom: 15px;
  font-weight: bold;
  min-height: 38px;
  /* Ensure 2 liners align */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.phase-step p {
  font-size: 14px;
  color: var(--text-color-sub);
  line-height: 1.3;
  text-align: center;
  /* Design text is centered */
  font-weight: bold;
}

/* Arrow between phases */
.process-arrow-down {
  width: 0;
  height: 0;
  border-left: 61px solid transparent;
  border-right: 61px solid transparent;
  border-top: 50px solid #d9d9d9;
  margin: 40px auto;
}

/* Phase 3 - 2 cols layout */
.phase-steps.steps-2-col {
  grid-template-columns: repeat(2, 1fr);
  /* gap: 30px; */
  max-width: 900px;
  /* Limit width for 2 cols */
  margin: 0 auto;
}

.phase-steps.steps-2-col .phase-step p {
  text-align: center;
}

.phase-step.wide {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phase-step.wide h4 {
  width: auto;
  min-width: 80%;
  margin-bottom: 20px;
}

.phase-step.wide p {
  text-align: center;
}


/* =========================================
   Seminar Page Specific Styles
   ========================================= */

/* Seminar Intro */
.seminar-intro {
  padding-bottom: 120px;
}

.seminar-intro-header {
  background: linear-gradient(90deg, #172D9D, #00A9F2);
  color: #fff;
  padding: 15px 0;
  text-align: center;
  margin-bottom: 60px;
}

.seminar-intro-header h3 {
  font-size: 30px;
  font-weight: bold;
  margin: 0;
}

.seminar-intro-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1028px;
  margin: 0 auto;
}

.seminar-intro-img {
  flex: 0 0 45%;
  text-align: right;
}

.seminar-intro-img img {
  width: 100%;
  max-width: 350px;
  height: auto;
  /* display: block; */
}

.seminar-intro-text {
  flex: 1;
  text-align: left;
}

.intro-label {
  background-color: #333;
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.seminar-intro-text p {
  font-size: 16px;
  margin-bottom: 30px;
  text-align: left;
}

.btn-bio {
  display: flex;
  margin: 0 auto;
  width: fit-content;
  align-items: center;
}

/* Seminar Achievement List */
.seminar-section {
  padding: 0 0 100px;
  /* Adjust padding if needed */
  background-color: #fff;
}

.seminar-achievement-title {
  text-align: center;
  color: var(--primary-color);
  /* Blue title */
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 70px;
}

.seminar-achievement-list {
  max-width: 900px;
  margin: 0 auto;
  /* border-top: 1px solid #FFE082; */
  /* Yellowish border top */
}

.achievement-row {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid var(--accent-color);
  /* Yellowish border bottom */
  align-items: flex-start;
  gap: 30px;
}

.achievement-date {
  font-weight: bold;
  font-size: 20px;
  /* color: #333; */
  line-height: 1.3;
  width: 110px;
}

.achievement-title {
  font-weight: bold;
  font-size: 20px;
  /* color: #333; */
  line-height: 1.3;
  text-align: left;
}

.seminar-footer-text {
  text-align: center;
  margin-top: 50px;
}

.seminar-footer-text p {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 20px;
}

/* =========================================
   Sales & Promotion Page Specific Styles
   ========================================= */

/* Sales Support Section */
.sales-support-section {
  padding: 100px 0 150px;
  background-color: #fff;
}

.sales-support-section .section-title {
  text-align: center;
  font-size: 30px;
  color: var(--primary-color);
  /* Match consulting title color */
  font-weight: bold;
  /* Bold per image */
  margin-bottom: 80px;
}

.support-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 90%;
  max-width: 1330px;
  margin: 0 auto;
  /* flex-wrap: wrap; */
  /* Use grid or flex? Flex with wrap is fine if widths are responsive */
}

.support-item {
  width: 300px;
  flex-grow: 1;
  text-align: left;
  /* Approx width per card based on 3 cols in ~1000px container */
  /* flex: 1; */
}

/* Header with Blue Number Box */
.support-header {
  background: linear-gradient(90deg, #172D9D, #00A9F2);
  /* Dark blue to Light blue gradient */
  color: #fff;
  padding: 0px 13px;
  width: 100%;
  margin-bottom: 20px;
}

.support-number {
  font-family: 'Barlow', sans-serif;
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  display: block;
}

.support-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  /* color: #333; */
  padding: 0 15px;
}

.support-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-color-sub);
  font-weight: bold;
  padding: 0 15px;
}

.support-desc .note {
  font-size: 12px;
  font-weight: normal;
  display: block;
  margin-top: 5px;
}

.support-desc>.spacer {
  height: 10px;
}

.sales-support-section .section-title {
  /* color: var(--primary-color); */
  /* Deeper blue matching image text */
}

/* Intro Section */
.sales-promotion-intro {
  padding: 40px 0 100px 0;
}

.sales-promotion-intro .container {
  background-image: url('../img/Group\ 37.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.intro-title-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 40px;
  text-align: center;
  /* width: fit-content; */
  max-width: 500px;
  margin: 0 auto 50px;
  font-size: 20px;
  font-weight: bold;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03); */
  /* Subtle shadow for white on cream? */
}

.intro-title-box .emphasis {
  font-size: 28px;
  font-weight: 900;
  margin: 0 5px;
  text-emphasis: filled circle #FFC400;
  /* Gold dots */
  -webkit-text-emphasis: filled circle #FFC400;
  text-emphasis-position: over;
}

/* Sales Promotion Intro Specifics (Cloned from Consulting Intro to avoid conflict) */
.sales-intro-flex {
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 1130px;
  margin: 0 auto;
}

.sales-intro-img {
  flex: 0 0 45%;
  text-align: right;
}

.sales-intro-img img {
  width: 100%;
  max-width: 310px;
  height: auto;
  /* display: block; */
}

.sales-intro-text {
  flex: 1;
}

.sales-intro-description {
  /* border-left: 1px solid var(--accent-color); */
  /* padding-left: 20px; */
  color: var(--text-color-sub);
}

.sales-intro-description p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 0;
  text-align: left;
}

/* Seminar Case /* Marketing Intro */
.marketing-intro {
  padding: 60px 0 100px;
  background-color: #FFF8E1;
  /* Light yellow background from image */
  background-image: url('../img/Group\ 37.png');
  /* Pattern if available */
  background-size: cover;
  background-position: center;
}

.marketing-intro .intro-title-box {
  position: relative;
  margin-bottom: 50px;
  font-size: 28px;
  max-width: none;
  display: inline-block;
}

.marketing-intro .intro-title-box::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 20px solid #fff;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}

.marketing-intro-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1028px;
  margin: 0 auto;
}

.marketing-intro-img {
  flex: 0 0 45%;
  text-align: right;
}

.marketing-intro-img img {
  width: 100%;
  max-width: 412px;
  height: auto;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  /* border-radius: 4px; */
}

.marketing-intro-text {
  flex: 1;
  text-align: left;
}

.intro-point {
  /* margin-bottom: 30px; */
  padding-left: 15px;
}

.intro-point h4 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}

.point-gold p {
  border-left: 1px solid var(--accent-color);
  margin-bottom: 50px;
}

.point-blue p {
  border-left: 1px solid #025BDA;
}

.intro-point p {
  font-size: 16px;
  line-height: 1.3;
  font-weight: bold;
  color: #333;
  padding-left: 13px;
}

/* Seminar Case / Contact Section */
.seminar-case {
  background-color: #FFF8E1;
  padding: 70px 0 120px;
}

.seminar-case .yellow-bg-deco {
  padding: 0;
}

.seminar-case-card {
  background-color: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
  border-radius: 10px;
}

.seminar-case-card h3 {
  color: #1632A1;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 50px;
}

.seminar-case-img {
  width: 90%;
  margin: 0 auto 50px;
}

.seminar-case-img img {
  max-width: 100%;
  height: auto;
}

.seminar-case-text p {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-color-sub);
  margin-bottom: 50px;
}

/* Marketing Steps */
.marketing-steps {
  padding: 0 0 100px;
  background-color: #E6F4FA;
  /* Pale blue from image */
}

.section-header-blue {
  background: linear-gradient(90deg, #172D9D, #00A9F2);
  color: #fff;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 60px;
}

.section-header-blue h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  color: #fff;
}

.steps-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.marketing-step-card {
  background-color: #fff;
  padding: 40px 100px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.step-header-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.step-badge {
  background: linear-gradient(90deg, #172D9D, #00A9F2);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  font-family: 'Barlow';
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.marketing-step-card h3 {
  font-size: 30px;
  font-weight: bold;
  color: var(--primary-color);
  margin: 0;
}

.step-sub-section h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  /* color: #333; */
}

.step-sub-section p {
  font-size: 14px;
  line-height: 1.3;
  /* color: #333; */
  margin-bottom: 0;
  font-weight: bold;
}

.step-divider {
  height: 1px;
  background-color: #DFE5F0;
  margin: 25px 0;
}

/* =========================================
   Expatriate Services Page
   ========================================= */
.reduction-badge-sp {
  display: none;
}

/* Hero Adjustment */
.page-hero-overlay .page-title-en {
  margin-top: 0;
}

/* Section Header */
.exp-challenges {
  padding: 80px 0;
  background-color: #F9FCFF;
}

.exp-section-header-box {
  background: linear-gradient(90deg, #172D9D, #00A9F2);
  color: #fff;
  /* display: inline-block; */
  padding: 20px 45px;
  border-radius: 5px;
  /* margin-bottom: 30px; */
  margin: 0 auto 30px;
  width: 500px;
  display: flex;
}

.exp-section-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto;
}

.exp-section-lead {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 80px;
}

/* Challenge Rows */
.exp-challenge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  gap: 40px;
}

.exp-challenge-row.reverse {
  flex-direction: row-reverse;
}

.exp-challenge-header {
  flex: 0 0 200px;
  text-align: center;
  background-color: #002B5B;
  /* Dark Navy for Number Box */
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 150px;
  /* Uniform height */
}

.challenge-num {
  font-size: 32px;
  font-weight: bold;
  opacity: 0.8;
  line-height: 1;
  margin-bottom: 5px;
}

.exp-challenge-header h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.exp-challenge-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.challenge-text {
  flex: 1;
  text-align: left;
  line-height: 1.8;
  font-size: 16px;
}

.challenge-img img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 5px;
}

/* Time Challenge Specifics */
.time-challenge .time-img-wrapper {
  flex: 0 0 300px;
  position: relative;
  height: 200px;
  background-image: url('../img/clock_bg.jpg');
  /* Need placeholder or generate */
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Fallback if no image */
.time-challenge .time-img-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 43, 91, 0.8), rgba(0, 169, 242, 0.8));
}

.time-circle {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.time-circle p {
  font-size: 12px;
  margin-bottom: 5px;
}

.time-main {
  font-size: 48px;
  line-height: 1;
  display: block;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.time-main small {
  font-size: 20px;
}

.time-sub-title {
  /* color: var(--primary-color); */
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.link-text {
  color: #00A9F2;
  font-weight: bold;
  margin-top: 15px;
  text-decoration: underline;
}

/* Compare Table (Cost) */
.exp-challenge-row.cost-challenge {
  flex-direction: column;
  padding: 40px;
  align-items: stretch;
}

.exp-challenge-row.cost-challenge .exp-challenge-header {
  align-self: flex-start;
  margin-bottom: 20px;
  height: auto;
  flex-direction: row;
  height: auto;
  width: auto;
  gap: 15px;
  padding: 10px 30px;
}

.exp-challenge-row.cost-challenge .challenge-num {
  margin-bottom: 0;
  font-size: 24px;
}

.cost-intro {
  text-align: left;
  font-weight: bold;
  margin-bottom: 30px;
}

.cost-comparison-wrapper {
  overflow-x: auto;
  /* Allow scroll on small screens */
  padding-bottom: 20px;
}

.cost-table {
  display: flex;
  justify-content: center;
  min-width: 800px;
  /* Ensure layout doesn't break */
}

.cost-labels {
  flex: 0 0 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: var(--primary-color);
  padding-top: 60px;
  /* Align with rows */
}

.vs-label {
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.label-row {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.cost-col {
  flex: 1;
  background-color: #F8F9FA;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.cost-col.traditional {
  background-color: #F0F4F8;
}

.cost-col.assista {
  border: 4px solid #00A9F2;
  background-color: #fff;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 169, 242, 0.15);
}

.col-header {
  background-color: #E2E8F0;
  color: #4A5568;
  padding: 20px 10px;
  font-weight: bold;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.cost-col.assista .col-header {
  background: linear-gradient(90deg, #172D9D, #00A9F2);
  color: #fff;
}

.cost-row {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
  font-weight: bold;
  color: #555;
}

.col-footer {
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
}

.total-bad {
  color: #E53E3E;
  background-color: #FFF5F5;
}

.total-good {
  color: #00A9F2;
  background-color: #EBF8FF;
  position: relative;
}

.skewed-badge {
  position: absolute;
  bottom: 10px;
  right: -10px;
  background-color: #E53E3E;
  color: #fff;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 4px;
  transform: rotate(-10deg);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.cost-note {
  text-align: right;
  font-size: 12px;
  color: #777;
  margin-top: 10px;
}

/* =========================================
   Unified Bottom Background
   ========================================= */
.exp-unified-bottom-bg {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 218, 121, 0.1) 50%, rgba(255, 241, 203, 0.1) 100%);
}

/* Ensure inner sections are transparent to show gradient */
.exp-unified-bottom-bg .exp-staff,
.exp-unified-bottom-bg .exp-support,
.exp-unified-bottom-bg .exp-achievements,
.exp-unified-bottom-bg .exp-cta {
  /* background-color: transparent !important; */
}

/* Staff Section */
.exp-staff {
  padding: 80px 0;
  /* background-color: #fff; */
}

.staff-flex {
  display: flex;
  align-items: center;
  gap: 70px;
  width: 90%;
  max-width: 1045px;
  margin: 0 auto;
}

.staff-img {
  flex: 1;
}

.staff-img img {
  width: 100%;
}

.staff-content {
  flex: 2;
  text-align: left;
}

.staff-content h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.4;
}

.staff-content .blue-text {
  color: var(--primary-color);
  border-bottom: 2px solid var(--accent-color);
}

/* Support Section */
.exp-support {
  padding-bottom: 50px;
}

.ribbon-title-wrapper {
  position: relative;
  background: linear-gradient(90deg, #F2C94C, #F2994A);
  color: #fff;
  display: inline-block;
  padding: 15px 60px;
  margin-bottom: 60px;
  /* Ribbon effect usually needs pseudo elements, kept simple here */
  transform: skew(-15deg);
}

.ribbon-title {
  transform: skew(15deg);
  /* Counter skew text */
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.support-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.support-card {
  flex: 1;
  background: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.plan-title {
  color: var(--accent-color);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
}

.diamond {
  color: var(--accent-color);
}

.plan-desc {
  font-size: 14px;
  line-height: 2;
  color: #444;
}

/* Achievements */
.exp-achievements {
  padding-bottom: 70px;
  /* background-color: #fff; */
}

.exp-achievements-wrapper {
  background-color: #fff;
  width: 90%;
  max-width: 1028px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
  padding-bottom: 50px;
  border-radius: 5px;
}

.wreath-title h2 {
  /* font-size: 22px; */
  /* color: var(--accent-color); */
  /* margin-bottom: 40px; */
  position: relative;
  display: inline-block;


  font-size: 26px;
  font-weight: bold;
  color: #D5A624;
  margin: 50px 0;
  /* Golden text */
  display: inline-block;
  padding: 0 60px;
  /* Space for wreaths */
  position: relative;
}

.wreath-title h2::before,
.wreath-title h2::after {
  content: '🌿';
  /* Simplified Wreath */
  font-size: 24px;
  margin: 0 10px;
  color: #BACD92;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3%;
}

.tag-cloud span {
  background-color: #EFF5FF;
  color: #113677;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
}

/* CTA */
.exp-cta {
  padding-bottom: 80px;
  background-image: url('/img/Group 37.png');
}

.cta-box-blue {
  padding: 50px;
  border-radius: 15px;
  background-color: #F1F6FF;
  padding: 30px 40px;
  text-align: center;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 4px 4px 9px rgba(0, 0, 0, 0.05);

}

.cta-box-blue .contact-icon {
  margin: 0 auto;
}

.cta-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.cta-icon img {
  width: 30px;
  height: auto;
}

.cta-msg {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.cta-sub-msg {
  color: #555;
  margin-bottom: 30px;
}

.btn-primary-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #172D9D, #00A9F2);
  color: #fff;
  padding: 20px 50px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(23, 45, 157, 0.3);
  transition: transform 0.3s;
}

.btn-primary-gradient:hover {
  transform: translateY(-3px);
}

/* =========================================
   Expatriate Services Update (Exact Match)
   ========================================= */

/* Challenge 02: Time Overlay */
.time-challenge .time-img-wrapper {
  position: relative;
  overflow: hidden;
}

/* Pseudo-element for blue overlay on image */
.time-challenge .time-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 43, 91, 0.4);
  /* Blue Tint */
  z-index: 1;
}

.time-overlay-text {
  position: absolute;
  top: 30%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  text-align: left;
}

.time-overlay-label {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); */
}

.time-overlay-year {
  font-family: 'Barlow';
  font-size: 80px;
  font-weight: bold;
  line-height: 1;
  /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); */
}

.year-unit {
  font-size: 30px;
  margin-left: 5px;
}

.quote-text {
  /* font-weight: bold; */
  /* color: var(--primary-color); */
  margin-bottom: 20px;
  line-height: 1.8;
  position: relative;
  text-align: left;
  font-size: 18px;
  /* padding-left: 15px; */
  /* border-left: 4px solid var(--accent-color); */
}

.quote-source {
  font-size: 12px;
  color: #4177C8;
  text-align: left;
  line-height: 1.4;
}

/* Cost Table Refinements */
.cost-col.traditional {
  background-color: #F8FBFF;
  /* Very light blue */
}

.col-header.self-dispatch {
  background-color: #EBF4FC;
  color: #333;
  font-size: 14px;
}

.header-arrow-down {
  font-size: 10px;
  color: #aaa;
  display: block;
}

.col-header.self-dispatch .header-arrow-down {
  color: var(--primary-color);
}

.double-line {
  height: 60px;
  /* Taller rows */
  flex-direction: column;
  line-height: 1.2;
}

.row-note {
  font-size: 11px;
  font-weight: normal;
  display: block;
}

.total-bad {
  background-color: #FFECEC;
  color: #E53E3E;
}

.cost-intro {
  color: var(--primary-color);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  font-size: 13px;
}

.col-footer {
  font-size: 22px;
}

/* Badge Refined */
/* .skewed-badge {
  background-color: #EF4444;
  border-radius: 8px;
  padding: 8px 12px;
  bottom: -15px;
  right: -25px;
  text-align: center;
  line-height: 1.2;
  z-index: 10;
  font-size: 11px;
} */

.badge-amount {
  font-size: 18px;
  font-weight: bold;
  color: #FFC426;
  /* Yellow text */
}

.badge-amount-sp {
  display: none;
}

/* Label column specific height fix for double lines */
.cost-labels .double-line {
  height: 60px;
}

.cost-labels .total-label {
  color: #E53E3E;
  /* Match total bad color usually or neutral */
  color: #FF7F50;
  /* Match graphic total pinkish */
}

.exp-challenge-content {
  background-color: #fff;
  padding: 0;
  /* Let grid handle it? No, keeping flex */
}

/* Card refinements */
.exp-challenge-row {
  padding: 30px;
  align-items: flex-start;
  /* Align text top */
}

/* =========================================
   Challenge Units (Exact Match Layout)
   ========================================= */
.exp-challenge-unit {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  /* Ensure columns are equal height */
  margin: 0 auto 80px auto;
  gap: 25px;
  width: 90%;
  max-width: 1028px;
}

.unit-02 {
  flex-direction: row-reverse;
}

.exp-unit-content-col {
  flex: 3;
  display: flex;
  flex-direction: column;
  /* width: 70%; */
}

/* Image Col: Position relative to confine absolute img */
.exp-unit-img-col {
  flex: 2;
  position: relative;
  /* width: 30%; */
  /* Essential for absolute positioning of child */
}

/* Img: Absolute to not force height, matches parent (content) height */
.exp-unit-img-col img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Header: Num Box + Title */
.exp-unit-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.exp-num-box {
  background-color: #01327A;
  color: #fff;
  font-size: 46px;
  font-weight: bold;
  font-family: 'Barlow';
  padding: 15px 15px;
  line-height: 1;
  margin-right: 20px;
}

.exp-unit-header h3 {
  font-size: 28px;
  font-weight: bold;
  color: #01327A;
  margin: 0;
}

/* Text Box */
.exp-unit-text-box {
  background-color: #fff;
  padding: 30px 40px;
  box-shadow: 4px 4px 8.8px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  line-height: 1.8;
  color: #01327A;
  /* Text color seems dark blueish in image */
  height: 100%;
  /* Stretch to fill column if needed */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exp-unit-text-box p {
  margin-bottom: 0;
  text-align: left;
  /* font-size: 18px; */
}

/* Unit 02 Specifics */
.time-bg-col {
  background-size: cover;
  background-position: center;
  position: relative;
  /* min-height: 350px; REMOVED to let text dictate height */
  display: flex;
  align-items: center;
  /* padding-left: 30px; */
}

/* .time-bg-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 75, 177, 0.6);
  z-index: 1;
} */

/* Adjust overlay text z-index */
.time-overlay-text {
  z-index: 2;
}

/* Unit 02 quote styles adjustment */
.exp-unit-text-box .time-sub-title {
  /* color: #01327A; */
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: none;
  text-align: left;
}

/* =========================================
   Challenge 03: Cost Unit (Exact Match)
   ========================================= */

.exp-challenge-unit.cost-unit {
  display: block;
  /* Override flex from common unit */
  background: transparent;
  /* width: 90%; */
  max-width: 1028px;
}

.cost-content-box {
  background-color: #fff;
  padding: 60px 40px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.05);
}

.cost-main-title {
  text-align: center;
  color: #01327A;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 40px;
}

.cost-3col-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  align-items: flex-start;
  font-family: 'Noto Sans JP';
}

/* Columns */
.cost-col-container {
  border-radius: 15px;
  padding: 20px 15px;
  flex: 1;
  max-width: 320px;
}

/* Left Col */
.self-dispatch-col {
  background-color: #F2F8FF;
  /* Light blue tint */
}

/* Right Col */
.assista-col {
  background: linear-gradient(90deg, #172D9D 0%, #00A9F2 92%);
  color: #fff;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 159, 232, 0.2);
}

/* Center Col */
.labels-col {
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  /* Slimmer */
  padding-top: 60px;
  /* Compensate for VS header offset if needed */
}

/* Headers */
.cost-col-header {
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
  color: #01327A;
  min-height: 50px;
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  position: relative;
}

.cost-col-header::before,
.cost-col-header::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 9px 0 9px;
  /* Top 6px, Sides 5px */
  border-color: currentColor transparent transparent transparent;
  margin: 0 15px;
  display: inline-block;
}

/* On mobile, headers might preserve this horizontal layout */
.cost-col-header.white-text {
  color: #fff;
  font-size: 28px;
}

/* 
.triangle-down {
  font-size: 10px;
  color: #01327A;
  margin: 0 20px;
}
.triangle-down.white {
  color: #fff;
} 
*/

/* VS Header */
.vs-header {
  color: #01327A;
  font-size: 46px;
  font-weight: 900;
  font-style: italic;
  /* font-family: 'Barlow', serif; */
  /* Or similar serif/italic */
  margin-bottom: 12px;
  margin-top: -60px;
  /* Pull up to align with column headers */
}

/* Rows */
.cost-value-row {
  background-color: #fff;
  color: #01327A;
  border-radius: 5px;
  margin-bottom: 15px;
  height: 45px;
  /* Unified height */
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 24px;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); */
}

.cost-value-row.note-row {
  height: 60px;
  /* Taller for double lines */
  flex-direction: column;
  line-height: 1.2;
  padding: 5px 0;
}

.cost-value-row .note {
  font-size: 14px;
}

/* .cost-value-row.empty {
  font-size: 20px;
} */

/* Labels */
.label-row {
  height: 45px;
  /* Unified height */
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  /* Slightly smaller to fit line */
  /* color: #333; */
  width: 100%;
  border-bottom: 1px solid #B9B9B9;
  line-height: 16px;
}

.labels-col .label-row:nth-of-type(7),
.labels-col .label-row:nth-of-type(8),
.labels-col .label-row:nth-of-type(10) {
  height: 60px;
  /* Match note rows (housing, car) */
}

/* Totals */
.cost-total-row {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  margin-top: 15px;
  border-radius: 5px;
  background-color: #FFEAEA;
  color: #EF4545;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bad-total {
  /* background-color: #FFECEC; */
  /* color: #FF4444; */
  /* Brighter red */
}

.good-total {
  /* background-color: #fff; */
  /* In Assista col, it's white box */
  /* color: #01327A; */
  position: relative;
}

.total-label {
  border: none;
  border-radius: 5px;
  background-color: #FFEAEA;
  color: #EF4545;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  height: 45px;
  /* line-height: 1.6rem; */
}

/* Badge */
.reduction-badge {
  position: absolute;
  top: -45px;
  /* Offset overlaps total */
  right: -105px;
  background-color: #EF4545;
  /* Red */
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  /* transform: rotate(-3deg); */
  /* Slight tilt */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
}

.reduction-badge::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: -3px;
  border-width: 15px 6px 0;
  border-style: solid;
  border-color: #EF4444 transparent;
  display: block;
  width: 0;
  transform: rotate(45deg);
}

.badge-amount {
  font-size: 28px;
  /* font-weight: bold; */
  color: var(--accent-color);
  /* Gold/Yellow */
}

/* Footer Note */
.cost-footer-note {
  font-size: 16px;
  color: #01327A;
  text-align: center;
  margin-top: 40px;
}

/* =========================================
   Staff Section (Exact Match)
   ========================================= */

.exp-staff {
  background-color: transparent !important;
  /* Unified bg handles it */
  padding: 80px 0;
}

.staff-content h3 {
  font-size: 26px;
  font-weight: bold;
  color: #113677;
  margin-bottom: 60px;
  line-height: 1.6;
}

.highlight-yellow {
  background: linear-gradient(transparent 60%, #FFF0C9 100%);
  padding-bottom: 2px;
  font-weight: 900;
  /* Extra bold for highlighted part */
}

/* On mobile, stack them */
/* @media screen and (max-width: 767px) {
  .staff-flex {
    flex-direction: column;
    gap: 40px;
  }
} */

/* =========================================
   Support System Section (Exact Match)
   ========================================= */

/* Ribbon Title */
.ribbon-title-wrapper {
  background: linear-gradient(90deg, #DCA000 0%, #FFE397 25%, #FFD051 50%, #F4C74F 100%);
  color: #fff;
  display: block;
  width: 90%;
  max-width: 1028px;
  margin: 0 auto 60px auto;
  padding: 20px 0;
  transform: skewX(-20deg);
  text-align: center;
  /* box-shadow: 0 5px 15px rgba(235, 192, 84, 0.3); */
}

.ribbon-title {
  transform: skewX(20deg);
  /* Counter skew */
  margin: 0;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
}

/* Grid */
.support-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: stretch;
  width: 90%;
  max-width: 1028px;
  margin: 0 auto;
}

/* Card */
.support-card {
  flex: 1;
  background: #fff;
  padding: 40px 20px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.support-card-title {
  color: #D39900;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.support-card-desc {
  font-size: 14px;
  font-weight: bold;
  /* line-height: 2.0; */
  /* Spacious line height */
  /* color: #333; */
  margin-bottom: 0;
}

/* =========================================
   Achievements Section (Exact Match)
   ========================================= */

.wreath-title {
  text-align: center;
  position: relative;
  /* margin-bottom: 50px; */
}

.wreath-title h2::before,
.wreath-title h2::after {
  content: '';
  width: 40px;
  /* Adjust based on actual image ratio */
  height: 60px;
  background-image: url('../img/vector.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.wreath-title h2::before {
  left: 0;

  /* Mirror for left side */
}

.wreath-title h2::after {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}


/* =========================================
   CTA Section (Exact Match)
   ========================================= */
.cta-icon-circle {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cta-icon-circle img {
  width: 40px;
  height: auto;
}

.cta-main-msg {
  font-size: 20px;
  font-weight: bold;
  color: #0A2A62;
  margin: 30px 0;
}

.cta-lead-text {
  font-size: 14px;
  color: #0A2A62;
  margin-bottom: 30px;
  font-weight: bold;
}

.mt-20 {
  margin-top: 20px;
}

/* CTA Button */
.btn-cta-blue {
  display: inline-block;
  background: linear-gradient(90deg, #304BA0, #407BDB);
  /* Blue gradient */
  color: #fff;
  padding: 18px 60px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(48, 75, 160, 0.3);
  transition: all 0.3s;
  position: relative;
}

.btn-cta-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(48, 75, 160, 0.4);
}

/* =========================================
   Company Overview Page
   ========================================= */

/* Company Info Table */
.company-info-section {
  padding: 80px 0;
  background-color: #fff;
}

.company-info-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.info-row {
  display: flex;
  border-bottom: 1px solid #E5E5E5;
  background-color: #fff;
}

.info-row {
  /* display: flex; */
  align-items: stretch;
  /* Stretch to equal height */
  border-bottom: none;
  /* Remove old style */
  border-radius: 5px;
  /* Rounded corners */
  /* padding: 5px 20px; */
  /* Adjusted padding */
  color: var(--primary-color);
}

.info-row:nth-child(odd) {
  background-color: #F3F9FF;
}

.info-row:nth-child(even) {
  background-color: #fff;
}

.info-label {
  width: 140px;
  padding: 9px 35px;
  font-weight: bold;
  /* color: #113677; */
  display: flex;
  align-items: center;
  border-right: 1px solid #E5E5E5;
  border-right: none;

  /* width: 200px; */
  flex-shrink: 0;
  /* display: flex;
  align-items: center; */
  /* justify-content: center; */
  /* font-weight: bold; */
  /* color: #113677; */
  font-size: 14px;
  position: relative;
  /* border-right: none; */
}

/* Vertical Separator */
.info-label::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  /* Not full height */
  width: 1px;
  background-color: var(--primary-color);
  /* Blue separator */
}

.info-value {
  padding: 20px;
  /* color: #333; */
  flex-grow: 1;

  padding: 15px 0 15px 30px;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  line-height: 1.6;
}

/* Staff Section */
.staff-intro-section {
  padding: 80px 0;
  background-color: #fff;
  /* or transparent */
}

.staff-intro-section .container {
  box-shadow: 4px 4px 12px 4px rgba(0, 0, 0, 0.05);
  width: 90%;
  border-radius: 5px;
}

.staff-intro-header {
  text-align: center;
  margin-bottom: 60px;
}

.staff-section-title {
  font-size: 30px;
  color: var(--primary-color);
  padding-top: 90px;
  margin-bottom: 20px;
  font-weight: bold;
}

.staff-lead-en {
  font-size: 16px;
  /* color: #009FE8; */
  font-weight: bold;
  font-family: Barlow;
  line-height: 1.8;
  font-style: italic;

  background: linear-gradient(90deg, #172d9d 0%, #00a9f2 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

}

/* Profile Layout */
.staff-profile {
  margin-bottom: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.profile-layout {
  display: flex;
  gap: 65px;
  align-items: flex-start;
}

.profile-img-col {
  flex: 1;
  max-width: 350px;
}

.img-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  display: block;
}

.role-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #103498 0%, #009BE5 100%);
  color: #fff;
  padding: 20px 10px 5px 0;
  font-weight: bold;
  font-family: sans-serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: 2px;
  text-align: right;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0% 100%);
  border-radius: 0;
}

.role-overlay.right {
  right: 0;
  /* Same side ? Image check: President Overlay is Right. VP is Right.*/
}

.profile-text-col {
  flex: 1.5;
  /* padding-top: 20px; */
  text-align: left;
}

.role-ja {
  font-size: 14px;
  font-weight: bold;
  color: #ADB5C2;
}

.profile-name {
  font-size: 16px;
  color: #01327A;
  font-weight: bold;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}

.name-en {
  font-size: 16px;
  color: #4177C8;
  font-style: italic;
  font-family: Barlow;
  font-weight: bold;
  margin-top: 5px;
}

.profile-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #01327A;
  margin-bottom: 30px;
}



.career-list {
  color: #4177C8;
  border-left: #124BB1 solid 1px;
  padding-left: 20px;
  font-size: 12px;
}

.career-item {
  display: block;
  margin-bottom: 12px;
  display: flex;
  margin-bottom: 15px;
}

.career-item:last-child {
  margin-bottom: 0;
}

/* Other Staff Grid */
.other-staff-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 90px;
}

.staff-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  box-shadow: 4px 4px 12px 4px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: left;
  border-radius: 5px;
}

/* Staff Card Top Layout */
.staff-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 15px;
  min-height: 120px;
  gap: 20px;
}

.staff-info-left {
  flex: 1;
  margin-bottom: 12px;
}

.staff-img-right img {
  width: 120px;
  height: 130px;
  object-fit: cover;
  border-radius: 6px;
}

.staff-role {
  font-size: 14px;
  color: #ADB5C2;
  margin-bottom: 10px;
  font-weight: bold;
}

.staff-name {
  font-size: 16px;
  color: #01327A;
  font-weight: bold;
  line-height: 1.4;
}

.staff-name .name-en {
  display: block;
}

.staff-card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #01327A;
}

/* HQ Info Section */
.hq-info-section {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  z-index: 1;
  overflow: hidden;
}

.hq-info-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 75%;
  background: linear-gradient(90deg, #172D9D 0%, #00A9F2 100%);
  clip-path: polygon(0 190px, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
}

.hq-container {
  display: flex;
  width: 100%;
  margin: 0 auto;
  gap: 40px;
  align-items: stretch;
  z-index: 2;
  padding: 0 40px;
}

.hq-img {
  flex: 2;
  position: relative;
  /* Anchor for absolute image */
  border-radius: 5px;
}

.hq-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hq-text {
  flex: 3;
  background: #fff;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 4px 4px 12px 4px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hq-name {
  font-size: 20px;
  font-weight: 900;
  /* color: #000; */
  /* Distinct from blue */
  margin-bottom: 0;
}

.hq-divider {
  height: 1px;
  width: 100%;
  background-color: var(--accent-color, #FFC426);
  /* Fallback yellow if var missing */
  margin: 15px 0 25px;
}

.hq-info-row {
  display: flex;
  margin-bottom: 1px;
  /* Tight spacing or gap handled by container? Image shows some spacing. */
  align-items: flex-start;
  font-size: 16px;
  font-weight: bold;
  /* color: #000; */
  line-height: 1.6;
}

.hq-info-row:last-child {
  margin-bottom: 0;
}

.hq-label {
  flex: 0 0 100px;
  /* Fixed width for alignment */
  font-weight: 900;
}

.hq-value {
  flex: 1;
}

.hq-value a {
  color: #4B79A1;
  /* Muted blue for link */
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

/* Mobile */
/* @media screen and (max-width: 767px) {
  .profile-layout {
    flex-direction: column;
  }

  .reverse-mobile {
    flex-direction: column-reverse;
  }

  .vp-profile .profile-layout {
    flex-direction: column-reverse;
  }

  .other-staff-grid {
    flex-direction: column;
  }

  .hq-container {
    flex-direction: column;
  }
} */

/* Mobile Adjustments */
/* @media screen and (max-width: 767px) {
  .info-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .info-label {
    width: 100%;
    justify-content: flex-start;
    padding: 0 0 10px 0;
    margin-bottom: 5px;
  }

  .info-label::after {
    display: none;
  }

  .info-value {
    padding: 0;
  }
} */

/* Contact Info Box */
.contact-info-box {
  background-color: #F5F9FF;
  padding: 15px 10%;
  /* margin-top: 20px; */
  margin: 20px auto 0 auto;
  font-size: 13px;
  border-radius: 5px;
  color: #01327A;
}

/* =========================================
   News Page Styles (Archive)
   ========================================= */

.news-list-archive {
  max-width: 1000px;
  margin: 0 auto;
}

.news-list-item {
  border-bottom: 1px dotted #ccc;
  padding: 25px 0;
}

.news-list-item:first-child {
  border-top: 1px dotted #ccc;
}

.news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 12px;
}

.news-date {
  font-size: 14px;
}

/* Category Pills */
.news-cat-pill {
  display: inline-block;
  background-color: #013F99;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 15px;
  border-radius: 50px;
  line-height: 1;
}

/* Specific pill colors if needed based on slug */
.news-cat-pill.media,
.news-cat-pill.media-coverage {
  background-color: #0066CC;
  /* Lighter blue for Media */
}

.news-cat-pill.press-release {
  background-color: #002B5B;
  /* Darker for Press Release */
}

/* Tags */
.news-tag {
  font-size: 11px;
  font-weight: bold;
  color: #555;
  margin-right: 5px;
}

.news-title {
  font-size: 16px;
  margin: 0;
}

.news-title a {
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s;
}

.news-title a:hover {
  opacity: 0.7;
}

/* Pagination */
.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  gap: 10px;
}

.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  /* Default border */
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s;
}

.pagination .page-numbers.current {
  background-color: #333;
  border: none;
  background: transparent;
  color: #999;
}

a.page-numbers {
  border: 1px solid #333;
}

a.page-numbers:hover {
  background-color: #eee;
}

/* Mobile */
/* @media screen and (max-width: 767px) {
  .news-meta {
    gap: 10px;
  }

  .news-date {
    width: 100%;
    margin-bottom: 5px;
  }
} */

/* =========================================
   Single Post Styles
   ========================================= */

/* Reuse news-cat-pill from News List */

.single-container-wrapper {
  /* If needed wrapper specific styles */
}

/* Override container/lead-section specific for single if needed */
.lead-section .container.single-main-area {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* Note: I added classes in PHP but didn't add single-main-area. 
   Existing PHP had inline style text-align: left.
   I should ensure .container behaves correctly or select strictly.
   Let's check parent structure. .lead-section .container
*/

.single .lead-section .container {
  max-width: 800px !important;
  text-align: left;
}

.single-header {
  margin-bottom: 40px;
}

.single-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.single-date {
  font-size: 14px;
}

.single-cats {
  display: flex;
  gap: 10px;
}

.single-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  color: #333;
}

.entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 60px;
}

.entry-content h2 {
  border-left: 3px solid var(--primary-color);
  padding-left: 10px;
  margin-bottom: 10px;
}

.entry-content h3 {
  border-bottom: 1px solid var(--primary-color);
  margin-bottom: 10px;
}

.entry-content h4 {
  border-left: 3px solid var(--text-color-sub);
  padding-left: 10px;
  margin-bottom: 10px;
}

.entry-content h5 {
  margin-bottom: 10px;
}

.entry-content h6 {
  margin-bottom: 10px;
}

.entry-content ul {
  list-style: disc;
  margin: 10px 0;
  padding-left: 20px;
}

.entry-content img {
  width: 100%;
}

/* Post Navigation */
.post-navigation {
  margin-top: 60px;
  border-top: 1px solid #eee;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
}

.nav-previous a,
.nav-next a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: opacity 0.3s;
}

.nav-previous a:hover,
.nav-next a:hover {
  opacity: 0.7;
}

/* Back to List */
.back-to-list {
  margin-top: 60px;
  text-align: center;
}

.back-to-list .btn-yellow {
  display: inline-block;
  width: auto;
  padding: 15px 50px;
  min-width: 200px;
}

/* Mobile Single */
/* @media screen and (max-width: 767px) {
  .single-title {
    font-size: 24px;
  }

  .single-meta {
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
} */

/* =========================================
   Success Stories Archive (Grid)
   ========================================= */

.success_stories-section {
  padding: 100px 0;
}

.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  width: 100%;
}

.success-story-item {
  width: 100%;
}

.success-story-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.success-story-link:hover {
  opacity: 0.8;
}

.success-story-link:hover .success-story-thumb img {
  transform: scale(1.1);
}

.success-story-thumb {
  width: 100%;
  height: 250px;
  background: #f0f0f0;
  overflow: hidden;
  margin-bottom: 20px;
}

.success-story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.success-story-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}

.success-story-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cat-name {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: bold;
}

/* @media screen and (max-width: 959px) {
  .success-stories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
} */

/* @media screen and (max-width: 767px) {
  .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .success-story-thumb {
    height: auto;
    aspect-ratio: 16/9;
  }
} */

/* =========================================
   Single Success Story
   ========================================= */
.single-success-section {
  padding: 60px 0;
}

.success-story-layout {
  display: flex;
  gap: 60px;
}

/* Main Content */
.success-story-main {
  flex: 1;
  min-width: 0;
}

.single-ss-header {
  /* margin-bottom: 30px; */
  /* border-bottom: 1px solid #ccc; */
  padding-bottom: 50px;
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.single-date {
  font-size: 14px;
  color: #888;
}

.single-ss-title {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}

.single-ss-thumbnail {
  margin-bottom: 40px;
}

.single-ss-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.ss-section {
  margin-bottom: 40px;
  text-align: left;
}

.ss-section-title {
  font-size: 20px;
  font-weight: bold;
  /* color: #004BB1; */
  border-left: 5px solid #025BDA;
  padding-left: 15px;
  margin-bottom: 15px;
  /* text-align: left; */
  /* line-height: 1.5; */
}

.ss-section-content {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

/* Sidebar */
.success-story-sidebar {
  width: 300px;
  flex-shrink: 0;
}

.sidebar-box {
  margin-bottom: 40px;
}

.sidebar-header {
  background: #01327A;
  color: #fff;
  padding: 10px 15px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 0;
}

.sidebar-header .en {
  font-size: 14px;
}

.sidebar-header .jp {
  font-size: 11px;
  font-weight: normal;
}

.sidebar-list {
  background: #fff;
}

.related-post-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px dotted #ccc;
  text-decoration: none;
  align-items: flex-start;
}

.related-post-item:last-child {
  border-bottom: none;
}

.related-thumb {
  width: 80px;
  flex-shrink: 0;
}

.related-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.related-title {
  font-size: 13px;
  line-height: 1.5;
  /* color: #333; */
  font-weight: bold;
  margin: 0;
  text-align: left;
}

.related-post-item:hover .related-title {
  opacity: 0.7;
  color: #004BB1;
}

/* 左側：項目名（Label） */
.info-label {
    width: 20%; /* 30%から20%に変更して幅を狭く */
    min-width: 160px; /* 最低幅も少し小さく */
    padding: 20px 20px; /* 余白を少し詰める */
    
    display: flex;
    align-items: center;
    justify-content: flex-end; /* 右寄せ */
    
    font-weight: bold;
    color: #003366;
    line-height: 1.3; /* 行間を少し狭く */
    text-align: right;
    
    border-right: 2px solid #b0c4de; /* 縦線 */
}

/* 右側：内容（Value） */
.info-value {
    width: 80%; /* 残りの幅（70%→80%） */
    padding: 20px 25px;
    
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 左寄せ */
    
    color: #0056b3;
    font-weight: 600;
    line-height: 1.6;
    text-align: left;
}

/* 左側：項目名（Label） */
.info-label {
    /* ...（既存のwidthなどの指定）... */
    
    border-right: 2px solid #b0c4de; /* これで線を出しているので */
    position: relative; /* 念のため */
}

/* ★ここを追加！ 既存のCSSで「|」が出されているのを打ち消します */
.info-label::after,
.info-label::before {
    content: none !important;
    display: none !important;
}

/* Mobile Responsive */
/* @media screen and (max-width: 959px) {
  .success-story-layout {
    flex-direction: column;
    gap: 40px;
  }

  .success-story-sidebar {
    width: 100%;
  }

  .related-post-item {
    border-bottom: 1px dotted #ccc;
  }
} */

/* 見出しのフォントを段落（メインフォント）と統一する */
.section-title {
  font-family: var(--font-main) !important;
  letter-spacing: 0;
}

/* --- スマホ時の特徴（feature）セクション調整 --- */
@media screen and (max-width: 768px) {
    
    /* 親要素（白いカード）の設定 */
    .feature-item {
        position: relative;
        overflow: hidden; /* 【重要】青いバナーがカードの外にはみ出すのを防ぐ */
        padding-bottom: 100px; /* テキストにバナーが被らないよう、下部に余白を確保 */
    }

    /* 青いバナー本体の調整 */
    .feature-banner {
        position: absolute;
        bottom: 0;
        right: -10px; /* 右端に寄せる（斜めのデザインに合わせて調整してください） */
        width: 85%; /* 幅をスマホ画面に合わせて縮小 */
        max-width: 250px; /* 大きくなりすぎないように上限を設定 */
        padding: 15px 15px 15px 35px; /* 左側の余白を少し多めにとって斜めデザインを維持 */
        box-sizing: border-box;
    }

    /* 「Assista」などの小さいテキスト */
    .feature-banner span {
        display: block;
        font-size: 12px;
        margin-bottom: 4px;
        line-height: 1;
    }

    /* 「Gets Things Done」などの大きいテキスト */
    .feature-banner strong {
        display: block;
        font-size: 18px; /* スマホでも改行されにくいサイズに縮小 */
        line-height: 1.2;
    }
}

/* --- スマホ表示（768px以下）の時だけ適用 --- */
@media screen and (max-width: 768px) {
    /* 1つ目の「Gets Things Done」だけ個別に文字を小さくする */
    .feature-item:nth-child(1) .feature-banner strong {
        font-size: 15px; /* スマホでのみこのサイズになる */
        letter-spacing: -0.5px;
    }
}