.ceo-message-section {
  padding: 60px 0;
  background: #f5f5f5;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-wrapper {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 21/9;  
  background: #000;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.youtube-video {
  width: 100%;
  height: 100%;
  border: none;
}

.video-title {
  text-align: center;
  color: #333;
  font-size: 1.8rem;
  margin: 20px 0 40px;
  font-weight: 500;
  position: relative;
}

.video-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #c00;
  margin: 15px auto;
}

.executive-info {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.executive-name {
  color: #222;
  font-size: 2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.designation {
  color: #c00;
  font-size: 1.2rem;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.executive-quote p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  position: relative;
  padding: 20px 0;
  margin: 0;
}

@media (max-width: 768px) {
  .video-wrapper {
    aspect-ratio: 16/9; 
  }
  
  .executive-name {
    font-size: 1.8rem;
  }
  
  .video-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .ceo-message-section {
    padding: 40px 0;
  }
  
  .executive-info {
    padding: 20px;
  }
}