body {
    background-color: #1e1e1e;
    color: #f0f0f0;
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
}

header {
    background-color: #111;
    padding: 1rem;
    text-align: center;
    border-bottom: 2px solid #ffc107;
}

header h1 {
    margin: 0;
    color: #ffc107;
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #333;
}

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
}

/* ZMIANA: Zmieniono selektor na bardziej precyzyjny (article) */
article.review-item {
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

article.review-item h3 {
    margin-top: 0;
    color: #ffc107;
    border-bottom: 1px solid #555;
    padding-bottom: 0.5rem;
}

/* NOWY STYL: Dodano style dla nagłówków sekcji */
article.review-item h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
    border-bottom: 1px solid #444;
    padding-bottom: 0.25rem;
}

article.review-item img {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 5px;
    border: 2px solid #444;
}

article.review-item ul {
    list-style: none;
    padding: 0;
}

/* ULEPSZENIE: Lepsze formatowanie listy specyfikacji */
article.review-item ul li {
    margin-bottom: 0.75rem;
    display: flex; /* Umożliwia ładne wyrównanie */
    flex-wrap: wrap;
}

/* ULEPSZENIE: Wyróżnienie etykiet kolorem akcentu */
article.review-item ul strong {
    color: #ffc107;
    min-width: 180px; /* Zapewnia równy odstęp i wyrównanie */
    display: inline-block;
}

/* ZMIANA: Usunięto zbędne style dla <p> i dodano prosty margines */
article.review-item p {
    margin-bottom: 1rem;
}