.about-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 20px 48px;
}

.about-page .blog-breadcrumb {
  font-size: 13px;
  color: #5a6678;
  margin-bottom: 18px;
}

.about-page .blog-breadcrumb a {
  color: #0066c0;
  text-decoration: none;
}

.about-page .blog-breadcrumb a:hover {
  text-decoration: underline;
}

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

.about-section h1 {
  font-size: 28px;
  font-weight: 700;
  color: rgb(33, 33, 33);
  margin-bottom: 16px;
}

.about-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: rgb(33, 33, 33);
  margin-bottom: 12px;
  border-bottom: 2px solid #e77600;
  padding-bottom: 8px;
}

.about-section h3 {
  font-size: 17px;
  font-weight: 500;
  color: rgb(50, 50, 50);
  margin: 20px 0 8px;
}

.about-section p {
  font-size: 15px;
  line-height: 1.7;
  color: rgb(68, 68, 68);
  margin-bottom: 12px;
}

.about-section ul {
  margin: 12px 0 16px 20px;
  padding: 0;
}

.about-section ul li {
  font-size: 15px;
  line-height: 1.7;
  color: rgb(68, 68, 68);
  margin-bottom: 8px;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.service-card {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: rgb(33, 33, 33);
  margin: 0 0 8px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Technology section highlight */
.technology-section {
  background: #fafbff;
  border: 1px solid #e8ecf4;
  border-radius: 8px;
  padding: 24px;
}

/* Contact details */
.contact-details p {
  margin-bottom: 6px;
}

.contact-details a {
  color: #0066c0;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.about-text-link {
  color: #0066c0;
  font-weight: 500;
  text-decoration: none;
}

.about-text-link:hover {
  text-decoration: underline;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.contact-channel {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f9f9f9;
  padding: 18px;
}

.contact-channel h3 {
  margin-top: 0;
}

.contact-channel p:last-child {
  margin-bottom: 0;
}

.rfq-list {
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 640px) {
  .about-page {
    padding: 16px 12px 32px;
  }

  .services-grid,
  .contact-channel-grid {
    grid-template-columns: 1fr;
  }

  .about-section h1 {
    font-size: 22px;
  }

  .about-section h2 {
    font-size: 18px;
  }
}
