/* Enhanced styling for pricing blog posts */

.blog-post-content {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.8;
  color: #333;
}

.blog-post-header h1 {
  font-size: 2.5rem;
  color: #bd2227;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}

.blog-post-header h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #bd2227;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Enhanced Table Styling */
.table-responsive {
  margin: 2rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.table {
  margin-bottom: 0;
}

.table-bordered {
  border: none;
}

.table thead th {
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 15px;
  vertical-align: middle;
}

.bg-primary {
  background-color: #bd2227 !important;
}

.text-dark {
  color: #fff !important; /* Keeping white text for better contrast */
}

.table tbody td {
  padding: 15px;
  vertical-align: middle;
  border-top: 1px solid #eee;
  border-right: none;
  border-left: none;
}

.table tbody tr:hover {
  background-color: rgba(189, 34, 39, 0.03);
}

.table tbody td strong {
  color: #bd2227;
  font-weight: 700;
}

/* Section Headers */
.blog-post-content h2 {
  font-size: 1.8rem;
  color: #bd2227;
  margin: 3rem 0 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 10px;
}

.blog-post-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #bd2227;
}

/* Special Alert Styling */
.alert-info {
  background-color: #f8f4eb;
  border-left: 5px solid #bd2227;
  border-radius: 0;
  padding: 1.5rem;
  margin: 2rem 0;
  color: #333;
  font-size: 1.1rem;
}

.alert-info strong {
  color: #bd2227;
  font-weight: 700;
}

/* Add product image highlights */
.product-highlight {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.product-card {
  width: 32%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 180px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-info {
  padding: 1rem;
}

.product-info h3 {
  font-size: 1.1rem;
  color: #bd2227;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-price {
  font-weight: 700;
  color: #bd2227;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* Price tag styling */
.price-tag {
  display: inline-block;
  background-color: #bd2227;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  margin-top: 8px;
}

/* Call to action button */
.cta-button {
  display: block;
  text-align: center;
  background-color: #bd2227;
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: 700;
  margin: 2rem auto;
  max-width: 300px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(189, 34, 39, 0.3);
}

.cta-button:hover {
  background-color: #a41d21;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(189, 34, 39, 0.4);
  text-decoration: none;
  color: white;
}

/* Media Queries */
@media (max-width: 992px) {
  .product-card {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .blog-post-header h1 {
    font-size: 2rem;
  }
  
  .blog-post-content h2 {
    font-size: 1.5rem;
  }
  
  .blog-post-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .product-card {
    width: 100%;
  }
  
  .table thead th {
    padding: 10px 8px;
    font-size: 0.8rem;
  }
  
  .table tbody td {
    padding: 10px 8px;
    font-size: 0.9rem;
  }
}
