/* ============================================
   About Page Styles
============================================ */

/* ============================================
   CEO Section
============================================ */
.ceo-section {
  background-color: white;
}

.ceo-content {
  max-width: 800px;
  margin: 0 auto;
}

.ceo-name {
  font-size: 1rem;
  color: var(--color-text-light);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.ceo-name-value {
  font-size: 1.5rem;
  color: var(--color-text);
  font-weight: 700;
  margin-left: 0.5rem;
}

.ceo-message p {
  line-height: 2;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.ceo-message p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .ceo-content {
    max-width: 100%;
  }
}

/* ============================================
   About Info Section
============================================ */
.about-info-table-wrapper,
.company-info-table-wrapper {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-info-table,
.company-info-table {
  width: 100%;
  border-collapse: collapse;
}

.about-info-table th,
.about-info-table td,
.company-info-table th,
.company-info-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.about-info-table tr:last-child th,
.about-info-table tr:last-child td,
.company-info-table tr:last-child th,
.company-info-table tr:last-child td {
  border-bottom: none;
}

.about-info-table th,
.company-info-table th {
  width: 180px;
  background-color: var(--color-bg-light);
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.95rem;
}

.about-info-table td,
.company-info-table td {
  color: var(--color-text);
  line-height: 1.8;
}

.about-info-table td ul,
.company-info-table td ul {
  margin: 0;
  padding-left: 1.25rem;
}

.about-info-table td li,
.company-info-table td li {
  margin-bottom: 0.25rem;
}

.about-info-table td li:last-child,
.company-info-table td li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-info-table th,
  .about-info-table td,
  .company-info-table th,
  .company-info-table td {
    display: block;
    width: 100%;
    padding: 1rem 1.25rem;
  }

  .about-info-table th,
  .company-info-table th {
    padding-bottom: 0.5rem;
    border-bottom: none;
  }

  .about-info-table td,
  .company-info-table td {
    padding-top: 0;
  }

  .about-info-table tr,
  .company-info-table tr {
    border-bottom: 1px solid var(--color-border);
  }

  .about-info-table tr:last-child,
  .company-info-table tr:last-child {
    border-bottom: none;
  }
}

/* ============================================
   Philosophy Section
============================================ */
.philosophy-section {
  background-color: white;
}

.philosophy-content {
  text-align: center;
}

.philosophy-main {
  margin-bottom: var(--spacing-lg);
}

.philosophy-text {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.6;
}

.philosophy-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.philosophy-value {
  background-color: var(--color-bg-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.philosophy-value-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.3;
  margin-bottom: 0.5rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.philosophy-value-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.philosophy-value-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .philosophy-values {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .philosophy-value {
    padding: 1.5rem;
  }
}

/* ============================================
   Access Section (About Page)
============================================ */
.access-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.access-company-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.access-address {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.access-transport {
  list-style: none;
  padding: 0;
  margin: 0;
}

.access-transport li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.access-transport li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.access-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.access-map iframe {
  display: block;
}

@media (max-width: 768px) {
  .access-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .access-map iframe {
    height: 300px;
  }
}

/* ============================================
   CTA Section
============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
}

.cta-content {
  text-align: center;
  padding: var(--spacing-md) 0;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-outline {
  border-color: white;
  color: white;
}

.cta-section .btn-outline:hover {
  background-color: white;
  color: var(--color-primary);
}

.cta-section .btn-primary {
  background-color: white;
  color: var(--color-primary);
  border-color: white;
}

.cta-section .btn-primary:hover {
  background-color: var(--color-bg-light);
  border-color: var(--color-bg-light);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}
