body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #e4f4fb;
}

.angebot-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    padding: 40px 13px;
    width: 100%;
    margin: auto;
    max-width: 90%;
}

.paket-box {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 400px;
    flex: 1 1 350px;
}

.paket-header {
    background: #1888c8;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 1.5rem;
    font-weight: bold;
}

.paket-body {
    padding: 25px;
}

.paket-subtitle {
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.paket-price {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.paket-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paket-features li {
    padding-left: 28px;
    position: relative;
    margin: 12px 0;
}

.paket-features li::before {
    content: "✔";
    color: #1888c8;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.info-hint {
    font-size: 0.85rem;
    color: #777;
}

.formular-box {
    flex: 1 1 500px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 100%;
}
.formular-box-inner {
    padding: 15px;
}
.formular-box h2 {
    color: #1888c8;
    margin-bottom: 20px;
}

.formular-box p {
    margin-bottom: 20px;
    line-height: 1.6;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.row {
    display: flex;
    gap: 15px;
}

input, select, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    resize: vertical;
    height: 100px;
}



button:hover {
    background: #0f6b9f;
}

.datenschutz {
    font-size: 0.85rem;
}
.box-formular {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: auto;
    font-family: 'Poppins', sans-serif;
}

.h1_anfrage_title {
    color: #1888c8;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.box-kontaktdaten ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.li-anschrift {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    color: #333;
}

.bull {
    margin: 0 5px;
    color: #aaa;
}

.li-anschrift-action {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
}

.li-anschrift-action a {
    color: #1888c8;
    text-decoration: none;
}

select,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1.4rem;
    box-sizing: border-box;
}

#span-name {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

#span-name input {
    flex: 1 1 48%;
}

#textarea-anfrage {
    height: 100px;
    resize: vertical;
}

#span-datenschutz {
    font-size: 0.9rem;
    color: #333;
}

#span-datenschutz a {
    color: #1888c8;
    text-decoration: underline;
}

#check-datenschutz-anfrage {
    margin-right: 8px;
}

#submit-anfrage {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: #1888c8;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.5rem;
    cursor: pointer;
    text-transform: lowercase;
}

#submit-anfrage:hover {
    background: #0f6b9f;
}

label.datenschutz {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1.5rem;
    line-height: 1.4;
    flex-direction: row;
}
input[type="checkbox"], input[type="radio"]{
    width: 20px;
}

#btn-anfragen{
    background: #1888c8;
    color: white;
    padding: 0px;
    font-size: 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-transform: capitalize;
    height: 50px;
}
@media(max-width: 700px){
    label.datenschutz {
        flex-direction: column;
    }
}