 /* General body and page wrapper styles */
 .about-container {
     /* background-color: #f0f2f5; */
     margin: 0;
     padding: 0;
     display: flex;
     justify-content: center;
     align-items: stretch;
     min-height: 100vh;
 }

 .page-wrapper {
     font-family: 'Roboto', sans-serif;
     color: #333;
     line-height: 1.6;
     width: 90%;
     max-width: 1000px;
     background-color: #fff;
     padding: 20px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     border-radius: 8px;
     margin: 20px 0;
     box-sizing: border-box;
     /* Ensures padding is included in the width */
 }

 /* Header styles */
 .header {
     text-align: center;
     margin-bottom: 20px;
 }

 .header h1 {
     font-size: 2.5rem;
     color: #1a237e;
     font-weight: 700;
 }

 .header h2 {
     font-size: 1.2rem;
     color: #555;
     font-weight: 400;
     margin-top: 5px;
 }

 /* Content sections */
 .content-section {
     display: flex;
     flex-direction: column;
     gap: 20px;
     margin-bottom: 40px;
 }

 .text-wrap-container {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     margin-bottom: 10px;
 }

 .text-wrap-container img {
     max-width: 100%;
     height: auto;
     border-radius: 8px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     margin-bottom: 20px;
     float: right;
 }

 .bigger {
     /* width: 28rem !important; */
 }

 .text-wrap-container p {
     margin: 0;
     overflow-wrap: normal;
 }



 @media (min-width: 768px) {
     .text-wrap-container.left-aligned {
         flex-direction: row;
     }

     .text-wrap-container.right-aligned {
         flex-direction: row-reverse;
     }

     .text-wrap-container img {
         width: 400px;
         flex-shrink: 0;
     }

     .text-wrap-container.left-aligned img {
         margin-right: 20px;
     }

     .text-wrap-container.right-aligned img {
         margin-left: 20px;
     }
 }

 /* Image positioning for the final section */
 .bottom-images {
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
     margin-top: 40px;
 }

 .bottom-images img {
     max-width: 100%;
     height: auto;
     border-radius: 8px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 }

 @media (min-width: 768px) {
     .bottom-images {
         flex-direction: row;
         align-items: flex-end;
     }

     .bottom-images img.left-img {
         width: 45%;
     }

     .bottom-images img.right-img {
         width: 50%;
     }
 }