/* General Styles for About Pages */
.page-header {
    background-color: #0c223f;
    color: #fff;
    padding: 3rem 0;
    /* margin-bottom: 3rem; */
  }
  
  .page-header h1 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 600;
  }
  
  .breadcrumb {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .breadcrumb a:hover {
    color: #c8a035;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Vision and Mission Page */
  .vision-mission-section {
    padding: 3rem 0 5rem;
    background-color: var(--white);
  }
  
  .two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .column {
    flex: 1;
    min-width: 300px;
  }
  
  .vision-box,
  .mission-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .vision-box:hover,
  .mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }
  
  .vision-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #0c223f;
  }
  
  .mission-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #c8a035;
  }
  
  .vision-icon,
  .mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .vision-icon {
    background-color: rgba(12, 34, 63, 0.1);
    color: #0c223f;
  }
  
  .mission-icon {
    background-color: rgba(200, 160, 53, 0.1);
    color: #c8a035;
  }
  
  .vision-box h2,
  .mission-box h2 {
    color: #0c223f;
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
  
  .vision-box p,
  .mission-box p {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .mission-details {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 4rem;
  }
  
  .mission-details h3 {
    color: #0c223f;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
  }
  
  .mission-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
  }
  
  .mission-list li {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
  }
  
  .mission-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(200, 160, 53, 0.1);
    color: #c8a035;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .mission-item-content {
    flex: 1;
  }
  
  .mission-item-content h4 {
    color: #0c223f;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }
  
  .mission-item-content p {
    color: #495057;
    margin-bottom: 0;
    font-size: 1.05rem;
  }
  
  .values-section {
    padding: 2rem 0;
  }
  
  .values-section h3 {
    color: #0c223f;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
  }
  
  .values-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .value-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }
  
  .value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(12, 34, 63, 0.1);
    color: #0c223f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }
  
  .value-item:nth-child(odd) .value-icon {
    background-color: rgba(12, 34, 63, 0.1);
    color: #0c223f;
  }
  
  .value-item:nth-child(even) .value-icon {
    background-color: rgba(200, 160, 53, 0.1);
    color: #c8a035;
  }
  
  .value-item h4 {
    color: #0c223f;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
  }
  
  .value-item p {
    color: #495057;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* History Page */
  .history-section {
    padding: 5rem 1.5rem;
    background-color: var(--white);
  }
  
  .history-intro {
    margin-bottom: 4rem;
  }
  
  .lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--accent-color);
  }
  
  .image-container {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    text-align: center;
  }
  
  .timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
  }
  
  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 4px;
    background-color: var(--primary-color);
  }
  
  @media (min-width: 768px) {
    .timeline::before {
      left: 50%;
      transform: translateX(-50%);
    }
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 100px;
  }
  
  @media (min-width: 768px) {
    .timeline-item {
      padding-left: 0;
      width: 50%;
      margin-left: 0;
    }
  
    .timeline-item:nth-child(even) {
      margin-left: 50%;
    }
  
    .timeline-item:nth-child(odd) .timeline-content {
      padding-right: 3rem;
      text-align: right;
    }
  
    .timeline-item:nth-child(even) .timeline-content {
      padding-left: 3rem;
      text-align: left;
    }
  }
  
  .timeline-marker {
    position: absolute;
    top: 0;
    left: 50px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    z-index: 1;
  }
  
  @media (min-width: 768px) {
    .timeline-marker {
      left: 50%;
    }
  }
  
  .timeline-content {
    background-color: var(--light-bg);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .timeline-content h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
  }
  
  .timeline-image {
    margin-top: 1.5rem;
    border-radius: 0.375rem;
    overflow: hidden;
  }
  
  .timeline-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .history-conclusion {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
  }
  
  /* Committee Page */
  .committee-section {
    padding: 5rem 1.5rem;
    background-color: var(--white);
  }
  
  .committee-members {
    margin-top: 3rem;
  }
  
  .committee-member {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    background-color: var(--light-bg);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  @media (min-width: 768px) {
    .committee-member {
      flex-direction: row;
    }
  }
  
  .member-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  @media (min-width: 768px) {
    .member-image {
      width: 30%;
      margin: 0;
    }
  }
  
  .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .member-info {
    padding: 1.5rem;
    flex: 1;
  }
  
  .member-info h3 {
    margin-bottom: 0.5rem;
  }
  
  .member-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .committee-functions {
    margin-top: 4rem;
  }
  
  .function-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
  }
  
  .function-list li {
    display: flex;
    margin-bottom: 1.5rem;
  }
  
  .function-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
  }
  
  .function-content h4 {
    margin-bottom: 0.5rem;
  }
  
  /* Principal Page */
  .principal-section {
    padding: 5rem 1.5rem;
    background-color: var(--white);
  }
  
  .principal-message {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
  }
  
  @media (min-width: 768px) {
    .principal-message {
      flex-direction: row;
      gap: 3rem;
    }
  }
  
  .principal-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem;
  }
  
  @media (min-width: 768px) {
    .principal-image {
      width: 30%;
      margin: 0;
    }
  }
  
  .principal-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .message-content {
    flex: 1;
  }
  
  .message-header {
    margin-bottom: 2rem;
  }
  
  .principal-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
  }
  
  .principal-credentials {
    color: var(--gray-600);
    font-size: 0.875rem;
  }
  
  .message-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }
  
  .signature {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-top: 2rem;
  }
  
  .principal-philosophy {
    margin-bottom: 4rem;
  }
  
  .philosophy-item {
    background-color: var(--light-bg);
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .philosophy-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
  }
  
  .philosophy-item h4 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .contact-principal {
    background-color: var(--light-bg);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .contact-info {
    /*max-width: 500px;*/
    /*margin: 1.5rem auto;*/
  }
  
  .contact-info p {
    margin-bottom: 0.5rem;
  }
  
  /* Leadership Team Page */
  .leadership-section {
    padding: 5rem 1.5rem;
    background-color: var(--white);
  }
  
  .leadership-team {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .leadership-team {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .leader-card {
    background-color: var(--light-bg);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .leader-image {
    height: 0;
    padding-bottom: 75%;
    position: relative;
  }
  
  .leader-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
    object-fit: contain;
    margin-top: 15px;
  }
  
  .leader-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  
  .leader-info h3 {
    margin-bottom: 0.5rem;
  }
  
  .leader-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .leader-email {
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
  
  .leader-bio {
    flex: 1;
  }
  
  .leadership-structure {
    margin-top: 4rem;
  }
  
  .org-chart {
    margin-top: 2rem;
  }
  
  .org-level {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  
  .org-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 0.375rem;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .org-box h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  
  .org-box p {
    margin-bottom: 0;
    font-size: 0.875rem;
    opacity: 0.9;
  }
  
  .leadership-approach {
    margin-top: 4rem;
  }
  
  .approach-item {
    background-color: var(--light-bg);
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .approach-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
  }
  
  .approach-item h4 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  /* Student Leadership Page */
  .student-leadership-section {
    padding: 5rem 1.5rem;
    background-color: var(--white);
  }
  
  .structure-diagram {
    margin-top: 2rem;
  }
  
  .structure-level {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  
  .structure-box {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 0.375rem;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .structure-box h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  
  .structure-box p {
    margin-bottom: 0;
    font-size: 0.875rem;
    opacity: 0.9;
  }
  
  .current-leaders {
    margin-top: 4rem;
  }
  
  .leaders-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  @media (min-width: 576px) {
    .leaders-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 992px) {
    .leaders-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .leader-class {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .leadership-benefits {
    margin-top: 4rem;
  }
  
  .benefit-item {
    background-color: var(--light-bg);
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
  }
  
  .benefit-item h4 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .selection-process {
    margin-top: 4rem;
  }
  
  .process-steps {
    margin-top: 2rem;
  }
  
  .process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
  }
  
  .step-content h4 {
    margin-bottom: 0.5rem;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .page-header {
      padding: 2rem 0;
    }
  
    .page-header h1 {
      font-size: 2rem;
    }
  
    .two-column {
      flex-direction: column;
    }
  
    .mission-details {
      padding: 2rem;
    }
  
    .values-grid {
      grid-template-columns: 1fr;
    }
  }
  