@charset "UTF-8";
.mission {
  padding: 80px 0;
  background: #e8f5e9;
}
.mission__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .mission__container {
    padding: 20px 40px;
  }
}
.mission__title {
  font-size: 36px;
  font-weight: 700;
  color: #006637;
  margin-bottom: 40px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .mission__title {
    font-size: 48px;
  }
}
.mission__content {
  max-width: 900px;
  margin: 0 auto;
}
.mission__content p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #333333;
}
.mission__highlight {
  margin-top: 32px;
  font-weight: 600;
  color: #2d5a3d;
}

.ceo-message {
  padding: 60px 0;
}
.ceo-message__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .ceo-message__container {
    padding: 20px 40px;
  }
}
.ceo-message__text {
  margin-bottom: 40px;
}
.ceo-message__lead {
  font-size: 18px;
  font-weight: 700;
  color: #006637;
  margin-bottom: 20px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .ceo-message__lead {
    font-size: 20px;
  }
}
.ceo-message__subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .ceo-message__subtitle {
    font-size: 18px;
  }
}
.ceo-message__profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 768px) {
  .ceo-message__profile {
    grid-template-columns: 300px 1fr;
  }
}
.ceo-message__image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.ceo-message__image img {
  width: 100%;
  height: auto;
}
.ceo-message__bio p {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
.ceo-message__signature {
  margin-top: 32px;
  font-weight: 600;
  text-align: right;
}

.accordion {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}
.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: linear-gradient(90deg, #006637 0%, rgb(0, 153, 82.5) 100%);
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  transition: background 0.3s;
}
.accordion__header:hover {
  background: linear-gradient(90deg, rgb(0, 76.5, 41.25) 0%, #006637 100%);
}
.accordion__title {
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .accordion__title {
    font-size: 20px;
  }
}
.accordion__icon {
  width: 24px;
  height: 24px;
  position: relative;
}
.accordion__icon::before, .accordion__icon::after {
  content: "";
  position: absolute;
  background: #ffffff;
  transition: transform 0.3s;
}
.accordion__icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accordion__icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accordion[open] .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.accordion__content {
  padding: 40px 24px;
}

.nav-cards {
  padding: 60px 0;
  background: #ffffff;
}
.nav-cards__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .nav-cards__container {
    padding: 20px 40px;
  }
}
.nav-cards__title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #333333;
}
@media (min-width: 768px) {
  .nav-cards__title {
    font-size: 24px;
  }
}
.nav-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .nav-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #ffffff;
  transition: all 0.3s;
}
.card:hover {
  border-color: #006637;
  box-shadow: 0 4px 12px rgba(26, 122, 78, 0.1);
  transform: translateY(-2px);
}
.card__title {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
}
.card__arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #006637;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.card__arrow::after {
  content: "→";
}

.profile-section {
  padding: 60px 0;
  background: #f5f5f5;
}
.profile-section .profile-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 900px;
}
@media (min-width: 768px) {
  .profile-section .profile-container {
    padding: 20px 40px;
  }
}
.profile-section .profile-header {
  background: linear-gradient(90deg, #2d5a3d 0%, #006637 100%);
  padding: 20px 30px;
  margin-bottom: 0;
  border-radius: 8px 8px 0 0;
  position: relative;
}
.profile-section .profile-header::before, .profile-section .profile-header::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.profile-section .profile-header::before {
  left: 20px;
}
.profile-section .profile-header::after {
  right: 20px;
}
.profile-section .profile-header h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  text-align: left;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .profile-section .profile-header h2 {
    font-size: 28px;
  }
}
.profile-section .profile-table {
  width: 100%;
  background: #ffffff;
  border-collapse: collapse;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.profile-section .profile-table tr {
  border-bottom: 1px solid #e0e0e0;
}
.profile-section .profile-table tr:last-child {
  border-bottom: none;
}
.profile-section .profile-table th {
  background: #e8f5e9;
  color: #2d5a3d;
  font-weight: 700;
  text-align: left;
  padding: 20px 30px;
  width: 200px;
  vertical-align: top;
  font-size: 16px;
}
@media (max-width: 768px) {
  .profile-section .profile-table th {
    display: block;
    width: 100%;
    padding: 15px 20px 10px;
  }
}
.profile-section .profile-table td {
  padding: 20px 30px;
  color: #333333;
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .profile-section .profile-table td {
    display: block;
    width: 100%;
    padding: 10px 20px 20px;
  }
}
.profile-section .business-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.profile-section .business-item p {
  margin: 0 0 8px 0;
  line-height: 1.6;
}
.profile-section .business-item .business-title {
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
}
.profile-section .business-item .business-subtitle {
  font-size: 14px;
  color: #666666;
  margin: 8px 0 4px 0;
}

.history-section {
  padding: 60px 0;
  background: #f5f5f5;
}
.history-section .history-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 900px;
}
@media (min-width: 768px) {
  .history-section .history-container {
    padding: 20px 40px;
  }
}
.history-section .history-table {
  width: 100%;
  background: #ffffff;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.history-section .history-table tr {
  border-bottom: 1px solid #e0e0e0;
}
.history-section .history-table tr:last-child {
  border-bottom: none;
}
.history-section .history-table tr.milestone th {
  position: relative;
}
.history-section .history-table tr.milestone th::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #006637;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #006637;
}
.history-section .history-table th {
  background: #e8f5e9;
  color: #2d5a3d;
  font-weight: 700;
  text-align: left;
  padding: 20px 30px;
  width: 180px;
  vertical-align: top;
  font-size: 16px;
}
@media (max-width: 768px) {
  .history-section .history-table th {
    display: block;
    width: 100%;
    padding: 15px 20px 10px;
  }
}
.history-section .history-table td {
  padding: 20px 30px;
  color: #333333;
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .history-section .history-table td {
    display: block;
    width: 100%;
    padding: 10px 20px 20px;
  }
}
.history-section .history-table td ul {
  margin: 10px 0 0 0;
  padding-left: 20px;
}
.history-section .history-table td ul li {
  margin-bottom: 6px;
  line-height: 1.6;
}
.history-section .history-table td ul li:last-child {
  margin-bottom: 0;
}
.history-section .history-table td .milestone-title,
.history-section .history-table td .service-title {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Executives Page Styles */
.main {
  margin-top: 60px;
}

.exectives-date {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 40px;
  text-align: right;
  color: #333333;
  font-size: 14px;
}

.exectives-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 900px;
  width: calc(100% - 80px);
  background: linear-gradient(90deg, #2d5a3d 0%, rgba(0, 102, 55, 0.7) 50%, rgba(232, 245, 233, 0.3) 100%);
  padding: 25px 80px;
  margin-bottom: 40px;
  text-align: left;
  border-radius: 12px;
  position: relative;
  border-left: 5px solid #e67e3c;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .exectives-header {
    padding: 20px 40px;
  }
}
.exectives-header::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  top: 30%;
  left: 25px;
}
.exectives-header::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  bottom: 30%;
  left: 25px;
}
@media (max-width: 768px) {
  .exectives-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 25px 30px;
    width: calc(100% - 40px);
  }
}
.exectives-header__title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  padding-left: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
}
.exectives-header__title::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  top: 30%;
  right: -60px;
}
.exectives-header__title::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  bottom: 30%;
  right: -60px;
}
@media (min-width: 768px) {
  .exectives-header__title {
    font-size: 28px;
  }
}
.exectives-header__date {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
  opacity: 0.95;
}

.exectives-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .exectives-list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.exective-card {
  padding: 40px 30px;
  position: relative;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid #006637;
}
.exective-card::before, .exective-card::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #006637;
  border-radius: 50%;
}
.exective-card::before {
  bottom: 0;
  left: -10px;
  transform: translate(50%, 50%);
}
.exective-card::after {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}
.exective-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.exective-card__name {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  margin: 0;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .exective-card__name {
    font-size: 26px;
  }
}
.exective-card__name-en {
  font-size: 16px;
  color: #cccccc;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.exective-card__position {
  font-size: 12px;
  font-weight: bold;
  color: #333333;
  margin: 0;
  white-space: nowrap;
  background: #fff;
  padding: 5px 10px;
  border-radius: 43px;
}
.exective-card:last-child:nth-child(odd) {
  grid-column: 1/-1;
  max-width: calc(50% - 30px);
}
@media (max-width: 768px) {
  .exective-card:last-child:nth-child(odd) {
    grid-column: 1;
    max-width: 100%;
  }
}
