/* Baner z obrazkiem nad ikonami zaufania */
.trust-banner {
    display: block;
    margin: 30px auto 24px auto;
    max-width: 340px;
    width: 90%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px #cfd8dc44;
    transition: box-shadow 0.3s, transform 0.3s;
}
.trust-banner:hover {
    box-shadow: 0 6px 24px #b0bec544;
    transform: scale(1.035);
}
@media (max-width: 600px) {
  .support-contact-box {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .support-contact-box img {
    width: 90vw;
    max-width: 320px;
    min-width: 0;
    margin-left: 0;
  }
  .support-contact-box p {
    text-align: center;
  }
}
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f4f4;
    margin: 0px;
    padding: 20px;
}

.cytat {
    font-style: italic;
    color: #555;
    border-left: 4px solid #007bff;
    padding-left: 10px;
    margin: 20px 0;
}

#colier {
    font-weight: bold;
    font-style: normal;
}

#tekst {
    color: #333;
    background-color: #e9ecef;
    padding: 5px;
    border-radius: 5px;
    font-style: normal;
}

.strona_wsparcia .cytat {
    font-style: italic;
    color: #555;
    border-left: 4px solid #5bcd3d; /*zmiana koloru border left na zielony*/
    padding-left: 10px;
    margin: 20px 0;
}

.strona_wsparcia
#colier1 {
    font-weight: bold;
    font-style: normal;
}

.strona_wsparcia
#text1 {
    color: #333;
    background-color: #e9ecef;
    padding: 5px;
    border-radius: 5px;
    font-style: normal;
}

p {
    margin: 10px 0;
}

.button {
    display: inline-block;
    padding: 10px 20px; 
    margin-top: 20px; /*dodaje margines górny 20px*/
    margin-right: 20px; /*dodaje margines prawy 20px*/
    margin-left: 20px; /*dodaje margines lewy 20px*/
    background-color: #fff;
    text-decoration: none;
    border-radius: 5px; /*dodaje zaokrąglenie rogów*/
    font-size: 16px;
    border: 1px solid black; /*dodaje czarny obramowanie*/
    border-bottom: 3px solid #0056b3; /*dodaje dolne obramowanie o grubości 3px i kolorze #0056b3*/
    border-left: 3px solid #0056b3; /*dodaje lewe obramowanie o grubości 3px i kolorze #0056b3*/
    padding: 10px 20px; /*dodaje padding wewnętrzny 10px na górze i dole, 20px po bokach*/
    margin-bottom: 20px;
    
}

.button:hover {
    background-color: #0056b3;
    color: white;
    border-bottom: 3px solid black; /*zmiana dolnego obramowania na czarne o grubości 1px*/
    border-left: 3px solid black; /*zmiana lewego obramowania na czarne o grubości 1px*/
}


img {
    max-width: 100%;
    height: auto;
    border: none;
}

/* Dodaj nowy styl dla obrazka o klasie centered */
img.centered {
    width: 50%;
    max-width: 250px; /*maxymalna szerokość 250px*/
    height: auto; /* Dodaj wysokość, aby obrazek był kwadratowy */
    display: block;
    margin: 20px auto 0; /*dodaje margines górny 20px, auto - centruje obrazek, 0 - brak marginesu dolnego*/
    border-radius: 50%; /* Zaokrąglenie do kształtu koła */
}

a {
    text-decoration: none;
    outline: none;
}

.logo {
    max-width: 25%; /*maksymalna szerokość 25%*/
    height: auto;
    border: none;
}

.button:active { /*dodaje efekt kliknięcia*/
    background-color: #0056b3;
    transform: translate(2px); /*przesunięcie o 2px*/
   
}

.container {
    padding: 20px; /* Padding around the container */
    margin-bottom: 4rem;
}

#pricing-table {
    width: 100vw;
    margin-left: calc(50% - 50vw); /* Center the table */
    padding: 20px 0; /* Add padding to the top and bottom */
    background-color: #007bff; /* Light background for the table */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    margin-bottom: 30px; /* Add margin to the bottom */
}