﻿body{
margin:0;
font-family:Segoe UI,Arial,sans-serif;
background:#f3f5f2;
color:#333;
}
.hero-banner{
width:100%;
display:block;
}
.container{
max-width:1200px;
margin:auto;
padding:30px;
}
.card{
background:#fff;
border-radius:14px;
padding:30px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
margin-bottom:30px;
}
.intro{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
align-items:center;
}
.intro img{
width:100%;
border-radius:12px;
}
.features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
margin-top:20px;
}
.features div{
background:#eef7ef;
padding:14px;
border-radius:10px;
font-weight:600;
}
h1,h2{
color:#1d6a3a;
}

.price-card{
    border:2px solid #2e7d32;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
}

.price-header{
    background:#2e7d32;
    color:#fff;
    height:50px;              /* feste Höhe */
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:10px;
    font-size:20px;
    font-weight:600;
}

.price-body{
    padding:5px;
    text-align:center;
}

.price{
    font-size:40px;
    color:#1d6a3a;
    font-weight:bold;
}

.special{
    border-color:#d8a100;
}

.special-header{
    background:#d8a100;
}

.special{
background:#fff9db;
border-color:#d9a300;
}

.small{
font-size:1.5rem;
}

.notice{
margin-top:25px;
background:#fff4c4;
padding:18px;
border-radius:10px;
font-size:1.1rem;
}
.price-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
    gap:10px;
	max-width:960px;   /* statt über die ganze Seite */
    margin:20px 50px 20px 50px;   /* zentriert */
}
/*.form{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:15px;
}
*/
input,select,textarea{
padding:12px;
border:1px solid #ccc;
border-radius:8px;
font-size:15px;
}
textarea{
grid-column:1/-1;
min-height:140px;
}
button{
grid-column:1/-1;
padding:15px;
background:#1d6a3a;
color:#fff;
border:none;
border-radius:10px;
font-size:18px;
cursor:pointer;
}
.footer{
text-align:center;
padding:30px;
color:#666;
}
@media(max-width:900px){
.intro{
grid-template-columns:1fr;
}
}
