        .preise-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        .preise-section {
            margin-bottom: 40px;
        }

        .preise-section h3 {
            /* font-size: 1.5rem; */
            margin-bottom: 15px;
            padding-bottom: 2px;
            border-bottom: 1px solid #FFCD38;
  font: 1.5em 'PT Sans Narrow', "Trebuchet MS", Arial, Helvetica, sans-serif;
  /* font-variant: small-caps; */
  font-style: normal;
  font-weight: 400;
  text-shadow: 1px 1px 1px #CCC;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0em;
  word-spacing: 0em;
  line-height: 1em;
  border-bottom: 1px solid #FFCD38;
	background: transparent;
  color: #003366;
        }

        .preise-tabelle {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
            background: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            overflow: hidden;
            border-radius: 8px;
        }

        .preise-tabelle thead {
            background: linear-gradient(135deg, #003366 0%, #0052a3 100%);
            color: white;
        }

        .preise-tabelle th {
            padding: 15px 12px;
            text-align: left;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .preise-tabelle th:not(:first-child) {
            text-align: right;
        }

        .preise-tabelle td {
            padding: 12px;
            border-bottom: 1px solid #e0e0e0;
        }

        .preise-tabelle td:not(:first-child) {
            text-align: right;
            font-weight: 600;
            color: #0066cc;
        }

        .preise-tabelle tbody tr:hover {
            background-color: #f5f9ff;
            transition: background-color 0.2s ease;
        }

        .preise-tabelle tbody tr:last-child td {
            border-bottom: none;
        }

        .preise-tabelle tbody tr:nth-child(even) {
            background-color: #fafafa;
        }

        .info-box {
            background: #e8f4ff;
            border-left: 4px solid #0066cc;
            padding: 15px;
            margin: 20px 0;
            border-radius: 4px;
        }

        .info-box h4 {
            margin-top: 0;
            color: #0066cc;
            font-size: 1.1rem;
        }

        .info-box ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        .info-box li {
            margin: 5px 0;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .preise-container {
                padding: 10px;
            }

            .preise-section h3 {
                font-size: 1.3rem;
            }

            .preise-tabelle {
                font-size: 0.9rem;
            }

            .preise-tabelle th,
            .preise-tabelle td {
                padding: 10px 8px;
            }

            /* Tabelle wird scrollbar auf kleinen Bildschirmen */
            .table-wrapper {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
        }

        @media screen and (max-width: 480px) {
            .preise-tabelle {
                font-size: 0.85rem;
            }

            .preise-tabelle th,
            .preise-tabelle td {
                padding: 8px 6px;
            }

            .preise-section h3 {
                font-size: 1.2rem;
            }
        }
