<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> body {
     font-family: Arial, sans-serif;
     margin: 0;
     padding: 0;
     background-color: #fff;
 }

 .section {
     padding: 3rem 1rem;
     text-align: center;
 }

 .section h1 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }

 .section p {
     max-width: 800px;
     margin: 0 auto 1.5rem;
     font-size: 1.1rem;
     color: #333;
 }

 .section a {
     font-weight: bold;
     text-decoration: none;
 }

 .inclusive-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
     padding: 2rem;
 }

 .inclusive-cards .card {
     text-align: left;
     background: white;
     padding: 10px;
     box-shadow: 2px 2px 2px 2px #ccc;
 }

 .inclusive-cards .card img {
     width: 100%;
     height: 250px;
     border-radius: 8px;
 }

 .inclusive-cards .card h3 {
     margin-top: 1rem;
     border-left: 3px solid #2b4c5f;
     padding-left: 0.5rem;
 }

 .inclusive-cards .card p {
     color: #555;
     margin-top: 0.5rem;
 }
@media(max-width: 901px){
    .section{
        margin-top: 10% ;
    }
}
 @media (max-width: 768px) {
     .section h1 {
         font-size: 2rem;
     }

     .inclusive-cards .cards {
         padding: 1rem;
     }
 }

 /* Image Section */
 .image-section {
     text-align: center;
     background-color: #f7f8fa;
     padding: 2rem 1rem;
 }

 .image-section img {
     max-width: 100%;
     height: auto;
 }

 /* Text Content Section */
 .text-section {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 2rem;
     padding: 2rem;
     background-color: #f7f8fa;
 }

 .text-block {
     flex: 1 1 400px;
     max-width: 500px;
     border-left: 3px solid #2b4c5f;
     padding-left: 1rem;
 }

 .text-block p {
     margin-bottom: 0.5rem;
 }

 .text-block a {
     color: #2b4c5f;
     font-weight: bold;
     text-decoration: none;
 }

 /* Responsive Nav */
 @media (max-width: 768px) {

     .text-section {
         padding: 1rem;
     }
 }

 /* &lt;==========Job Opening==========&gt; */
 .job-opening {
     display: flex;
     flex-direction: column;
     align-items: center;
     margin: 2% auto;
     padding: 1rem;
     max-width: 100%;
 }

 .job-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
     width: 100%;
     max-width: 1200px;
     padding: 0 1rem;
 }

 .job-cards .card {
     background: #fff;
     padding: 1.5rem;
     border-radius: 10px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     transition: transform 0.2s ease;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .job-cards .card:hover {
     transform: translateY(-5px);
 }

 .job-cards .card h3 {
     margin-top: 0;
     color: #333;
     margin-bottom: 1rem;
     font-size: 1.25rem;
 }

 .job-cards .card p {
     margin: 0.5rem 0;
     color: #555;
     font-size: 0.95rem;
 }

 .job-cards .view-btn {
     margin-top: auto;
     padding: 0.6rem 1rem;
     background-color: #2b4c5f;
     color: white;
     text-decoration: none;
     border-radius: 5px;
     font-weight: bold;
     font-size: 0.95rem;
     text-align: center;
     width: fit-content;
     align-self: flex-start;
 }

 .job-cards .view-btn:hover {
     background-color: #89d9bc;
 }

 /* Extra Responsive Touches */
 @media (max-width: 768px) {
     .job-cards {
         gap: 1.5rem;
     }

     .job-cards .card {
         padding: 1.2rem;
     }

     .job-cards .card h3 {
         font-size: 1.1rem;
     }

     .job-cards .view-btn {
         font-size: 0.9rem;
     }
 }

 @media (max-width: 480px) {
     .job-opening {
         padding: 1rem 0.5rem;
     }

     .job-cards {
         grid-template-columns: 1fr;
         gap: 1.2rem;
     }

     .job-cards .card {
         padding: 1rem;
     }

     .job-cards .view-btn {
         width: 100%;
         text-align: center;
     }
 }</pre></body></html>