       .section-header {
         display: flex;
         justify-content: center;
         align-items: center;
         margin-bottom: 20px;
       }

       .nav-buttons {
         display: flex;
         gap: 10px;
       }

       .nav-buttons button {
         width: 44px;
         height: 44px;
         border: none;
         background: #edeef0;
         color: #181929;
         font-size: 22px;
         font-weight: 600;
         border-radius: 50%;
         cursor: pointer;
         transition: background 0.3s;
         display: flex;
         align-items: center;
         justify-content: center;
         outline: none;
       }

       .nav-buttons button:hover {
         background: #e0e1e7;
       }

       .nav-buttons button:disabled {
         opacity: 0.5;
         cursor: not-allowed;
       }

       .cases-section {
         padding: 0 75px 40px 75px;
         margin: 0 auto;
         overflow: hidden;
       }

       @media (min-width: 1600px) {
         .cases-section {
           padding: 0 120px;
           margin-bottom: 160px;
         }
       }

       /* Tablet Landscape */
       @media (max-width: 1199px) {
         .cases-section {
           padding: 0 60px;
         }
       }

       /* Tablet Portrait */
       @media (max-width: 991px) {
         .cases-section {
           padding: 0 40px;
           margin-bottom: 80px;
         }
       }

       /* Mobile Large */
       @media (max-width: 767px) {
         .cases-section {
           padding: 0 30px;
           margin-bottom: 60px;
           gap: 60px;
         }
       }

       /* Mobile Small */
       @media (max-width: 575px) {
         .cases-section {
           padding: 0 20px;
           margin-bottom: 40px;
           gap: 40px;
         }
       }

       .cases-section h2.section-title {
         text-align: start;
         font-size: 2.5rem;
         font-weight: 700;
         margin: 60px 0 20px;
       }

       .cases-container {
         position: relative;
         overflow: hidden;
       }

       .cases-wrapper {
         display: flex;
         flex-direction: column;
         gap: 40px;
         transition: none;
         padding: 0;
         margin-bottom: 17px;
       }

       .case-card {
         min-height: 600px;
         border-radius: 24px;
         display: flex;
         overflow: hidden;
         box-sizing: border-box;
       }

       /* Layout inside */
       .item__content {
         display: flex;
         flex-direction: column;
         justify-content: center;
         padding: 48px 40px 48px 48px;
         flex: 1;
       }

       .item__logo img {
         max-height: 65px;
         max-width: 100%;
         display: block;
       }

       .item__tags {
         display: flex;
         gap: 10px;
         flex-wrap: wrap;
         margin-bottom: 16px;
       }

       .item__text {
         display: flex;
         flex-direction: column;
         gap: 24px;
       }

       .item__tags-item {
         padding: 7px 16px;
         border-radius: 16px;
         font-size: 12px;
         font-weight: 500;
       }


       .item__title h3 {
         text-align: start;
         margin: 0;
         padding: 0;
         padding-top: 5px;
         padding-left: 12px;
         font-size: 31px;
         font-weight: 700;
         line-height: 36px;
       }

       .item__review {
         padding: 16px 0 0 16px;
       }

       .item__review-text {
         max-width: 530px;
       }

       .item__review-text p {
         margin: 0;
         padding: 0;
         font-size: 17px;
         font-weight: 400;
         line-height: 24px;
         margin-bottom: 16px;
       }

       .item__review-author {
         display: flex;
         flex-direction: row;
         gap: 16px;
         align-items: center;
       }

       .item__review-author-picture {
         width: 48px;
       }

       .item__review-author-picture img {
         max-height: 48px;
         max-width: 100%;
         border-radius: 50%;
       }

       .item__review-author-name {
         font-size: 16px;
         font-weight: 700;
         line-height: 24px;
       }

       .item__review-author-position {
         font-family: Inter, sans-serif;
         font-size: 14px;
         font-weight: 400;
         line-height: 22px;
         letter-spacing: -.28px;
       }

       .item__actions a {
         display: inline-block;
         padding: 14px 24px;
         border-radius: 8px;
         font-weight: 600;
         font-size: 14px;
         text-decoration: none;
         transition: 0.3s;
         margin-top: 26px;
       }

       .case-card .media {
         display: flex;
         flex: 1;
       }

       .buttons-container {
         display: flex;
         gap: 12px;
         flex-wrap: wrap;
       }

       .action-btn {
         padding: 10px 20px;
         text-decoration: none;
         border-radius: 6px;
         font-weight: 500;
         transition: all 0.3s ease;
         display: inline-block;
       }

       .action-btn:hover {
         opacity: 0.9;
         transform: translateY(-2px);
       }

       .case-card .media img {
         height: auto;
         max-height: 600px;
         max-width: 600px;
         display: block;
       }

       /* Base Styles */
       .cases-footer {
         display: flex;
         justify-content: center;
         align-items: center;
         gap: 20px;
         padding: 40px 20px;
         border-radius: 24px;
         background: linear-gradient(90deg, #323232 0%, #825555 50% 50%, #b36060 100%);
         color: #fff;
         font-family: "Inter", sans-serif;
         font-weight: 600;
         text-align: center;
       }

       .cases-footer h2 {
         font-size: clamp(1rem, 2vw, 1.4rem);
         line-height: 1.3;
         margin: 0;
       }

       .cases-footer button {
         background: #fff;
         color: #111;
         border: none;
         border-radius: 10px;
         padding: 12px 24px;
         font-size: clamp(0.9rem, 1.5vw, 1rem);
         font-weight: 600;
         cursor: pointer;
         transition: all 0.2s ease-in-out;
       }

       .cases-footer button:hover {
         transform: translateY(-2px);
         background: #f2f2f2;
       }

       /* Large Screens (≥1600px) */
       @media (min-width: 1600px) {
         .cases-footer {
           padding: 60px 40px;
           gap: 28px;
         }

         .cases-footer h2 {
           font-size: 1.6rem;
         }

         .cases-footer button {
           font-size: 1.1rem;
           padding: 14px 30px;
         }
       }

       /* Tablet Landscape (≤1199px) */
       @media (max-width: 1199px) {
         .cases-footer h2 {
           font-size: 1.2rem;
         }

         .cases-footer button {
           font-size: 0.95rem;
         }
       }

       /* Tablet Portrait (≤991px) */
       @media (max-width: 991px) {
         .cases-footer {
           flex-direction: column;
           gap: 16px;
           padding: 32px 20px;
         }

         .cases-footer h2 {
           font-size: 1.1rem;
         }

         .cases-footer button {
           font-size: 0.95rem;
           padding: 11px 22px;
         }
       }

       /* Mobile (≤575px) */
       @media (max-width: 575px) {
         .cases-footer {
           flex-direction: column;
           padding: 28px 16px;
           border-radius: 18px;
         }

         .cases-footer h2 {
           font-size: 1rem;
           line-height: 1.4;
         }

         .cases-footer button {
           font-size: 0.9rem;
           padding: 10px 18px;
         }
       }


       /* Responsive adjustments */
       @media (max-width: 1280px) {
         .section-header {
           flex-direction: column;
           justify-content: center;
           align-items: center;
         }

         h2.section-title {
           text-align: center;
           margin-top: 20px;
         }

         .case-card {
           flex-direction: column;
           height: fit-content;
         }

         /* Image below content, centered, 60% width */
         .case-card .media img {
           width: 60%;
           max-width: 60%;
           object-fit: contain;
           height: auto;
         }

         /* Content padding adjustments */
         .item__content {
           padding: 32px 24px !important;
           align-items: center;
         }

         .item__text {
           justify-content: center;
           align-items: center;
           text-align: start;
         }

         /* Title font adjustments */
         .item__title h3 {
           font-size: 28px !important;
           line-height: 34px !important;
         }

         .item__review {
           justify-content: center;
           align-items: center;
           text-align: start;
         }

         .item__review-text {
           max-width: 100% !important;
         }

         /* Testimonial text */
         .item__review-text p {
           font-size: 16px !important;
           line-height: 22px !important;
         }

         /* Author info fonts */
         .item__review-author-name {
           font-size: 15px !important;
         }

         .item__review-author-position {
           font-size: 13px !important;
         }

         /* Buttons */
         .item__actions a {
           font-size: 13px !important;
           padding: 12px 20px !important;
         }
       }

       /* Tablet / mobile adjustments */
       @media (max-width: 768px) {

         h2.section-title {
           font-size: 24px !important;
           margin: 10px 0 12px !important;
         }

         .item__title h3 {
           font-size: 24px !important;
           line-height: 30px !important;
         }

         .item__review-text p {
           font-size: 15px !important;
           line-height: 21px !important;
         }

         .item__review-author-name {
           font-size: 14px !important;
         }

         .item__review-author-position {
           font-size: 12px !important;
         }

         .item__actions a {
           font-size: 12px !important;
           padding: 10px 16px;
         }

         .case-card .media img {
           max-width: 52%;
         }
       }

       @media (max-width: 480px) {
         .cases-section {
           padding: 0;
         }

         .item__title h3 {
           font-size: 20px !important;
           line-height: 26px;
         }

         .item__review-text p {
           font-size: 14px !important;
           line-height: 20px !important;
         }

         .item__tags-item {
           font-size: 10px !important;
           padding: 6px 12px !important;
         }

         .nav-buttons button {
           width: 40px !important;
           height: 40px !important;
         }
       }

       /* ✅ Tablet & Mobile Improvements */
@media (max-width: 991px) {
  .cases-section {
    padding: 0 20px;
  }

  .cases-wrapper {
    gap: 24px; /* smaller spacing between cards */
  }

  .case-card {
    flex-direction: column;
    min-height: auto;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 20px;
  }

  .case-card .media img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
  }

  .item__content {
    padding: 20px 16px;
    text-align: center;
  }

  .item__title h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 12px;
  }

  .item__review-text p {
    font-size: 15px;
    line-height: 22px;
  }

  .item__actions a {
    font-size: 13px;
    padding: 10px 18px;
  }
}

/* ✅ Mobile Large */
@media (max-width: 767px) {
  .cases-section {
    padding: 0 12px;
  }

  .case-card {
    flex-direction: column;
    border-radius: 14px;
    padding: 16px;
    gap: 12px;
  }

  .case-card .media img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .item__content {
    padding: 12px;
  }

  .item__title h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .item__review-text p {
    font-size: 14px;
    line-height: 20px;
  }

  .item__actions a {
    font-size: 12px;
    padding: 8px 14px;
  }
}

/* ✅ Mobile Small */
@media (max-width: 480px) {
  .cases-section {
    padding: 0 8px;
  }

  .case-card {
    padding: 12px;
    border-radius: 12px;
  }

  .item__title h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .item__review-text p {
    font-size: 13px;
    line-height: 18px;
  }

  .item__tags-item {
    font-size: 10px;
    padding: 5px 10px;
  }

  .nav-buttons button {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}
