/* About Section */
.about-section {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-primary); /* Dark background matching the screenshot */
}

@media (min-width: 992px) {
  .about-section {
    flex-direction: row;
    align-items: stretch;
  }
}

.about-image-col {
  flex: 1;
  min-height: 400px;
}

.about-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content-col {
  flex: 1.2;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
}

@media (min-width: 992px) {
  .about-content-col {
    padding: 6rem 4rem;
    justify-content: flex-start;
  }
}

.about-content-inner {
  max-width: 650px;
}

.about-features {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (min-width: 1200px) {
  .about-features {
    gap: 2rem;
    flex-wrap: nowrap;
  }
}

.about-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}

.about-feature-item i {
  font-size: 2rem;
  color: var(--accent-primary);
}

.about-feature-item span {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

.about-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
}
