/* Beispielhafte CSS-Inhalte */
body {
    font-family: Arial, sans-serif;
    color: rgb(0, 140, 250);
    background-color: white;
    margin: 0;
    padding: 0;
}

header {
    background-color: rgb(0, 140, 250);
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}

button {
    background-color: white;
    color: rgb(0, 140, 250);
    border: 2px solid rgb(0, 140, 250);
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: rgb(0, 140, 250);
    color: white;
}

.main {
    padding: 20px;
}

.highlight {
    text-align: center;
}

.packages {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.package {
    background-color: black;
    color: rgb(0, 140, 250);
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    flex: 1;
    transition: transform 0.2s, background-color 0.2s;
}

.package ul {
    list-style-type: none;
    padding: 0;
}

.package button {
    margin-top: 10px;
}

.qa-section {
    background-color: black;
    color: white;
    padding: 20px;
    margin-top: 20px;
}

.qa-section h2, .qa-section h3 {
    color: rgb(0, 140, 250);
}

footer {
    background-color: rgb(0, 140, 250);
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
