
@media all {




.big-num ol {
    list-style: none;
    counter-reset: big-counter;
    padding-left: 0;
    line-height: 1.8em;
}

.big-num ol li {
    position: relative;
    padding-left: 4.5rem;
    counter-increment: big-counter;
    margin-bottom: 1.5rem;
}

.big-num ol li::before {
    content: counter(big-counter);
    color: var(--mark);
    font-weight: var(--font-family-header-bold);
    position: absolute;
    left: 0;
    top: -0.2rem;
    font-size: 3.5rem;
    line-height: 1;
    opacity: 0.9;
}

.big-num ol ol {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.big-num ol ol li {
    padding-left: 2rem;
    margin-bottom: 0;
}

.big-num ol ol li::before {
    content: counter(ol-counter) ".";
    font-size: 1.2rem;
    top: 0;
    opacity: 1;
}

.offer-blocks a:has(strong) {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 0.5rem;
    padding: 0 0.5rem 1rem 0.5rem;
}
.offer-blocks a:has(strong):hover {
   box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}





.section-content address.address_contact {
    margin-bottom: 1rem;
}
.section-content address.address_contact table {
    width: 100%;
    border-collapse: collapse;
}

.section-content address.address_contact table tbody {
    display: block;
}

.section-content address.address_contact table tr {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 0;
}

.section-content address.address_contact table tr td {
    border: none;
    padding: 0;
    vertical-align: top;
}

/* 🔴 Kolumna z ikonką */
.section-content address.address_contact table tr td:first-child {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 0.2rem;
}

/* 🔴 Style dla ikonek - większe, kolor mark */
.section-content address.address_contact table tr td:first-child i,
.section-content address.address_contact table tr td:first-child .fa,
.section-content address.address_contact table tr td:first-child [class*="fa-"] {
    font-size: 2.5rem;
    color: var(--mark);
    line-height: 1;
    display: block;
}

/* 🔴 Kolumna z treścią */
.section-content address.address_contact table tr td:last-child {
    flex: 1;
}

.section-content address.address_contact table tr td:last-child p {
    margin-bottom: 0.75rem;
}

.section-content address.address_contact table tr td:last-child p:last-child {
    margin-bottom: 0;
}

/* 🔴 Style dla linków i tekstów w sekcji kontaktowej */
.section-content address.address_contact table tr td:last-child p strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-content address.address_contact table tr td:last-child p i,
.section-content address.address_contact table tr td:last-child p .fa {
    color: var(--grey);
    font-size: 0.9rem;
    width: 1.2rem;
    display: inline-block;
}

.section-content address.address_contact table tr td:last-child p a {
    color: var(--black);
    text-decoration: none;
}

/* 🔴 Marginesy dla elementów z wieloma kontaktami */
.section-content address.address_contact table tr td:last-child p br + i,
.section-content address.address_contact table tr td:last-child p br + .fa {
    margin-left: 0;
}

table.offer-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

table.offer-table tbody {
    display: block;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
}

table.offer-table tr {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: none;
    flex: 1 1 30%;
    min-width: 200px;
    align-items: center;
    text-align: center;
}

table.offer-table td {
    border: none;
    padding: 0;
    vertical-align: top;
}
table.offer-table td:last-child {
    border-top: 1px solid #dfdfdf;
    padding-top: 2rem;
}


table.offer-table tr td:first-child {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 0.3rem;
}


table.offer-table tr td:first-child i,
table.offer-table tr td:first-child .fa,
table.offer-table tr td:first-child [class*="fa-"] {
    font-size: 3rem;
    color: var(--mark);
    line-height: 1;
    display: block;
}


table.offer-table tr td:last-child {
    flex: 1;
}

table.offer-table tr td:last-child p {
    margin-bottom: 0.5rem;
}

table.offer-table tr td:last-child p:last-child {
    margin-bottom: 0;
}


table.offer-table tr td:last-child p strong {
    font-size: 1.3rem;
    font-weight: var(--font-family-text-medium);
    display: block;
    margin-bottom: 0.5rem;
}


table.offer-table tr td:last-child p:not(:first-child) {
    font-size: 1rem;
    color: var(--grey-dark);
    line-height: 1.5;
}

table.offer-table tr td span {
    width: 100%;
    margin-top: 0.8rem;
    font-size: 0.8rem;
}

main section ul {
    list-style: none;
    padding-left: 0;
}

main section ul li {
    position: relative;
    padding-left: 2rem;
}

main section ul li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    color: var(--mark);
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    top: 0.1rem;
}

main section ol {
    list-style: none;
    counter-reset: ol-counter;
    padding-left: 0;
    line-height: 1.8em;
}

main section ol li {
    position: relative;
    padding-left: 2rem;
    counter-increment: ol-counter;
}

main section ol li::before {
    content: counter(ol-counter) ".";
    color: var(--mark);
    font-weight: var(--font-family-text-medium);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

main section ul ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

main section ul ul li::before {
    font-size: 1rem;
}


main section ol ol {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}


}
@media (max-width: 1200px) {

}
@media (max-width: 1000px) {
	
}
@media (max-width: 800px) {
    .big-num ol li {
        padding-left: 3.5rem;
        margin-bottom: 1.2rem;
    }
    
    .big-num ol li::before {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .big-num ol li {
        padding-left: 3rem;
        margin-bottom: 1rem;
    }
    
    .big-num ol li::before {
        font-size: 2.2rem;
        top: 0;
    }
}