:root {
  --primary-color: #6b7280;
  --secondary-color: #ffffff;
  --accent-color: #dc2626;
  --dark-color: #000000;
  --light-color: #f8f9fa;
  --text-dark: #000000;
  --text-light: #ffffff;
  --header-color: rgba(89, 89, 92, 0.9);
  --footer-color: rgba(37, 38, 41, 0.9);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

/* Progress Bar */


.social-icons a {
  color: white;
  font-size: 18px;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-color);
}

.products-section {
  padding: 70px 0;
  background-color: var(--light-color);
}


.product-category {
  margin-bottom: 50px;
}

.category-title {
  text-align: center;
  margin-bottom: 30px;
  color: var(--header-color);
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-image {
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  position: relative;
  width: 100%;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-image .fa-4x {
  font-size: 4rem;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.card-text {
  color: #555;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-specs {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.product-specs h6 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.btn-custom {
  background-color: #2c3e50;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #1a252f;
  color: white;
}

/* Applications Section */
.applications-section {
  padding: 80px 0;
}

.application-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
  border-left: 4px solid var(--header-color);
}

.application-card:hover {
  transform: translateY(-5px);
}

.application-card h3 {
  color: var(--header-color);
  margin-bottom: 15px;
}

/* About Preview */
.about-preview {
  padding: 80px 0;
  background: linear-gradient(rgba(37, 38, 41, 0.9));
  background-size: cover;
  background-position: center;
  color: white;
}

.about-preview h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-preview p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.btn-about {
  background-color: white;
  color: var(--header-color);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-about:hover {
  background-color: var(--header-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}

/* Responsive */
@media (max-width: 991px) {
  .slider-container {
    height: 500px;
  }

  .slide-content {
    left: 5%;
    max-width: 90%;
  }

  .slide-content h2 {
    font-size: 2.5rem;
  }

  .slide-content p {
    font-size: 1.1rem;
  }

  .slider-arrow {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .slider-container {
    height: 400px;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .btn-slider {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slider-arrow.prev {
    left: 15px;
  }

  .slider-arrow.next {
    right: 15px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
  border-top: 4px solid var(--primary-color);
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.product-card p {
  color: #666;
  margin-bottom: 0;
}

/* Product Images Section */
.product-images-section {
  padding: 60px 0;
}

.product-image-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.product-image-card:hover {
  transform: translateY(-5px);
}

.product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-img-info {
  padding: 20px;
  background: white;
}

.product-img-info h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* About Preview */
.about-preview {
  padding: 80px 0;
  background: linear-gradient(rgba(66, 66, 68, 0.9));
  background-size: cover;
  background-position: center;
  color: white;
}

.about-preview h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-preview p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.btn-about {
  background-color: white;
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-about:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}

.about-preview-integrated {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.about-preview-integrated h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.about-preview-integrated p {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Footer */
.main-footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

.history-section {
  background-color: var(--light-color);
}

.history-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.history-content p {
  margin-bottom: 20px;
}

.history-highlight {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
  border-left: 4px solid var(--primary-color);
}

.history-highlight h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.history-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
  background-color: white;
}

.value-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
  border-top: 4px solid var(--primary-color);
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Mission Vision Section */
.mission-vision-section {
  background-color: var(--light-color);
}

.mission-vision-header {
  text-align: center;
  margin-bottom: 50px;
}

.mission-vision-header h2 {
  font-size: 2.5rem;
  color: var(--header-color);
  margin-bottom: 20px;
}

.mission-card,
.vision-card {
  background: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
}

.mission-card:before,
.vision-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 8px 0 0 8px;
}

.mission-card h3,
.vision-card h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.mission-card h3 i,
.vision-card h3 i {
  margin-right: 15px;
  font-size: 1.8rem;
}

/* Products Section */
.products-preview {
  padding: 60px 0;
  background-color: white;
}

.product-badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  top: 15px;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.left::after {
  right: -10px;
}

.right::after {
  left: -10px;
}

.timeline-content {
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.product-category {
  margin-bottom: 50px;
}

.category-title {
  color: var(--primary-color);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.product-card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 25px;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 200px;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
}

.product-image img {
  max-width: 60%;
  object-fit: contain;
}

.product-card .card-body {
  padding: 20px;
}

.product-card .card-title {
  color: var(--primary-color);
  font-weight: 600;
}

.product-card .card-text {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.product-features {
  list-style-type: none;
  padding-left: 0;
  margin-top: 15px;
}

.product-features li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.product-features li:before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
}

.contact-info {
  background-color: var(--secondary-color);
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
}

.contact-info h6 {
  margin-bottom: 15px;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-primary:hover {
  background-color: #c53030;
  border-color: #c53030;
}

.page-header {
  background: linear-gradient(rgba(64, 67, 71, 0.9));
  color: white;
  padding: 80px 0 50px;
  margin-bottom: 40px;
  text-align: center;
}

.product-category {
  margin-bottom: 60px;
}

.category-title {
  color: var(--header-color);
  border-bottom: 3px solid var(--accent-color);
  padding-bottom: 15px;
  margin-bottom: 30px;
  font-weight: 700;
}

.category-description {
  color: var(--secondary-color);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.product-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 30px;
  height: 100%;
  background: white;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 200px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}

.product-image i {
  opacity: 0.8;
}

.product-card .card-body {
  padding: 25px;
}

.product-card .card-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.product-features {
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
}

.product-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  border-bottom: 1px solid #f1f1f1;
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li:before {
  content: "▸";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.applications {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 4px solid var(--accent-color);
}

.applications h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.btn-custom {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
  margin-top: 15px;
}

.btn-custom:hover {
  background-color: #c53030;
  color: white;
}

.contact-section {
  margin-bottom: 50px;
}

/*TITULO LINEA*/

.section-title{
    text-align: center;
    margin-bottom: 50px;
}


.section-title h2 {
  font-size: 2.5rem;
  color: var(--header-color);
  margin-bottom: 15px;
  position: relative;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--header-color);
}

.product-category {
  margin-bottom: 50px;
}

.section-title {
  color: var(--primary-color);
  border-bottom: 6px solid var(--accent-color);
  padding-bottom: 15px;
  margin-bottom: 30px;
  font-weight: 700;
}

.branch-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 30px;
  height: 95%;
  background: white;
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.branch-header {
  background: linear-gradient(rgba(64, 67, 71, 0.9));
  color: white;
  padding: 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.branch-body {
  padding: 25px;
}

.contact-info {
  margin-bottom: 15px;
}

.contact-info i {
  color: var(--accent-color);
  width: 20px;
  margin-right: 10px;
}

.form-container {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.form-control,
.form-select {
  border-radius: 5px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--dark-color);
  box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.25);
}

.btn-custom {
  background-color: var(--accent-color) !important;
  color: white !important;
  border: none !important;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-custom:hover {
  background-color: #c53030 !important;
  color: white !important;
}

.btn-outline-custom {
  background-color: transparent !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline-custom:hover {
  background-color: var(--primary-color) !important;
  color: white !important;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.map-placeholder {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
}

.contact-methods {
  background: linear-gradient(rgba(64, 67, 71, 0.9));
  color: white;
  padding: 40px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.contact-method {
  text-align: center;
  margin-bottom: 25px;
}

.contact-method i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.contact-method h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-card {
  color: #000000 !important;
}

.faq-card h5 {
  color: #000000 !important;
}

.product-card .card-text,
.branch-card .contact-info,
.faq-card .card-text {
  color: #333333 !important;
}

.footer-links a:hover {
  color: #007bff !important;
}

/* Alertas */
.alert {
  color: #000000 !important;
}

.alert-success {
  background-color: #d4edda !important;
  border-color: #c3e6cb !important;
}

.alert-danger {
  background-color: #f8d7da !important;
  border-color: #f5c6cb !important;
}

.map-container {
  position: relative;
  margin-bottom: 20px;
}

#map {
  height: 400px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  background: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.faq-accordion .accordion-item {
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-accordion .accordion-button {
  background-color: var(--light-color);
  border-radius: 8px !important;
  padding: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #fde8ea;
  color: var(--accent-color);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(220, 38, 38, 0.25);
}

.faq-accordion .accordion-body {
  padding: 1.25rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.faq-search {
  position: relative;
  margin-bottom: 2rem;
}

.faq-search .form-control {
  padding-left: 3rem;
  border-radius: 50px;
  border: 1px solid var(--border-gray);
}

.faq-search .search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.category-filter .btn {
  border-radius: 20px;
  transition: all 0.3s ease;
}

.faq-category-section {
  margin-bottom: 3rem;
}

.category-title {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
  color: var(--header-color);
}

.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--primary-color);
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--border-gray);
}

.contact-section {
  background: linear-gradient(135deg, var(--light-color) 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  border: 1px solid var(--border-gray);
}

.faq-count {
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

.bg-warning {
  background-color: #fff3cd !important;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .category-filter {
    justify-content: center;
  }
  
  .contact-section .text-end {
    text-align: center !important;
    margin-top: 1rem;
  }
}

.blog-article {
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.article-meta .badge {
  background-color: var(--accent-color);
  color: var(--text-light);
  font-weight: 500;
}

.article-content {
  line-height: 1.8;
  color: var(--text-dark);
}

.article-content h2, 
.article-content h3, 
.article-content h4 {
  color: var(--header-color);
  margin-top: 25px;
  margin-bottom: 15px;
}

.article-content p {
  margin-bottom: 20px;
}

.article-share {
  color: var(--text-dark);
}

.article-share h6 {
  color: var(--header-color);
  font-weight: 600;
}

/*BLOG*/

.blog-post-card {
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 30px;
  border-top: 4px solid var(--primary-color);
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-post-card h3 a {
  color: var(--header-color);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-post-card h3 a:hover {
  color: var(--accent-color);
}

.blog-sidebar {
  position: sticky;
  top: 20px;
}

.sidebar-widget {
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  border-left: 4px solid var(--primary-color);
}

.sidebar-widget h5 {
  color: var(--header-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-color);
  font-weight: 600;
}

.sidebar-widget ul li a {
  transition: color 0.3s, padding-left 0.3s;
  border-radius: 4px;
  padding: 8px 12px;
}

.sidebar-widget ul li a:hover {
  color: var(--accent-color) !important;
  background-color: var(--light-color);
  padding-left: 15px;
}

.recent-post {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-color);
}

.recent-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.recent-post a:hover h6 {
  color: var(--accent-color);
}

.recent-post h6 {
  color: var(--header-color);
  font-weight: 600;
  transition: color 0.3s;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
}

.alert-info {
  background-color: #e8f4fd;
  border-color: #b6e0fe;
  color: var(--text-dark);
}

.text-primary {
  color: var(--accent-color) !important;
}

.fw-bold.text-primary {
  color: var(--accent-color) !important;
  font-weight: 600;
}

.social-icons a {
  color: var(--primary-color);
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .blog-post-card .row > div {
    margin-bottom: 20px;
  }
}


/* Featured FAQs */
.featured-faqs {
  background: #f8f9fa;
  padding: 80px 0;
}

.faq-preview {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  height: 100%;
}

.faq-preview h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-image {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .product-image {
    height: 180px;
  }
}

