 .bio-timeline-wrapper {
     background: linear-gradient(135deg, #FFF7ED 0%, rgba(255, 237, 212, 0.50) 50%, #FFF7ED 100%),
         url('/assets/img/bio-bg.png') center/cover no-repeat,
         lightgray;
     background-blend-mode: overlay;
     padding: 80px 0;
     font-family: 'Segoe UI', Arial, sans-serif;
     max-height: 900px;
     overflow-y: auto;
     scrollbar-width: thin;
     color: #1a1a1a;
 }

 .timeline-container {
     position: relative;
     max-width: 1200px;
     margin: 0 auto;
     padding: 40px 0;
 }

 .timeline-container::after {
     content: '';
     position: absolute;
     width: 3px;
     background-color: #e0d5ca;
     top: 0;
     bottom: 0;
     left: 50%;
     margin-left: -1.5px;
 }

 .timeline-item {
     padding: 10px 40px;
     position: relative;
     background-color: inherit;
     width: 50%;
 }

 .timeline-item::after {
     content: '';
     position: absolute;
     width: 16px;
     height: 16px;
     right: -8px;
     background-color: #f9f4ef;
     border: 3px solid #ed8a3e;
     top: 40px;
     border-radius: 50%;
     z-index: 1;
 }

 .left-item {
     left: 0;
     text-align: right;
 }

 .right-item {
     left: 50%;
     text-align: left;
 }

 .right-item::after {
     left: -8px;
 }

 .bio-card {
     padding: 30px;
     background-color: white;
     position: relative;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }

 .date-badge {
     display: inline-block;
     background-color: #ed8a3e;
     color: white;
     padding: 4px 15px;
     border-radius: 50px;
     font-size: 0.8rem;
     font-weight: 600;
     margin-bottom: 15px;
 }

 @media screen and (max-width: 768px) {
     .timeline-container::after {
         left: 31px;
     }

     .timeline-item {
         width: 100%;
         padding-left: 70px;
         padding-right: 25px;
         text-align: left;
     }

     .timeline-item::after {
         left: 23px;
     }

     .right-item {
         left: 0%;
     }
 }

 .custom-governance-section {
     background-color: #ffffff;
     font-family: 'Segoe UI', Arial, sans-serif;
 }

 .custom-info-card {
     background: #ffffff;
     border-radius: 20px;
     border: 1px solid #f0f0f0;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
 }

 .custom-icon-box {
     width: 45px;
     height: 45px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
 }

 .custom-list {
     list-style: none;
     padding-left: 0;
 }

 .custom-list li {
     position: relative;
     padding-left: 25px;
     margin-bottom: 15px;
     color: #555555;
     font-size: 1.025rem;
 }

 .custom-list li::before {
     content: "•";
     position: absolute;
     left: 0;
     font-size: 1.25rem;
     line-height: 1;
 }

 .bullet-orange li::before {
     color: #fd7e14;
 }

 .bullet-green li::before {
     color: #28a745;
 }

 .custom-image-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
 }

 .custom-grid-item {
     border-radius: 20px;
     overflow: hidden;
     width: 100%;
 }

 .custom-grid-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: top center;
     display: block;
 }

 .grid-wide {
     grid-column: 1 / span 2;
     height: 240px;
 }

 .grid-square {
     height: 200px;
 }

 @media (max-width: 768px) {
     .custom-image-grid {
         display: block;
     }

     .custom-grid-item {
         margin-bottom: 15px;
         height: 250px !important;
     }
 }

 .abt-bio-section {
     position: relative;
     padding: 80px 0;
     background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/img/banner-1.jpg');
     background-size: cover;
     background-position: center;
     color: #ffffff;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .abt-bio-title {
     font-size: 3.5rem;
     font-weight: 800;
     margin-bottom: 10px;
     position: relative;
     display: inline-block;
 }

 .abt-bio-underline {
     width: 80px;
     height: 4px;
     background-color: #689F38;
     margin-bottom: 40px;
 }

 .abt-bio-text {
     font-size: 1.1rem;
     line-height: 1.8;
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 30px;
     max-width: 950px;
 }

 .abt-signature-wrapper {
     margin-top: 50px;
     text-align: center;
 }

 .abt-signature-img {
     max-width: 250px;
     height: auto;
     filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(10deg);
 }

 @media (max-width: 768px) {
     .abt-bio-title {
         font-size: 2.5rem;
     }

     .abt-bio-section {
         padding: 60px 20px;
         text-align: left;
     }
 }