@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');


* {
    font-family: 'Roboto', sans-serif; /* Używa jednej niestandardowej czcionki dla wszystkich elementów na stronie, a jeśli nie jest dostępna, używa domyślnej czcionki sans-serif */
}

html{
	scroll-behavior: smooth;
}
body {
    font-family: Roboto;
	
}


#pierwsza {
	background-color: #273583;
	color: white;
	padding: 20px;
	font-size: 22px;
	padding-top: 30px;

}

.logo {
    display: block;
    margin: 0 auto;
	margin-bottom: 30px;
	
	
}

.image-background {
	position: relative;
    background-image: url( "../img/background_img-2-2.png");
    background-size: cover;
    background-position: center;
    padding: 110px 0;
    color: white;
	height: 190px;
	font-size: 20px;
	line-height: 1.4;
	display: flex;
	justify-content: center;
	align-items: center;
	
}

h1{
	
	font-size: 24px;
	color: white;
	font-weight: 700;
	letter-spacing: 1.5px;
}


hr{
	height: 0,3px;
    background-color: white;
    margin-top: 30px;
    margin-bottom: 60px;
	width: 80%;
	
}

.split-section {
	margin: 0 auto;
    display: flex;
    align-items: center;
	margin-bottom: 80px;
	margin-top: 80px;
}


.text-content,
.image-content {
    width: 50%;
	line-height: 1.3;
	font-size: 18px;
	text-align: left;
	padding-left: 100px;
	padding-right: 100px;
	
	
}

h2{
	
	color: #273583;
    font-size: 30px;
    font-weight: 700;
	padding-bottom: 60px;
}


h3{
	
	color: #273583;
    font-size: 30px;
    font-weight: 700;
	margin-bottom: 60px;
	margin-top: 100px;
}

h4{
	
	font-size: 18px;
	color: black;
	font-weight: bold;
	
}

.text-content img, 
.image-content img {
    max-width: 100%;
}

.icon-section{
	
	padding-bottom: 60px;

}
.tekst_ikon{
	font-size: 18px;
	padding-left: 20px;
	padding-right: 20px;
	
}

/* Responsywność dla urządzeń mobilnych */
@media only screen and (max-width: 768px) {
    .split-section {
        flex-direction: column;
		line-height: 1.3;
		padding-left: 20px;
		padding-right: 20px;
    }

    .text-content,
    .image-content {
        width: 100%;
		padding: 0;
		margin-top: 30px;
		
    }
}/* ... poprzednie style */

.colored-background {
    background-color: #273583; /* Tymczasowy kolor, do dostosowania */
    padding: 50px;
    text-align: center;
	color: white;
	font-size: 22px;
	line-height: 1.4;
	margin-bottom: 40px;
	margin-top: 40px;
	
}


	button {
	
	background-color: white;
    color: #273583; 
    font-size: 16px;
    padding: 10px 60px;
    border: none; 
    cursor: pointer;
	margin-top: 40px;
	
}

	button:hover {
    font-weight: bold;
}

.icon-section {
    text-align: center;
    padding: 20px;
    margin-top: 0px;
	padding-left: 200px;
	padding-right: 200px;
}

.icon-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
	margin-top: 60px;
}

.icon img {
    width: 80px; /* Tymczasowy rozmiar */
    height: 80px;
    margin-bottom: 10px;
}

.icon-label {
    margin-top: 10px;
}


.triple-section {
    display: flex;
    gap: 20px;
}

.column {
    flex: 1;
    text-align: center;
	margin-top: 10px;
	margin-bottom: 50px;
}

/* Responsywność dla urządzeń mobilnych */
@media only screen and (max-width: 768px) {
    /* ... poprzednie style responsywne */

    .icon-wrapper {
        flex-direction: column;
    }

    .icon {
        margin-bottom: 20px;
    }

    .triple-section {
        flex-direction: column;
    }
	
	.tekst_ikon{
		
		line-height: 1.4;
	}
	
}

