/* ===================================
   ABOUT SECTION STYLES
   =================================== */

.about-section {
  padding: 5rem 0;
  background: #fff;
}

.about-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-section .section-header .description {
  color: var(--brand-muted);
  max-width: 640px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

.about-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.25rem;
  padding: 2.5rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fafbfc;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  border-color: rgba(99, 102, 241, 0.15);
}

.about-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.about-icon.marketing {
  background: rgba(99, 102, 241, 0.12);
  color: var(--brand-primary);
}

.about-icon.it {
  background: rgba(6, 182, 212, 0.12);
  color: var(--brand-secondary);
}

.about-card h4 {
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--brand-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .about-section {
    padding: 3rem 0;
  }
  
  .about-card {
    padding: 2rem;
  }
}
