@scope(.productselection){
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: white;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 0px;
}

.hero-section {
  margin-bottom: 60px;
	max-width: 990px;
}

.hero-title {
 
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 40px;
  color: #2c3e50;
}

.highlight {
  color: #4a90e2;
  
}

.description-grid {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 900px;
}

.description-text {
  flex: 1;
}

.description-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #666;
  font-style:italic;
}

.products-section {
  margin-top: 80px;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.product-card {
  flex: 1 1 238px;
  min-width: 280px;
  background: #f6f6f6;
  padding: 50px 25.5px;
  border-radius: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.product-title {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #2c3e50;
  letter-spacing: 0.5px;
}

.product-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
  min-height: 80px;
}

.learn-more-link {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.learn-more-link:hover {
  color: #357abd;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    max-width: 768px;
    padding: 20px 15px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .description-grid {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .products-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .product-card {
    padding: 37.5px 21.25px;
    flex: 1 1 auto;
    min-width: auto;
  }
  
  .products-section {
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .product-card {
    padding: 31.25px 17px;
  }
  
  .product-description {
    min-height: auto;
  }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .product-card {
    flex: 1 1 calc(42.5% - 15px);
    max-width: calc(42.5% - 15px);
  }
}

/* Large desktop */
@media (min-width: 1200px) {
  .container {
    padding: 120px 0px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .products-grid {
    gap: 40px;
  }
  
  .product-card {
    flex: 1 1 calc(21.25% - 30px);
    max-width: calc(21.25% - 30px);
  }
}
}
