
/* service */
.offers{ background:linear-gradient(180deg,#f7f9fc 50%,#e5efff );text-align:center;}
.offers h2{color:#003366;text-align:left;border-left:0px solid #003366;padding-left:0px;}
.offers p{margin-bottom:20px;}
.offers h3{color:#555;margin-bottom:20px;text-align:left;border-left:0px solid #003366;padding-left:0px;}
.offers-container{max-width:1200px;padding:0px 1px;display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin:auto;align-items:flex-start;}

/* service list */
.services-list{flex:1;text-align:left;padding:0 10px;}
.service-content{display:flex;align-items:center;}
.service-card{background:#e5efff;margin-bottom:5px;border-radius:8px;overflow:hidden;padding:5px;}
.service-card img{width:40px;height:40px;object-fit:cover;border-radius:0px;margin-right:10px; border:2px;}
.service-text h4{margin:5px 0 0 0;color:#003366;}
.service-text p{margin:0 0 5px 0;color:#555; padding-top:2px;}

.products-list{flex:1;}
.products-list h2{text-align:left;padding-left:10px;}
.products-list p{text-align:left;padding-left:10px;}
/*.products-list h3{ margin-bottom:20px;text-align:left;} */
.product-grid{ display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-bottom:50px;padding:0 10px;}
.product-card{background:#f7f9fc;border-radius:8px;overflow:hidden;box-shadow:0 2px 6px rgba(0,0,0,0.1);transition:transform 0.3s;}
.product-img {width:100%;height:150px;object-fit:cover;margin-bottom:5px;}
.product-card h4{ color:#003366;text-align:center;margin-bottom:2px;}
.product-card p {color:#555;margin-bottom:10px;text-align:center;}


/* Responsive */
@media (max-width: 768px) {
  .offers-container{grid-template-columns:1fr;}
  .product-card h3{ font-size:1.0rem;}
  .product-card p{ font-size:0.8rem;}
  .product-grid{gap:10px;}
 
 
}