.p-list li{
    list-style: disc;
    list-style-position: inside;
    margin-top:8px;
}
.cennik-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.cennik-title {
    word-wrap: break-word;
    font-feature-settings: 'liga';
    text-rendering: auto;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: normal;
    border-width: 0px;
    border-style: solid;
    border-color: transparent;
    transform-origin: left top;
    background-repeat: no-repeat;
    max-height: 1000000px;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}

.cennik-description {
    font-feature-settings: 'liga';
    text-rendering: auto;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: medium;
    line-height: normal;
    border-width: 0px;
    border-style: solid;
    border-color: transparent;
    transform-origin: left top;
    background-repeat: no-repeat;
    max-height: 1000000px;
    text-align: justify;
    margin-top: 12px;
    text-align: center;
    margin-bottom: 25px;
}

.price-images-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.price-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
p.text{
    line-height: 17px;
    word-wrap: break-word;
    font-feature-settings: 'liga';
    text-rendering: auto;
    visibility: visible;
    font-style: normal;
    font-size: 14px;
    font-family: '__Raleway_5';
    color: #FFFFFF;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px;
    padding: 0px;
    border-width: 0px;
    border-style: solid;
    border-color: transparent;
    transform-origin: left top;
    background-repeat: no-repeat;
    max-height: 1000000px;
}

.price-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.download-button {
    display: inline-block;
    background: linear-gradient(135deg, #F59291, #f39796);
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 3px;
    margin-bottom: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
}

.download-button:hover {
    background: linear-gradient(135deg, #f8807e, #f39796);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    text-decoration: none;
    color: white;
}

.accordion-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border:1px solid white;
}

.accordion-header {
    color: white;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background 0.3s ease;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    border-style: solid;
    border-width: 1px;
    font-family: '__Raleway_5';
    color: #FFFFFF;
    background-color: #169FD4;
    padding-bottom: 10px;
    text-align: center;
    padding-top: 10px;
    border-color: #FFFFFF;
    line-height: 16px;
    z-index: 2;
}

.accordion-header:hover {
    background-color: #0d9bd3;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.accordion-content {
    background: white;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
    max-height: 2000px;
    padding: 25px;
}

.accordion-content p, .accordion-content ol, .accordion-content li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.accordion-content ol {
    padding-left: 20px;
}

.accordion-content li {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .price-images-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .price-image {
        max-width: 350px;
    }
    
    .cennik-title {
        font-size: 2rem;
    }
    
    .download-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .accordion-header {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .accordion-content.active {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .cennik-container {
        padding: 20px 15px;
    }
    
    .price-image {
        max-width: 300px;
    }
    
    .cennik-title {
        font-size: 1.8rem;
    }
}