.about_us_wrap {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 30px;
}
.about_us_wrap table {
    margin: 40px auto 0;
    text-align: justify;
}

/* ===== ACCORDION ===== */
#company-accordion {
  max-width: 1260px;
  margin: 30px auto;
  font-family: Arial, sans-serif;
}

.acc-item {
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 6px;
  overflow: hidden;
}

.acc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  transition: background 0.2s;
  user-select: none;
}

.acc-head:hover { background: #e8e8e8; }

.acc-item.open .acc-head {
  background: #d94f00;
  color: #fff;
}

.acc-arrow {
  font-size: 13px;
  transition: transform 0.3s;
  display: inline-block;
}

.acc-item.open .acc-arrow { transform: rotate(180deg); }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: #fff;
  padding: 0 18px;
  box-sizing: border-box;
  color: #444;
  line-height: 1.7;
  font-size: 14px;
}

.acc-item.open .acc-body {
  max-height: 600px;
  padding: 16px 18px;
}

.acc-body a { color: #d94f00; }
.acc-body p { margin: 0 0 8px 0; }

@media screen and (max-width: 768px) {
    .about_us_wrap table { width: 87vw; }
}
@media screen and (max-width: 480px) {
    .about_us_wrap table { width: 84vw; }
}
