.about-ceo-container {
  display: flex;
  max-width: auto;
  margin: 0 auto;
  padding: 80px 20px;
  background-color: #f9f9f9;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.about-ceo-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-ceo-image {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-ceo-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.about-ceo-content {
  flex: 1;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-ceo-title {
  font-size: 36px;
  font-weight: 700;
  color: #0099ff;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: about-ceo-fade-in 0.8s ease forwards;
}

.about-ceo-greeting {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #000000;
  opacity: 0;
  transform: translateY(20px);
  animation: about-ceo-fade-in 0.8s ease forwards 0.2s;
}

.about-ceo-paragraph {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #666666;
  opacity: 0;
  transform: translateY(20px);
  animation: about-ceo-fade-in 0.8s ease forwards 0.4s;
}

.about-ceo-highlight {
  font-size: 18px;
  font-weight: 600;
  color: #0099ff;
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
  animation: about-ceo-fade-in 0.8s ease forwards 0.6s;
}

.about-ceo-signature {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  animation: about-ceo-fade-in 0.8s ease forwards 0.8s;
}

.about-ceo-name {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

.about-ceo-position {
  font-size: 16px;
  color: #666666;
  margin-top: 5px;
}

@keyframes about-ceo-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .about-ceo-container {
    flex-direction: column;
    padding: 30px 15px;
  }
  
  .about-ceo-image-container {
    margin-bottom: 30px;
  }
  
  .about-ceo-content {
    padding: 0;
  }
  
  .about-ceo-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .about-ceo-container {
    padding: 20px 10px;
  }
  
  .about-ceo-title {
    font-size: 28px;
  }
  
  .about-ceo-greeting {
    font-size: 16px;
  }
  
  .about-ceo-paragraph {
    font-size: 14px;
  }
  
  .about-ceo-highlight {
    font-size: 16px;
  }
  
  .about-ceo-name {
    font-size: 18px;
  }
  
  .about-ceo-position {
    font-size: 14px;
  }
}