.about-pro {
  background: linear-gradient(100deg, #f8fafc 60%, #e0e9f7 100%);
  border-radius: 2rem;
  margin: 36px 0 36px 0;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 32px rgba(10,65,170,0.07);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.about-image {
  position: relative;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 280px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 1.3rem;
  box-shadow: 0 4px 24px #0a41aa13;
  object-fit: cover;
}

.badge-since {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #0a41aa;
  color: #fff;
  padding: 0.35em 1.1em;
  border-radius: 16px;
  font-size: 1rem;
  font-family: 'Merriweather', serif;
  letter-spacing: 1.2px;
  box-shadow: 0 1px 6px #0a41aa33;
}

.about-text {
  flex: 2 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.3rem 0;
}

.values-list li {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  color: #234;
  margin-bottom: 0.5rem;
  gap: 0.6rem;
}

.values-list i {
  color: #0a41aa;
  font-size: 1.12rem;
}

.btn-primary {
  background: #0a41aa;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 0.68rem 2.1rem;
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px #0a41aa22;
  transition: background 0.19s, box-shadow 0.19s;
  display: inline-block;
  margin-top: 0.6rem;
}

.btn-primary:hover {
  background: #2765c7;
  box-shadow: 0 3px 16px #0a41aa25;
}

@media (max-width: 800px) {
  .about-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .about-image {
    min-width: 180px;
    max-width: 95vw;
  }
  .about-text { gap: 0.8rem; }
}
