 .regional-tabbing-section {
     padding: 0 0 140px;
 }

 .logo-section {
     text-align: center;
     margin-bottom: 40px;
     padding: 20px;
 }

 .logo-section img {
     max-width: 400px;
     height: auto;
 }

 .tabbing-contai {
     background: white;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     overflow: hidden;
 }

 .tabs-wrapper {
     background: linear-gradient(135deg, #1e7e34 0%, #28a745 100%);
     padding: 0;
 }

 .tabs-container {
     display: flex;
     overflow-x: auto;
     scrollbar-width: thin;
     justify-content: center;
     padding: 5px 0;
 }

 .tabs-container::-webkit-scrollbar {
     height: 4px;
 }

 .tabs-container::-webkit-scrollbar-track {
     background: rgba(255, 255, 255, 0.1);
 }

 .tabs-container::-webkit-scrollbar-thumb {
     background: rgba(255, 255, 255, 0.3);
     border-radius: 4px;
 }

 .tab-btn {
     flex: 0 0 auto;
     min-width: 160px;
     padding: 20px 20px;
     border: none;
     background: transparent;
     color: rgba(255, 255, 255, 0.7);
     font-size: 15px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     border-bottom: 4px solid transparent;
     border-top: 4px solid transparent;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     white-space: nowrap;
     border-radius: 15px 15px 0 0;
 }

 .tab-btn:hover {
     background: rgba(255, 255, 255, 0.1);
     color: white;
 }

 .tab-btn.active {
     background: white;
     color: #1e7e34;
     border-bottom-color: #248239;
     border-top-color: #248239;
 }

 .content-wrapper {
     padding: 40px;
 }

 .section-table {
     margin-bottom: 30px;
 }

 .section-title {
     font-size: 20px;
     font-weight: 700;
     color: #1e7e34;
     margin-bottom: 15px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* Export Season Table */
 .export-table {
     width: 100%;
     border-collapse: collapse;
     background: white;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
     border-radius: 8px;
     overflow: hidden;
 }

 .export-table thead tr {
     /* background: linear-gradient(135deg, #9ec44c 0%, #b8d966 100%); */
     background: linear-gradient(135deg, #1e7e34 0%, #28a745 100%);
 }

 .export-table th {
     padding: 15px 10px;
     text-align: center;
     font-weight: 700;
     color: white;
     font-size: 14px;
     text-transform: uppercase;
     border-right: 1px solid rgba(255, 255, 255, 0.2);
 }

 .export-table th:first-child {
     /* background: #9ec44c; */
     font-size: 16px;
 }

 .export-table th:last-child {
     border-right: none;
 }

 .export-table tbody td {
     padding: 18px 10px;
     text-align: center;
     border: 1px solid #e0e0e0;
     font-size: 20px;
 }

 .export-table tbody td:first-child {
     background: #f8f9fa;
     font-weight: 600;
     color: #1e7e34;
 }

 .checkmark {
     color: #28a745;
     font-weight: bold;
 }

 /* Info Cards */
 .info-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 25px;
     margin-top: 30px;
 }

 .info-card {
     background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
     border: 2px solid #e8f5e9;
     border-radius: 12px;
     padding: 30px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .info-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, #1e7e34 0%, #28a745 100%);
 }

 /* .info-card:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
                } */

 .size-card::before {
     /* background: linear-gradient(90deg, #d4a044 0%, #f0ad4e 100%); */
 }

 .size-icon,
 .packaging-icon {
     font-size: 40px;
     margin-bottom: 15px;
 }

 .info-card-title {
     font-size: 18px;
     font-weight: 700;
     color: #1e7e34;
     margin-bottom: 20px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .info-card-content {
     font-size: 16px;
     color: #333;
     line-height: 1.8;
 }

 .size-display {
     /* background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%); */
     /* border-left: 4px solid #d4a044; */
     background: linear-gradient(135deg, #1e7e34 0%, #28a745 100%);
     padding: 15px;
     border-radius: 8px;
     font-size: 20px;
     font-weight: 700;
     color: #fff;
     text-align: center;
     box-shadow: 0 2px 8px rgba(212, 160, 68, 0.15);
 }

 .packaging-list {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .packaging-item {
     display: flex;
     align-items: center;
     gap: 10px;
     /* padding: 15px; */
     /* background: white; */
     /* border-radius: 8px; */
     /* border-left: 3px solid #28a745; */
     /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); */
     transition: all 0.3s ease;
 }

 /* .packaging-item:hover {
                    transform: translateX(5px);
                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                } */

 .pack-icon {
     font-size: 14px;
     color: #28a745;
     flex-shrink: 0;
 }

 .pack-text {
     font-size: 15px;
     color: #333;
     line-height: 1.6;
 }

 @media (max-width: 768px) {
     .content-wrapper {
         padding: 20px;
     }

     .tab-btn {
         min-width: 120px;
         padding: 15px 10px;
         font-size: 13px;
     }

     .export-table th,
     .export-table td {
         padding: 10px 5px;
         font-size: 12px;
     }

     .info-cards {
         grid-template-columns: 1fr;
     }

     /* .tabbing-contai{margin: 0 10px !important;} */
     .section-table {
         overflow: auto;
     }

     .tabs-container {
         overflow: auto;
         justify-content: left;
         margin-left: 10px;
         margin-right: 15px;
         scrollbar-width: auto;
     }

     .regional-tabbing-section {
         padding: 0 10px 100px;
     }

     .export-table tbody td {
         font-size: 14px;
         line-height: 17px;
     }

     .export-table th:first-child {
         font-size: 12px;
     }

     .export-table th,
     .export-table td {
         font-size: 10px;
     }

     .size-icon,
     .packaging-icon {
         font-size: 25px;
     }

     .info-card-title {
         font-size: 12px;
         margin-bottom: 10px;
     }

     .size-display {
         font-size: 12px;
     }

     .info-card {
         padding: 20px;
     }

     .pack-text {
         font-size: 10px;
     }

     .packaging-list {
         gap: 5px;
     }
 }

 @media only screen and (min-width: 768px) and (max-width: 991px) {
     .content-wrapper {
         padding: 20px;
     }

     .tab-btn {
         min-width: 120px;
         padding: 15px 10px;
         font-size: 13px;
     }

     .export-table th,
     .export-table td {
         padding: 10px 5px;
         font-size: 12px;
     }

     .info-cards {
         grid-template-columns: 1fr;
     }

     /* .tabbing-contai{margin: 0 10px !important;} */
     .section-table {
         overflow: auto;
     }

     .tabs-container {
         overflow: auto;
         justify-content: left;
         margin-left: 10px;
         margin-right: 15px;
         scrollbar-width: auto;
     }

     .regional-tabbing-section {
         padding: 0 10px 100px;
     }

     .export-table tbody td {
         font-size: 14px;
         line-height: 17px;
     }

     .export-table th:first-child {
         font-size: 12px;
     }

     .export-table th,
     .export-table td {
         font-size: 10px;
     }

     .size-icon,
     .packaging-icon {
         font-size: 25px;
     }

     .info-card-title {
         font-size: 12px;
         margin-bottom: 10px;
     }

     .size-display {
         font-size: 12px;
     }

     .info-card {
         padding: 20px;
     }

     .pack-text {
         font-size: 10px;
     }

     .packaging-list {
         gap: 5px;
     }
 }

 @media only screen and (min-width: 992px) and (max-width: 1023px) {

     .tab-btn {
         min-width: 140px;
     }

     .tabs-container {
         justify-content: left;
         margin: 0 20px;
     }

     .export-table tbody td {
         font-size: 16px;
     }

     .info-card-title {
         font-size: 16px;
     }

     .pack-text {
         font-size: 14px;
     }

     .size-display {
         font-size: 17px;
     }

 }

 @media only screen and (min-width: 1024px) and (max-width: 1200px) {

     .tab-btn {
         min-width: 140px;
     }

     .tabs-container {
         justify-content: left;
         margin: 0 20px;
     }

     .export-table tbody td {
         font-size: 16px;
     }

     .info-card-title {
         font-size: 16px;
     }

     .pack-text {
         font-size: 14px;
     }

     .size-display {
         font-size: 17px;
     }

 }