/* Styl ogólny dla całej strony */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Nagłówek strony */
header {
    background-color: #007bff;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #f7f7f7;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: #555;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

/* Dodanie odstępu dla treści poniżej nagłówka */
main {
    margin-top: 80px; /* Wysokość nagłówka + odstęp */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    margin-bottom: 80px;
}

/* Główna karta ankiety */
form {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
}

/* Nagłówki sekcji */
h1, h2 {
    color: #444;
}

h2 {
    font-size: 18px;
    margin: 20px 0 10px;
}

/* Styl dla pól tekstowych i textarea */
input[type="text"],
input[type="number"],
textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    resize: none;
}

/* Styl dla przycisków radiowych */
label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

input[type="radio"] {
    margin-right: 8px;
}

/* Styl przycisku wysyłania */
button[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Styl dla textarea */
textarea {
    height: 80px;
}

/* Responsywność */
@media (max-width: 768px) {
    form {
        padding: 15px;
    }

    h2 {
        font-size: 16px;
    }

    button[type="submit"] {
        font-size: 14px;
        padding: 10px 15px;
    }
}

