.gmbSpecs-section {
  background:#fff;
  padding:10px 10px;
}

.gmbSpecs-container {
  max-width:1140px;
  margin:0 auto;
  position:relative;
}

.gmbSpecs-card {
  background:#ECFAF7;
  border-radius:10px;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
  padding:20px;
  height:250px !important;
  max-height:250px;
  overflow-y:auto;
}

.gmbSpecs-title {
  margin:0 0 12px;
  font-weight:700;
  color:#323060;
}

.gmbSpecs-content ul {
  margin:0;
  padding-left:20px;
}
.gmbSpecs-content li {
  margin-bottom:8px;
  line-height:1.5;
  color:#333;
}

/* Navigation arrows */
.gmbSpecs-nav {
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top:20px;
}
.gmbSpecs-prev,
.gmbSpecs-next {
  background:#323060;
  border-radius:50%;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:transform 0.3s ease;
}
.gmbSpecs-prev:hover,
.gmbSpecs-next:hover {
  transform:scale(1.1);
}

/* Responsive */
@media(max-width:1024px){
  .gmbSpecs-card{ height:300px; max-height:300px; }
}
@media(max-width:768px){
  .gmbSpecs-card{ height:300px !important; max-height:300px !important; }
  .gmbSpecs-section{ padding:10px; }
}