.price-container {
    background-image: url(../img/see.jpg);
    background-size: cover;
    height: 800px;
    filter: brightness(80%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-content {
    background-color: rgba(255, 255, 255, 0.85);
    height: 650px;
    border-radius: 10px;
    width: 950px;
}

.price-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-content h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
}

.price-content h2 {
    font-weight: 500;
    font-size: 25px;
    text-align: center;
}

.price-content p {
    font-size: 18px;
    text-align: center;
    line-height: 2;
    margin-right: 10%;
    margin-left: 10%;
}

.price-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 3%;
}

@media only screen and (max-width: 767px) {
    .price-container {
        height: 1200px;
    }

    .price-content {
        height: 1050px;
        margin-top: -19%;
    }

    .price-list {
        margin-top: 4%;
    }
}


/*Price Table*/
/* Price Table */
.price-list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
  width: 100%; /* Stellt sicher, dass der Container die volle Breite einnimmt */
}

table {
  width: 60%; /* Standardbreite */
  border-collapse: collapse;
  margin: 0 auto; /* Zentriert die Tabelle horizontal */
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
}

th:nth-child(3), td:nth-child(3) {
  width: 170px;
}

th:nth-child(1), td:nth-child(1) {
  width: 550px;
}

.table-bold {
  font-weight: bold;
}

.table-bolder {
  font-weight: 800;
}

.price-infos {
  text-align: center;
  margin-left: 5%;
  margin-right: 5%;
}

/* Responsive table */
@media (max-width: 768px) {
  table {
    width: 95%; 
  }


  th, td {
    padding: 4px; 
    font-size: 14px; 
  }
}

@media (max-width: 480px) {
  .price-list {
    flex-direction: column;
    margin-top: 10px;
  }


  th, td {
    font-size: 12px; 
  }
}