/* Ogólne ustawienia dla sekcji głównej */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero section (zaktualizowana sekcja główna dla podstrony Firma) */
.hero-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-section h1 {
    font-size: 36px;
    color: #7cb342; /* Kolor nagłówka jak w sekcji quality-management */
    text-align: center;
    margin-bottom: 20px;
}

.hero-section .line hr {
    width: 100%;
    height: 3px;
    background-color: #7cb342;
    border: none;
    margin: 0 auto 30px;
}

.hero-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Dodatkowa stylizacja dla kontenera tekstu w hero-section */
.hero-section .text-container {
    text-align: center; /* Wyrównanie tekstu na środku */
}

/* Sekcje treści */
.content-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    font-size: 28px;
    color: #7cb342;
    text-align: center;
    margin-bottom: 20px;
}

.content-section .line {
    text-align: center;
}

.content-section .line hr {
    width: 100%;
    height: 3px;
    background-color: #7cb342;
    border: none;
    margin: 0 auto 30px;
}

.text-image-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.text-image-container.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1 1 60%;
    padding: 20px;
}

.text-block p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.text-block ul {
    list-style: none;
    padding: 0;
}

.text-block ul li {
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    color: #333;
}

.text-block ul li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #7cb342;
    font-size: 20px;
}
