/* Principal Message Page Styles */
.principal-message-section {
    padding: 60px 0;
    background-color: #fff;
  }
  
  .principal-image-container {
    position: relative;
    margin-bottom: 30px;
  }
  
  .principal-image-container img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .principal-image-container img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .principal-info {
    margin-top: 20px;
    text-align: center;
  }
  
  .principal-name {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
  }
  
  .principal-designation {
    font-size: 16px;
    color: #666;
    font-style: italic;
  }
  
  .principal-message-content {
    padding: 0 15px;
  }
  
  .section-title {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
  }
  
  .section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #f39c12;
  }
  
  .message-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
  }
  
  .message-content p {
    margin-bottom: 20px;
  }
  
  .signature {
    margin-top: 30px;
    font-style: italic;
  }
  
  .cta-box {
    background-color: #f8f9fa;
    border-left: 4px solid #f39c12;
    padding: 25px;
    margin-top: 40px;
    border-radius: 5px;
  }
  
  .cta-box h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .cta-box p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  /* Responsive styles */
  @media (max-width: 991px) {
    .principal-image-container {
      text-align: center;
      margin-bottom: 30px;
    }
  
    .principal-image-container img {
      max-width: 250px;
    }
  
    .section-title {
      font-size: 28px;
    }
  }
  
  @media (max-width: 767px) {
    .principal-message-section {
      padding: 40px 0;
    }
  
    .section-title {
      font-size: 24px;
    }
  
    .message-content {
      font-size: 15px;
    }
  }
  