/* Resetowanie marginesów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Styl nagłówka */
header {
    background: #222;
    padding: 20px 50px;
    color: white;
}

header h1 {
    font-size: 28px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a.active {
    color: #28a745;
}

/* Styl sekcji kontaktowych */
.contact-info {
    background: #f4f4f4;
    padding: 40px 50px;
    text-align: center;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-details {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.contact-method {
    width: 30%;
    margin: 0 20px;
}

.contact-method h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-method p {
    font-size: 16px;
}

/* Styl formularza kontaktowego */
.contact-form {
    background: white;
    padding: 40px 50px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form label {
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background: #218838;
}

/* Styl sekcji mapy */
.map {
    margin-top: 50px;
    text-align: center;
}

.map iframe {
    border: none;
    max-width: 100%;
    height: 400px;
}

/* Styl stopki */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}
