/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff3e0; /* Light orange */
    color: #333;
}

/* Header box styles */
.headerbox {
    background-color: #ffe0b2; /* Soft orange */
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border: 1px solid #ffcc80; /* Medium orange */
    width: 91%;
    max-width: 750px;
    border-radius: 8px;
}

/* Box container styles */
.box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0;
    width: 100%;
    max-width: 1200px;
}

/* Box styles */
.box {
    background-color: #fff8e1; /* Very light orange */
    padding: 20px;
    border: 1px solid #ffe0b2; /* Light orange */
    width: 100%;
    max-width: calc(33.333% - 20px);
    box-sizing: border-box;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.box h3 {
    margin-bottom: 8px;
}

.box p {
    margin-bottom: 32px;
}

.datenschutz p,
.datenschutz li {
    font-size: 10px;
}

/* Link styles */
a {
    color: #ef6c00; /* Slightly lighter orange for balanced contrast */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Media queries */
@media (max-width: 750px) {
    .headerbox {
        font-size: 20px;
        padding: 15px;
    }

    .box {
        padding: 15px;
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .headerbox {
        font-size: 18px;
        padding: 10px;
    }

    .box {
        padding: 10px;
    }
}

/* Form styles */
form {
    font-size: 14px;
}

/* Input styles */
input[type="submit"] {
    background: none;
    color: #ef6c00;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
}

input[type="submit"]:hover {
    text-decoration: underline;
}
