/* ==================== COMPANY PAGE ==================== */

.company-page {
  padding-top: 80px;
  @media (max-width: 575.98px) {
    padding-top: 120px;
  }
  .section-title {
    margin-left: 0;
  }
}

/* Page Banner - same pattern as .news-page-banner */
.company-page-banner {
  background-color: var(--color-gray);
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
}

/* Company Info Section */
.company-info {
  max-width: 1070px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding-top: 57px;
  padding-bottom: 80px;
}

.company-info .section-title {
  color: var(--color-green);
  padding-bottom: 15px;
  margin-bottom: 20px;
  margin-left: 0;
  border-bottom: 1px solid #C3C3C3;
  text-transform: uppercase;
}

@media (max-width: 575.98px) {
  .company-info {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .company-info .section-title {
    margin-bottom: 20px;
  }
}

/* Company Detail Table */
.company-page .company-detail {
  max-width: 900px;
  margin: auto;
}

.company-page .company-item {
  display: flex;
  margin-bottom: 0;
}

.company-page .company-item .title {
  width: 140px;
  min-width: 140px;
  border-bottom: 1px solid var(--color-green);
  padding: 20px 0;
  padding-left: 10px;
  font-weight: 700;
  font-size: 14px;
}

.company-page .company-item .description {
  flex: 1;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
  padding-left: 50px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
}

.company-page .company-item--multiline .description {
  padding-top: 20px;
  padding-bottom: 20px;
}

.company-page .company-item--multiline .description p {
  margin: 0 0 15px 0;
  line-height: 1.8;
}

.company-page .company-item--multiline .description p:last-child {
  margin-bottom: 0;
}

/* Contact Link */
.contact-link {
  color: var(--color-green);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-link:hover {
  opacity: 0.7;
}

/* Business List */
.business-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.business-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 5px;
}

.business-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  font-size: 8px;
  line-height: 2.4;
}

.business-list li:last-child {
  margin-bottom: 0;
}

/* Partner Category Headers */
.partner-category {
  font-weight: 700;
  margin-top: 20px !important;
  margin-bottom: 5px !important;
}

@media (max-width: 575.98px) {
  .company-page .company-item {
    flex-direction: column;
  }

  .company-page .company-item .title {
    width: 100%;
    min-width: 100%;
    padding: 16px 0 10px 0;
    font-size: 14px;
  }

  .company-page .company-item .description {
    border-bottom: none;
    padding: 10px 0 20px 0;
    font-size: 13px;
  }

  .company-page .company-item--multiline .description {
    padding-top: 10px;
  }
}

/* About Us Section */
.company-about {
  max-width: 1070px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding-top: 57px;
  padding-bottom: 80px;
}

.company-about .section-title {
  color: var(--color-green);
  padding-bottom: 15px;
  margin-bottom: 100px;
  margin-left: 0;
  border-bottom: 1px solid #C3C3C3;
  text-transform: uppercase;
}

.company-about__content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.company-about__title {
  color: var(--color-green);
  font-size: 48px;
  font-weight: 900;
  margin: 0 0 20px 0;
}

.company-about__subtitle {
  color: var(--color-green);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.company-about__text {
  font-size: 16px;
  line-height: 2;
  color: var(--color-black);
  font-weight: 500;
  margin-bottom: 50px;
}

.company-about__text p {
  margin: 0;
}

@media (max-width: 575.98px) {
  .company-about {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .company-about .section-title {
    margin-bottom: 40px;
  }

  .company-about__title {
    font-size: 36px;
  }

  .company-about__subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .company-about__text {
    font-size: 13px;
  }
}

/* Back to TOP Button */
.back-to-top {
  max-width: 240px;
  width: 100%;
  height: 60px;
  margin: 100px auto 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-green);
  background-color: var(--color-green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--color-white);
  border-radius: 6px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

/* Company Page Header Override */
.company-page .header {
  background-color: var(--color-white);
}
