/* Sekcja kontaktu */
.contact-section {
    font-family: 'Roboto', sans-serif;
    margin-top: 50px;
    padding: 30px 0;
    background-color: #f9f9f9;
}

.contact-header {
    background-color: #C8102E; /* Czerwony z logo */
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin: 0;
}

.contact-header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 48%;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2,
.contact-form h2 {
    color: #C8102E; /* Czerwony z logo */
    margin-bottom: 20px;
    text-align: center;
}

.contact-info p {
    font-size: 1rem;
    color: #555555; /* Szary tekst */
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-info strong {
    font-weight: bold;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #555555; /* Szary */
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

.contact-form button {
    background-color: #C8102E; /* Czerwony z logo */
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #A60D25; /* Ciemniejszy czerwony */
}
/* Sekcja mapy */
.map-container {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-container h2 {
    color: #C8102E; /* Czerwony z logo */
    margin-bottom: 15px;
    text-align: center;
}
