/* style.css - ROTOTANK modern, clean, blue & white */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
body {
  background: #f6f9fe;
  color: #1a2b4c;
  line-height: 1.5;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
/* header / sticky nav */
.site-header {
  background: white;
  box-shadow: 0 4px 20px rgba(0,40,80,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.7rem 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: ##370593;
  letter-spacing: -0.5px;
}
.hamburger {
  background: none;
  border: none;
  font-size: 2rem;
  color: #0a4b7a;
  display: none; /* hidden on desktop, shown <768 */
  cursor: pointer;
}
.nav-menu ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: #1e3a6b;
  transition: 0.2s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav-menu a.active, .nav-menu a:hover {
  border-bottom-color: #0a7ab3;
  color: #0a4b7a;
}
/* mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease;
  }
  .nav-menu.show {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
/* buttons */
.btn {
  display: inline-block;
  background: white;
  border: 2px solid #0a4b7a;
  color: #0a4b7a;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0,60,120,0.1);
}
.btn-primary {
  background: #0a4b7a;
  color: white;
  border: 2px solid #0a4b7a;
}
.btn-primary:hover {
  background: #0d3457;
  border-color: #0d3457;
  transform: scale(1.02);
}
/* hero */
.hero {
  background: linear-gradient(135deg, #d4e7ff 0%, #b3d4ff 100%);
  padding: 4rem 0;
  text-align: center;
  border-radius: 0 0 3rem 3rem;
}
.hero-title {
  font-size: 3.5rem;
  color: #003057;
  line-height: 1.2;
}
.hero-tagline {
  font-size: 1.4rem;
  margin: 1rem 0 2rem;
  color: #12416b;
}
.hero-subtitle {
  display: block;
  font-size: 1.5rem;
  color: #0a7ab3;
  margin-top: 0.5rem;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.hero-features span {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  font-weight: 500;
  backdrop-filter: blur(5px);
}

.hero-features i {
  margin-right: 0.5rem;
  color: #ffd966;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  color: #0a4b7a;
  border: 2px solid #0a4b7a;
}

.btn-secondary:hover {
  background: #0a4b7a;
  color: white;
}

/* Trust badges */
.trust-badges {
  background: white;
  padding: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0,40,80,0.05);
  margin-top: -2rem;
  position: relative;
  z-index: 10;
  border-radius: 40px;
  margin-left: 5%;
  margin-right: 5%;
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a4b7a;
}

.trust-item i {
  font-size: 1.8rem;
  color: #0a7ab3;
}
/* features grid */
.features-grid, .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.feature-card {
  background: white;
  padding: 2rem 1rem;
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,50,100,0.1);
  transition: 0.2s;
}
.feature-card i {
  font-size: 2.5rem;
  color: #0a7ab3;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 2rem;
  color: #0a2c4b;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  color: #4a6b8a;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Mini products grid */
.mini-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.mini-product-card {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,50,100,0.08);
  transition: 0.3s;
}

.mini-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(0,50,100,0.15);
}

.mini-product-card img {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.mini-product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #0a2c4b;
}

.mini-product-card .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a4b7a;
  margin-bottom: 1rem;
}

.btn-small {
  display: inline-block;
  background: #e0ecff;
  color: #0a4b7a;
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.btn-small:hover {
  background: #0a4b7a;
  color: white;
}

.view-all {
  text-align: center;
  margin-top: 2rem;
}

/* Locations grid */
.locations {
  background: #f0f7ff;
  padding: 3rem 0;
  border-radius: 3rem;
  margin: 2rem 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.location-item {
  background: white;
  padding: 0.8rem 1rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #0a4b7a;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: 0.2s;
}

.location-item:hover {
  background: #0a4b7a;
  color: white;
  transform: scale(1.02);
}

.location-item i {
  color: #0a7ab3;
}

.location-item:hover i {
  color: white;
}

/* Solutions grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.solution-card {
  background: white;
  padding: 2rem;
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,50,100,0.1);
  transition: 0.3s;
}

.solution-card:hover {
  transform: translateY(-5px);
}

.solution-card i {
  font-size: 2.5rem;
  color: #0a7ab3;
  margin-bottom: 1rem;
}

.solution-card h3 {
  color: #0a2c4b;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.solution-card p {
  color: #4a6b8a;
  line-height: 1.6;
}

/* FAQ section */
.faq {
  padding: 3rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item {
  background: white;
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  border: 1px solid #e0ecff;
}

.faq-item h3 {
  color: #0a4b7a;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-item h3::before {
  content: "❓";
  font-size: 1.2rem;
}

.faq-item p {
  color: #4a6b8a;
  line-height: 1.6;
  margin-left: 2rem;
}

.why-delivery .container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  background: #0a4b7a;
  color: white;
  padding: 2rem;
  border-radius: 48px;
  margin-top: 2rem;
}
.why-card {
  flex: 1 1 240px;
  text-align: center;
}
.why-card i {
  font-size: 2.8rem;
  background: white;
  color: #0a4b7a;
  padding: 1rem;
  border-radius: 60%;
}
.contact-summary {
  background: linear-gradient(135deg, #0a4b7a, #0d3457);
  color: white;
  padding: 2rem;
  border-radius: 40px;
  margin: 3rem auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  font-size: 1.2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info p {
  font-size: 1.1rem;
}

.contact-info a {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.contact-info a:hover {
  border-bottom-color: white;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-wa {
  background: #25D366;
  color: white;
  border: none;
}

.btn-wa:hover {
  background: #128C7E;
  transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .trust-badges {
    margin-left: 2%;
    margin-right: 2%;
    border-radius: 24px;
  }
  
  .trust-grid {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-features span {
    width: 100%;
    text-align: center;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info p {
    font-size: 1rem;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .mini-products-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-item h3::before {
    display: none;
  }
  
  .faq-item p {
    margin-left: 0;
  }
}

/* footer */
footer {
  background: #0a2c4b;
  color: white;
  padding: 2.5rem 0 0;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
}
footer a {
  color: #bbd9ff;
  text-decoration: none;
}
footer ul { list-style: none; }
.copyright {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid #2f4f7a;
  margin-top: 2rem;
}
/* cart icon (fixed) */
.cart-icon {
  position: fixed;
  top: 80px;
  right: 20px;
  background: #0a4b7a;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 500;
  transition: 0.2s;
}
.cart-icon .cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: red;
  color: white;
  font-size: 0.8rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.hidden { display: none !important; }

/* slide popups (right) */
.slide-popup {
  position: fixed;
  top: 0;
  right: -100%;
  width: 360px;
  max-width: 90vw;
  height: 100vh;
  background: white;
  box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  z-index: 1000;
  padding: 1.8rem 1.5rem;
  overflow-y: auto;
  transition: right 0.3s ease-out;
  border-radius: 24px 0 0 24px;
}
.slide-popup.show { right: 0; }
.overlay {
  position: fixed;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,20,50,0.3);
  backdrop-filter: blur(2px);
  z-index: 999;
}

.slide-popup.success-popup {
  width: 300px;
  height: auto;
  padding: 2rem;
  text-align: center;
  background: #2b7a4b;
  color: white;
  border-radius: 40px;
  right: 20px; 
  left: auto; 
  top: 30%;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #555;
}
.cart-items {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin: 0.5rem 0;
  background: #f8faff;
  border-radius: 16px;
  border: 1px solid #e0ecff;
  transition: all 0.2s ease;
}

.cart-item:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(10, 75, 122, 0.08);
  transform: translateX(-2px);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 700;
  color: #0a4b7a;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.cart-item-details {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #4a6b8a;
  margin-bottom: 0.3rem;
}

.cart-item-quantity {
  background: #e0ecff;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.cart-item-price {
  color: #2b4b6f;
}

.cart-item-subtotal {
  font-weight: 600;
  color: #0a4b7a;
  font-size: 1.1rem;
}

.cart-item-remove {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ff4444;
  background: white;
  color: #ff4444;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-left: 1rem;
  flex-shrink: 0;
}

.cart-item-remove:hover {
  background: #ff4444;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

.cart-item-remove:active {
  transform: scale(0.95);
}

/* Scrollbar styling for cart items */
.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-track {
  background: #e0ecff;
  border-radius: 10px;
}

.cart-items::-webkit-scrollbar-thumb {
  background: #0a4b7a;
  border-radius: 10px;
}

.cart-total {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a4b7a;
  padding: 1rem 0;
  border-top: 2px solid #e0ecff;
  margin-top: 1rem;
  text-align: right;
}

.cart-items p {
  text-align: center;
  color: #8a9cb0;
  font-size: 1.1rem;
  padding: 2rem;
}

@keyframes slideUpFade {
  0% { 
    opacity: 0; 
    transform: translate(-50%, 20px);
  }
  15% { 
    opacity: 1; 
    transform: translate(-50%, 0);
  }
  85% { 
    opacity: 1; 
    transform: translate(-50%, 0);
  }
  100% { 
    opacity: 0; 
    transform: translate(-50%, -20px);
  }
}

.removal-feedback {
  animation: slideUpFade 2s ease forwards;
  z-index: 2000;
}

/* Mobile responsiveness for cart items */
@media (max-width: 480px) {
  .cart-item {
    padding: 0.8rem;
  }
  
  .cart-item-details {
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .cart-item-quantity {
    display: inline-block;
    width: fit-content;
  }
  
  .cart-item-remove {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .cart-item-subtotal {
    font-size: 1rem;
  }
}

/* checkout form */
.checkout-form input, .checkout-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  margin: 0.5rem 0;
  border: 1px solid #b0c9e0;
  border-radius: 30px;
  font-size: 1rem;
}
.checkout-form textarea { min-height: 80px; }
.success-popup {
  width: 300px;
  height: auto;
  padding: 2rem;
  text-align: center;
  background: #2b7a4b;
  color: white;
  border-radius: 40px;
  right: 20px; left: auto; top: 30%;
}
/* product cards */
.product-card {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  background: white;
  border-radius: 32px;
  box-shadow: 0 10px 20px rgba(0,50,80,0.08);
}

.product-card .btn-add {
  margin-top: 0.5rem;
  width: 100%;
  max-width: 160px;
}

.product-card img {
  width: 100%;
  max-width: 160px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 8px 6px #adc9f0);
}
.product-card h3 { 
  font-size: 1.5rem; }
  
 .product-image-container {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 24px;
  background: #f0f7ff;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This ensures images cover the area without distortion */
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
  transform: scale(1.05);
}

/* Fallback for missing images */
.product-image-container img[src="img/rototankphoto.png"] {
  object-fit: contain; /* For placeholder, show full image */
  padding: 1rem;
}

.rototank-shop .category-filter .category-btn {
  padding: 0.8rem 1.8rem !important;
  border: 2px solid #0a4b7a !important;
  background: white !important;
  color: #0a4b7a !important;
  border-radius: 40px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  font-size: 1rem !important;
}

.rototank-shop .category-filter .category-btn:hover {
  background: #e0ecff !important;
  transform: translateY(-2px) !important;
}

.rototank-shop .category-filter .category-btn.active {
  background: #0a4b7a !important;
  color: white !important;
}

 /* Category filter styles */
 .category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
  }
    
 .category-btn {
   padding: 0.8rem 1.8rem;
   border: 2px solid #0a4b7a;
   background: white;
   color: #0a4b7a;
   border-radius: 40px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   font-size: 1rem;
    }
    
    .category-btn:hover {
      background: #e0ecff;
      transform: translateY(-2px);
    }
    
    .category-btn.active {
      background: #0a4b7a;
      color: white;
    }
    
    .category-section {
      margin: 3rem 0;
      scroll-margin-top: 100px;
    }
    
    .category-title {
      font-size: 2rem;
      color: #0a2c4b;
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 3px solid #e0ecff;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .category-title i {
      color: #0a7ab3;
      font-size: 2rem;
    }
    
    /* Category badges */
    .product-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #ff6b6b;
      color: white;
      padding: 0.3rem 1rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      z-index: 10;
    }
    
    .product-card {
      position: relative;
    }
    
    /* Price note for special items */
    .price-note {
      font-size: 0.8rem;
      color: #4a6b8a;
      margin-top: 0.3rem;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .category-filter {
        gap: 0.5rem;
      }
      .category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
      }
      .category-title {
        font-size: 1.5rem;
      }
    }

/* Category-specific image container backgrounds */
.product-card[data-category="tanks"] .product-image-container {
  background: linear-gradient(135deg, #e0ecff, #f0f7ff);
}

.product-card[data-category="ibc"] .product-image-container {
  background: linear-gradient(135deg, #ffe6cc, #fff0e0);
}

.product-card[data-category="drums"] .product-image-container {
  background: linear-gradient(135deg, #d4edda, #e8f5e9);
}

.product-card[data-category="septic"] .product-image-container {
  background: linear-gradient(135deg, #e6d9f0, #f3e8ff);
}

/* Responsive image sizing */
@media (max-width: 768px) {
  .product-image-container {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .product-image-container {
    height: 160px;
  }
}

/* Loading animation for images */
.product-image-container img.loading {
  opacity: 0.5;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 0.8; }
  100% { opacity: 0.5; }
} 

.product-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0a4b7a;
  margin: 0.5rem 0;
}
.btn-add {
  background: #0a4b7a;
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.product-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.counter-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0a4b7a;
  background: white;
  color: #0a4b7a;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 8px rgba(10, 75, 122, 0.2);
}

.counter-btn:hover {
  background: #0a4b7a;
  color: white;
  transform: scale(1.05);
}

.counter-btn:active {
  transform: scale(0.95);
}

.product-counter-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0a4b7a;
  min-width: 40px;
  text-align: center;
}

/* Responsive counter */
@media (max-width: 480px) {
  .counter-btn {  
    width: 42px;
    height: 42px;
    font-size: 1.8rem;
  }
  
  .product-counter-value {
    font-size: 1.6rem;
  }
}

/* about page */
.about-intro, .contact-form-section {
  background: white;
  border-radius: 40px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}
.why-list { display: flex; flex-wrap: wrap; gap: 1rem; margin-top:1rem; }
.direct-contact { margin-top: 2rem; }