#main-container {
  color: #000;
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.products-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
}

.products-hero h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #000;
}

.products-hero p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
}

.category-card {
  padding: 2rem 1.5rem;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ffd700;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: 
    transform 0.3s ease, 
    box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.category-card i {
  margin-bottom: 1rem;
  font-size: 2.2rem;
  color: #8b0000;
}

.category-card h2 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  color: #444;
}

.category-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.products-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.section-title {
  margin-bottom: 2rem;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #444;
}

.section-title p {
  color: #444;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.products-contact {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 3rem 1.5rem;
  text-align: center;
  background-color: #444;
  border-radius: 14px;
}

.products-contact h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #fff;
}

.products-contact p {
  max-width: 700px;
  margin: 0 auto 1.8rem;
  line-height: 1.7;
  color: #fff;
}

.contact-btn {
  display: inline-block;
  padding: 1rem 2rem;
  color: #fff;
  background-color: #8b0000;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: 
    background-color 0.3s ease,
    transform 0.3s ease;
}

.contact-btn:hover {
  background-color: #8b0000;
  transform: translateY(-3px);
}

.product-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #ffd700;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.product-category {
  align-self: flex-start;
  margin-bottom: 0.8rem;
  padding: 0.50rem 0.75rem;
  color: #fff;
  background-color: #444;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.product-content h3 {
  margin-bottom: 0.8rem;
  color: #444;
  font-size: 1.25rem;
}

.product-content p {
  margin-bottom: 1.3rem;
  color: #444;
  line-height: 1.6;
}

.product-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.75rem 1.3rem;
  color: #fff;
  background-color: #8b0000;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.product-btn:hover {
  background-color: #8b0000;
  transform: translateY(-3px);
}