.price-list-section {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #214d37;
    color: #333;
}

.price-list-section .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.price-list-section h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
}

.tech-spec-wrapper {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
  border-radius: 8px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tech-spec-tabs .spec-tab {
  display: none;
}

.tech-spec-tabs .spec-tab.active {
  display: block;
}

.tech-spec-dots {
  margin-top: 15px;
}

.tech-spec-dots .dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tech-spec-dots .dot.active {
  background-color: #478ac9;
}


.price-list-section table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.price-list-section th,
.price-list-section td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.price-list-section th {
    background-color: #f0f0f0;
    font-weight: bold;
}

.price-list-section .price {
    text-align: right;
}

.price-list-section .note {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .price-list-section h1 {
        font-size: 1.5rem;
    }

    .price-list-section th,
    .price-list-section td {
        font-size: 0.9rem;
        padding: 8px;
    }

    .price-list-section .note {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .price-list-section h1 {
        font-size: 1.2rem;
    }

    .price-list-section th,
    .price-list-section td {
        font-size: 0.75rem; /* Weitere Reduktion der Schriftgröße für Handys */
        padding: 5px; /* Kleinerer Padding für mehr Platz */
    }

    /* Sicherstellen, dass die Tabelle zweispaltig bleibt */
    .price-list-section table {
        width: 100%;
        table-layout: fixed; /* Fixiert die Spaltenbreite */
    }

    .price-list-section th:first-child,
    .price-list-section td:first-child {
        width: 70%; /* Zeitraum-Spalte bekommt mehr Platz */
    }

    .price-list-section th.price,
    .price-list-section td.price {
        width: 30%; /* Preis-Spalte bekommt weniger Platz */
        text-align: right;
    }

    .price-list-section .note {
        font-size: 0.65rem; /* Kleinere Schrift für den Hinweis */
    }
}