 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }


 .page-banner {
     background: linear-gradient(rgba(0, 40, 85, 0.7), rgba(0, 40, 85, 0.7)), url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?w=1600&q=80');
     background-size: cover;
     background-position: center;
     padding: 80px 0;
     color: white;
     text-align: center;
 }

 .page-banner h1 {
     font-size: 48px;
     font-weight: bold;
     margin-bottom: 15px;
 }

 .case-study-section {
     padding: 80px 0;
 }

 .page-title {
     color: #002855;
     font-size: 32px;
     font-weight: bold;
     margin-bottom: 50px;
 }

 .case-study-card {
     background: white;
     padding: 40px;
     margin-bottom: 60px;
     border-left: 4px solid #5bc0de;
 }

 .case-number {
     color: #002855;
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 20px;
 }

 .case-title {
     color: #002855;
     font-size: 24px;
     font-weight: bold;
     margin-bottom: 20px;
 }

 .case-content {
     display: flex;
     gap: 30px;
     margin-bottom: 20px;
 }

 .case-text {
     flex: 1;
 }

 .case-text p {
     color: #666;
     font-size: 14px;
     line-height: 1.8;
     margin-bottom: 15px;
     text-align: justify;
 }

 .case-image {
     flex-shrink: 0;
     width: 350px;
 }

 .case-image img {
     width: 100%;
     height: auto;
     border-radius: 8px;
 }

 .case-image-caption {
     font-size: 12px;
     color: #666;
     font-style: italic;
     margin-top: 8px;
 }

 .highlighted-text {
     background-color: #f0f8ff;
     padding: 20px;
     border-left: 3px solid #5bc0de;
     margin: 20px 0;
     font-size: 14px;
     line-height: 1.8;
 }

 .team-image {
     width: 100%;
     margin-top: 30px;
     border-radius: 8px;
 }

 .footer-top {
     background-color: #f8f9fa;
 }

 .schedule-card {
     background: linear-gradient(135deg, #002855 0%, #003d7a 100%) !important;
     position: relative;
     overflow: hidden;
 }

 .schedule-bg-icon {
     position: absolute;
     right: -30px;
     top: 50%;
     transform: translateY(-50%);
     font-size: 250px;
     color: rgba(255, 255, 255, 0.05);
 }

 .schedule-item {
     position: relative;
     z-index: 1;
     font-size: 14px;
 }


 @media (max-width: 768px) {
     .case-content {
         flex-direction: column;
     }

     .case-image {
         width: 100%;
     }
 }