.service-section {
  /* background: var(--rv-sub-primary); */
  padding: 30px;
  border-radius: 10px;
  /* border: 2px solid var(--rv-primary); */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  /* max-width: 800px; */
  margin: auto;
  font-family: Arial, sans-serif;
  color: var(--rv-black);
  transition: all 0.3s ease-in-out;
}

.service-section:hover {
  border-color: var(--rv-secondary);
}

.service-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--rv-black);
}

.service-content {
  margin-top: 20px;
  padding: 15px;
  background: var(--rv-white);
  border-radius: 5px;
}

.service-title {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--rv-secondary);
  text-transform: uppercase;
  position: relative;
}

.service-title::before {
  content: "🔹";
  position: absolute;
  left: -20px;
  font-size: 20px;
  color: var(--rv-primary);
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-item {
  background: var(--rv-white);
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 2px solid var(--rv-primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.service-item:hover {
  background: var(--rv-primary-light);
  border-color: var(--rv-secondary);
  transform: scale(1.02);
}

.service-item::before {
  content: "✔";
  position: absolute;
  left: 10px;
  font-size: 16px;
  color: var(--rv-secondary-light);
}

.service-item strong {
  color: var(--rv-primary);
  margin-left: 25px;
}

.service-footer {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  color: var(--rv-secondary-light);
  border-top: 2px solid var(--rv-secondary-light);
  padding-top: 15px;
  transition: all 0.3s ease-in-out;
}

.service-footer:hover {
  color: var(--rv-primary);
  border-top-color: var(--rv-primary);
}