/* Kontener dla sekcji */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    margin-top: 15vh;
}

/* Stylizacja dla każdego bloku */
.box {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    background-color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.box:hover {
    transform: scale(1.02);
}

/* Nagłówki */
.box h2 {
    font-size: 20px;
    font-family: arial;
    text-transform: uppercase;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
    margin-bottom: 15px;
    text-align: center;
    text-justify: center;
}

h3 {
    font-size: 16px;
    font-family: arial;
    font-weight: bold;
    margin: 10px 0 5px;
    color: #444;
}

strong{
    font-family: arial;
}
/* Tekst */
.container p {
    font-size: 14px;
    margin: 5px 0;
    align-items: center;
    text-align: center;
}

.bold {
    font-weight: bold;
}

.uppercase {
    text-transform: uppercase;
}

/* Linki */
.container a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    background-color: rgb(47 58 106);
    padding: 2px;
    border-radius: 3px;
    transition: transform 0.3s ease;
    transition: background 0.2s ease, transform 0.2s ease;
}

.container a:hover {
    color: #2dc5e0;
    
    background-color: rgb(28, 47, 130);
   
    transform: scale(1.07);
}

/* Stylizacja RODO */
.rodo {
    width: 100%;
    text-align: center;
    background-color: #fffae6;
    border: 2px solid #ffd700;
}