.preise-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Intro */
.preise-subtitle {
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    color: #3AAADD;
}

.preise-intro {
    text-align: justify;
    text-align-last: center;
    margin-top: 15px;
    font-size: 17px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hinweisbox */
.preise-hinweis {
    position: relative;
    background: #fff8d9;
    border-left: 5px solid #96BA3B;
    border-right: 5px solid #96BA3B;
    padding: 10px 30px 10px 55px;
    margin: 5px auto;
    border-radius: 10px;
    max-width: 700px;
    text-align: left;
    font-size: 12px;
    line-height: 0.75 !important;
}

.preise-hinweis p {
    margin: 8px 0;
}

.preise-hinweis p + p {
    margin-top: 4px;
}

.hinweis-icon {
    position: absolute;
    left: 10px;
    top: calc(50% - 20px);
    font-size: 26px;
    line-height: 1;
}

.hinweis-close {
    position: absolute;
    right: 10px;
    top: 15px;
    transform: translateY(-50%);
    font-size: 26px;
    cursor: pointer;
    color: #555;
    font-weight: bold;
    transition: 0.2s;
}

.hinweis-close:hover {
    color: #000;
    transform: translateY(-50%) scale(1.15);
}

/* GRID */
.preise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* CARD */
.card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    position: relative;
}

.card h2 {
    color: #3AAADD;
    margin-bottom: 12px;
    text-align: center;
}

.card ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.card ul li {
    margin-bottom: 6px;
}

.price {
    font-size: 20px;
    color: #96BA3B;
    font-weight: bold;
    margin-top: 10px;
    text-align: right !important;
}

/* Größe / Hinweisbox innerhalb einer Karte */
.size-info,
.hinweis {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Sonderkarte */
.card.special {
    border-left: 6px solid #3AAADD;
    border-right: 6px solid #3AAADD;
}

/* Preis-Button */
.price-button {
    position: absolute;
    right: 20px;
    bottom: 20px;

    display: inline-block;
    background: #3AAADD;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
    transition: all 0.25s ease;
}

.price-button:hover {
    background: #96BA3B;
}
