/* ===================================
   Pages - About
   =================================== */

.office-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  margin-bottom: 60px;
}

.office-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.office-table {
  width: 100%;
  border-collapse: collapse;
}

.office-table th {
  width: 30%;
  font-weight: 600;
  color: var(--primary-dark);
  padding: 15px;
  background: var(--bg-light);
}

.office-table td {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
}

.about-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.philosophy-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.philosophy-card-image {
  height: 200px;
  overflow: hidden;
}

.philosophy-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-card-content {
  padding: 30px;
}

.philosophy-card-content h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.philosophy-card-content p {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.8;
}

.about-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}

.about-services-grid li {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.about-services-grid li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

@media (max-width: 768px) {

  .office-info,
  .about-philosophy-grid,
  .about-services-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-card-content {
    padding: 20px;
  }
}