.about-section {
  padding: 80px 20px;
  background-color: #0d0d0d;
  color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #222;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 42px;
  font-weight: bold;
  color: #ffe600;
  text-align: center;
  margin-bottom: 40px;
  animation: fadeIn 1s ease-in-out;
}

.intro {
  font-size: 20px;
  text-align: center;
  color: #ccc;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.about-text {
  flex: 1;
  min-width: 300px;
  line-height: 1.8;
  font-size: 17px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 14px;
  border: 2px solid #444;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.07);
  transition: transform 0.3s ease-in-out;
}

.about-image img:hover {
  transform: scale(1.05);
}

.info-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.info-list li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #eee;
}

.info-list span {
  color: #ffdd00;
  font-weight: 600;
}

.quote, .final-quote {
  background: #1c1c1c;
  padding: 15px 20px;
  border-left: 4px solid #ff2d75;
  margin: 20px 0;
  font-style: italic;
  color: #d3d3d3;
}

.final-quote {
  text-align: right;
  font-size: 15px;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

#boss{
  color: #d3d3d3;
}
