.rental-conditions-container {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.rental-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e63946;
}

.rental-header h1 {
  color: #1d3557;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.rental-header .subtitle {
  color: #457b9d;
  font-size: 1.1rem;
  font-weight: 500;
}

.intro-section {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #e63946;
}

.conditions-section {
  margin-bottom: 3rem;
}

.section-title {
  color: #1d3557;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.section-title:before {
  content: "•";
  color: #e63946;
  font-size: 2rem;
  margin-right: 0.5rem;
}

.subsection {
  margin-bottom: 1.5rem;
  background: white;
  padding: 1.25rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.subsection-title {
  font-weight: 600;
  color: #457b9d;
  margin-bottom: 0.75rem;
  display: flex;
}

.subsection-content {
  padding-left: 1.25rem;
}

.highlight-box {
  background-color: #e9f7fe;
  border-left: 4px solid #1d3557;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 0 4px 4px 0;
}

.warning-box {
  background-color: #fff3f3;
  border-left: 4px solid #e63946;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 0 4px 4px 0;
}

.term-item {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.term-item:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #e63946;
}

ol.terms-list {
  counter-reset: item;
  padding-left: 0;
}

ol.terms-list > li {
  counter-increment: item;
  margin-bottom: 1.5rem;
  list-style: none;
  position: relative;
  padding-left: 2.5rem;
}

ol.terms-list > li:before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  color: #e63946;
  font-weight: bold;
}

ul.nested-list {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

ul.nested-list li {
  margin-bottom: 0.5rem;
  margin-left: 3vw;
  font-size: x-small;
  list-style: none;
}

.sub-term-item {
  margin-left: 4rem !important;
  font-size: xx-small !important;
}

@media (max-width: 768px) {
  .rental-conditions-container {
    padding: 1rem;
  }

  .rental-header h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.3rem;
  }
}

/* Print styles */
@media print {
  .rental-conditions-container {
    font-size: 12pt;
    line-height: 1.5;
    padding: 0;
  }

  .section-title {
    page-break-after: avoid;
  }

  .subsection {
    page-break-inside: avoid;
  }
}
