 body {
     padding-top: 100px;
     background-color: #f9f9f9;
 }

 @media (min-width: 768px) {
     .navbar-nav>li>a {
         font-size: 16px !important;
         font-weight: bold !important;
         padding-left: 15px !important;
         padding-right: 15px !important;
         padding-top: 30px !important;
         padding-bottom: 30px !important;
     }

     .logo,
     .logo-lnk img {
         max-width: 200px !important;
         width: auto !important;
     }
 }

 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 9999;
     background: #fff;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .info-section {
     padding: 60px 0;
     border-bottom: 1px solid #e1e1e1;
     background: #fff;
 }

 .info-section:nth-child(even) {
     background-color: #f4f8fb;
 }

 .company-logo-container {
     display: flex;
     align-items: center;
     justify-content: center;
     height: 100%;
     min-height: 200px;
 }

 .company-logo {
     max-width: 80%;
     max-height: 180px;
     transition: transform 0.3s;
 }

 .company-logo:hover {
     transform: scale(1.05);
 }

 .company-title {
     color: #005eb8;
     font-weight: 800;
     font-size: 28px;
     margin-bottom: 20px;
     text-transform: uppercase;
 }

 .company-desc {
     font-size: 16px;
     color: #555;
     line-height: 1.6;
     text-align: justify;
 }

 .company-list {
     margin-top: 15px;
     padding-left: 20px;
 }

 .company-list li {
     margin-bottom: 10px;
     color: #444;
     font-size: 15px;
 }

 .objectives-box {
     background-color: #005eb8;
     color: white;
     padding: 40px;
     margin: 50px 0;
     border-radius: 5px;
     text-align: center;
 }

 .obj-title {
     font-size: 24px;
     font-weight: bold;
     margin-bottom: 20px;
     border-bottom: 2px solid white;
     display: inline-block;
     padding-bottom: 5px;
 }