.content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    margin-bottom: 4rem; /* Zmienione z padding-bottom na margin-bottom */
}

.content h1,
.content h2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.content p {
    margin-bottom: 0.5rem;
}

.content h1:first-child {
    margin-top: 0;
}

/* Style dla sekcji Wydarzenia */
.event {
    margin-bottom: 2rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Style dla formularza kontaktowego */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    height: 150px;
}

button[type="submit"] {
    background-color: #4ECDC4;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

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