/* Kontakt Sekcja */
.contact-section {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    gap: 30px;
}

/* Dane kontaktowe */
.contact-details {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.contact-details h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

hr {
    border: none;
    height: 4px;
    background: linear-gradient(90deg, #a7cd64, #e0e0e0, #a7cd64);
    margin: 20px 0;
    border-radius: 10px;
}

.contact-details ul {
    list-style: none;
    padding: 0;
    color: #333;
    line-height: 1.8;
}

.contact-details ul li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-details ul li i {
    font-size: 22px;
    color: #007bff;
    margin-right: 15px;
}

.contact-details ul li i:hover {
    color: #0056b3;
}

.contact-details ul li a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.contact-details ul li a:hover {
    text-decoration: underline;
}

/* Formularz kontaktowy */
.contact-form {
    flex: 2;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
	font-weight: 550;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 90%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: border-color 0.3s;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #9acd32;
}

.contact-form .form-row {
    display: flex;
    flex-direction: column;
}

.contact-form .content-btn {
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
    align-self: flex-start;
}

.contact-form .content-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.privacy-horizontal {
    display: inline-flex;
    align-items: center; /* Ustawienie elementów w jednej linii i wyrównanie pionowe */
}

.privacy-horizontal input[type="checkbox"] {
    margin-right: -40%; 
	margin-left: -40%;
	margin-bottom: 2%;
}

.privacy-horizontal label {
    white-space: nowrap; /* Zapobiega przenoszeniu tekstu do nowej linii */
}

.privacy-horizontal a {
    color: #007bff; /* Kolor linku */
    text-decoration: none; /* Usuwa podkreślenie linku */
    transition: color 0.3s, text-decoration 0.3s; /* Płynna zmiana kolorów */
}

.privacy-horizontal a:hover {
    color: #0056b3; /* Kolor linku po najechaniu */
    text-decoration: underline; /* Dodaje podkreślenie linku po najechaniu */
}

/* Alert po kliknięciu pprzycisku wysłania formularza */
.alert {
	margin-top: 15px;
	padding: 10px;
	border-radius: 5px;
}

.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Sekcja mapy */
.map-section {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 25px; /* Dodany odstęp między sekcją formularza a sekcją mapy */
}

.map-container {
    text-align: center;
}

.map-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.map-container hr {
    border: none;
    height: 4px;
    background: linear-gradient(90deg, #a7cd64, #e0e0e0, #a7cd64);
    margin: 20px 0;
    border-radius: 10px;
}

/* Stylizacja iframe mapy Google */
.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.alert {
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    display: block; /* Zmieniono na block, aby alerty były widoczne */
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


