main {
	position: relative;
	width:100%;
	z-index: 1;
	box-shadow: 0 -2px 5px #ccc;
	font-family: "OpenSans", sans-serif;
}


#aktualnosci {
		width: 100%;
		padding: 75px 0;
	} 
		#aktualnosci > h3 {
			font:2.4em "OpenSansB";
			text-align: center;
		}
		#aktualnosci > h3:after {
			content: '';
			width:40px;
			height:2px;
			background: #6196ad;
			margin: 15px auto;
			display: block;
		}
		#aktualnosci_block {
			width:100%;
			max-width:1000px;
			margin: 0 auto;
		}
			.aktualnosci_block_post {
    background: #f8f9fa; /* Jasnoszare tło */
    border: 1px solid #d6d6d6; /* Subtelna szara ramka */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px; /* Zaokrąglone rogi */
    text-align: center; /* Wyśrodkowanie tekstu */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.aktualnosci_block_post:hover {
    transform: translateY(-3px);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    background: #ebebeb; /* Trochę ciemniejsze tło przy najechaniu */
}

.aktualnosci_block_post h5 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.aktualnosci_block_content {
    color: #555;
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center; /* Wyśrodkowanie treści */
}

.files_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsywne kolumny */
    gap: 15px;
    max-width: 100%;
    margin-top: 10px;
    justify-content: center; /* Centrowanie siatki */
}

.aktualnosci_block_post_file {
    background: #e9ecef; /* Szare tło */
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    max-width: 200px;
    margin: 0 auto; /* Centrowanie w obrębie siatki */
}

.aktualnosci_block_post_file:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.aktualnosci_block_post_file img {
    width: 40px;
    margin-bottom: 5px;
}

.aktualnosci_block_post_file a {
    display: block;
    color: #007BFF;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
}

.aktualnosci_block_post_file a:hover {
    text-decoration: underline;
    color: #0056b3;
}
}
	#oferta {
		width: 100%;
		padding: 75px 0;
		background: #eee;
	}
		#oferta_block {
			width:100%;
			max-width:800px;
			margin: 0 auto;
		}
			#oferta_block > h3 {
				font:2.4em "OpenSansB";
				text-align: center;
			}
			#oferta_block > h3:after {
				content: '';
				width:40px;
				height:2px;
				background: #6196ad;
				margin: 15px auto;
				display: block;
			}
			#oferta_block > p {
				font:1em "OpenSans";
				text-align: justify;
				text-align-last: center;
				margin-bottom: 20px;
			}
			#oferta_block > a {
				font:0.8em "OpenSansSB";
				width:80px;
				text-align: center;
				color: #6196ad;
				text-decoration: none;
				padding: 10px 15px;
				border:solid 2px #6196ad;
				background: transparent;
				transition: background 0.2s, color 0.2s, transform 0.2s;
				cursor: pointer;
				margin:0 auto;
				display: flex;
				justify-content: center;
				align-items: center;
			}
			#oferta_block > a:hover {
				background: #6196ad;
				color: #fff;
			}
			#oferta_block > a:active {
				transform: scale(0.9);
			}
    #contact {
		width: 100%;
		padding: 75px 0;
		background: #fff;
	}
		#contact_block {
			width:100%;
			max-width:800px;
			margin: 0 auto;
		}
			#contact_block > h3 {
				font:2.4em "OpenSansB";
				text-align: center;
			}
			#contact_block > h3:after {
				content: '';
				width:40px;
				height:2px;
				background: #6196ad;
				margin: 15px auto;
				display: block;
			}
			#contact_block > p {
				font:1em "OpenSans";
				text-align: justify;
				text-align-last: center;
				margin-bottom: 20px;
			}
			#contact_block > a {
				font:0.8em "OpenSansSB";
				width:80px;
				text-align: center;
				color: #6196ad;
				text-decoration: none;
				padding: 10px 15px;
				border:solid 2px #6196ad;
				background: transparent;
				transition: background 0.2s, color 0.2s, transform 0.2s;
				cursor: pointer;
				margin:0 auto;
				display: flex;
				justify-content: center;
				align-items: center;
			}
			#contact_block > a:hover {
				background: #6196ad;
				color: #fff;
			}
			#contact_block > a:active {
				transform: scale(0.9);
			}

.container {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    width: 50%;
    margin: 20px auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

h2, h3 {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input, select {
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    margin-top: 20px;
    padding: 10px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #0056b3;
}
