body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    font-size: 1rem
}

header {
    background-color: #80B89A; /* Grün */
    color: rgb(241, 233, 233);
    padding: 15px;
    text-align: center;
}

nav {
    background-color: #396C60; /* Dunkelgrün */
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}

nav a:hover {
    background-color: #80B89A;
    border-radius: 8px;
    cursor: pointer; /* Zeiger-Hand bei Hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Schatten */
    transition: all 0.3s ease; /* Sanfte Übergänge */
}

.container {
    padding: 20px;
}

h1 {
    color: #396C60;
    font-size: 3rem
}

h2 {
    color: #396C60;
}

h3 {
    color: #6f9c91;
    font-size: 1.2rem
}

footer {
    background-color: #396C60;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    bottom: 0;
}

.btn {
    background-color: #80B89A;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #87d189;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-item h3 {
    margin-bottom: 5px;
}


.button {
    background-color: #396C60;
    color: white; 
    padding: 12px 24px; /* Innenabstand */
    font-size: 16px; /* Schriftgröße */
    border: none; 
    border-radius: 8px; /* Abgerundete Ecken */
    cursor: pointer; /* Zeiger-Hand bei Hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Schatten */
    transition: all 0.3s ease; /* Sanfte Übergänge */
}

.button:hover {
    background-color: #80B89A; /* Etwas dunkleres Grün bei Hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Größerer Schatten bei Hover */
    transform: translateY(-2px); /* Leichtes Anheben beim Hover */
}

.button:active {
    background-color: #b0c9bc; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
    transform: translateY(1px); 
}
form input, form select, form button {
    width: 100%;
    padding: 1rem;
    margin-top: 0,2rem;
    margin-block: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
}



button a {
    text-decoration: none;
    color: white;
}