/* Resetowanie domyślnych stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #b71c1c;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo img {
    max-height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li {
    margin: 5px 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

h1, h2, h3 {
    margin-bottom: 15px;
    text-align: center;
}

.pros-cons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.pros, .cons {
    width: 100%;
    max-width: 48%;
    padding: 10px;
    border-radius: 5px;
}

.pros {
    background: #d4edda;
}

.cons {
    background: #f8d7da;
}

@media (max-width: 768px) {
    .pros, .cons {
        max-width: 100%;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    overflow-x: auto;
    display: block;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

table th {
    background-color: #222;
    color: #fff;
}

details {
    background: #f9f9f9;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    cursor: pointer;
}

details summary {
    font-weight: bold;
}

/* Stylizacja list z ikonami check */
ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
    font-size: 16px;
}

.highlight {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: #fff;
    font-weight: bold;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin: 15px 0;
}

ul li::before {
    content: '\2714'; /* Unicode dla znacznika check */
    position: absolute;
    left: 0;
    top: 0;
    color: #b71c1c; /* Kolor czerwony */
    font-size: 18px;
    font-weight: bold;
}

ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

ol li {
    margin-bottom: 5px;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #b71c1c;
    color: white;
    margin-top: 20px;
    border-radius: 5px;
}

img.center {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}