.founder-profile {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  margin: 40px 0;
}

.profile-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 0;
  min-height: 600px;
}

.profile-left {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text-dark);
  padding: 40px 0;
}

.profile-image {
  padding: 20px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgb(225, 225, 225);
}

.profile-image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
}

.profile-info {
  padding: 0 20px;
  width: 100%;
}

.profile-info h4 {
  border-bottom: 1px solid rgb(225, 225, 225);
  border-left: 1px solid rgb(225, 225, 225);
  border-right: 1px solid rgb(225, 225, 225);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 8px 8px 12px 8px;
  font-size: 20px;
  font-weight: 600;
}

.profile-title {
  font-size: 16;
  font-weight: 400;
  opacity: 0.9;
}

.social-links {
  display: flex;
  margin: 20px 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--primary-dark);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
}

.profile-details {
  width: 100%;
  text-align: left;
  padding: 0 20px;
}

.detail-item {
  list-style: none;
  padding: 2px 8px 2px 8px;
  border-bottom: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  border-top: 5px solid #fff;
  border-left: 2px solid var(--primary-color);
  border-bottom-left-radius: 10px;
}

.detail-item:first-child {
  border-top: 1px solid #e1e1e1;
  border-top-right-radius: 10px;
}

.detail-item:last-child {
  border-bottom-right-radius: 10px;
}

.detail-label {
  font-weight: 700;
  min-width: 80px;
  font-size: 16px;
  color: var(--primary-color);
}

.detail-value {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
}

.profile-right {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bio-section {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  border-left: 4px solid var(--primary-color);
  border-top: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bio-title {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bio-title i {
  font-size: 1.2rem;
}

.bio-text {
  color: #555;
  line-height: 1.8;
  text-align: justify;
  font-size: 1rem;
}

.highlight {
  background: linear-gradient(120deg, var(--primary-color) 0%, #2a7bc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile-content {
    grid-template-columns: 1fr;
  }

  .profile-info {
    padding: 0px;
  }
  .profile-left {
    padding: 20px 15px;
  }

  .profile-right {
    padding: 20px 15px;
  }

  .profile-details {
    padding: 0;
  }

  .bio-title {
    font-size: 1.2rem;
  }

  .bio-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .bio-section {
    padding: 20px;
  }

  .detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
