.container-oferta {
    max-width: 1600px;
    margin: 20px 40px;
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 20px 50px;
    font-size: 18px;
    text-align: justify;
    border-radius: 7px;
}

.footer-note{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    flex-direction: row;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 20px;
}

h1 {
    text-align: center;
    font-size: 25px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
}

h2 {
    counter-increment: section;
    counter-reset: subsection;
}
h2::before {
    content: counter(section) ". ";
    font-weight: bold;
}

/* подпункты (1.1, 1.2, 2.1...) */
ol {
    list-style: none;
    padding-left: 25px;
}
ol > li {
    counter-increment: subsection;
    position: relative;
    padding-left: 2em;
}
ol > li::before {
    content: counter(section) "." counter(subsection) " ";
    position: absolute;
    left: 0;
}



.save-oferta-pdf{
    margin-bottom: 20px;
}

.download-btn-oferta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #2563eb;
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}
.download-btn-oferta:hover {
    background-color: #1e40af;
}
.download-btn-oferta svg {
    stroke: white;
}

@media (max-width: 775px) {
    .container-oferta {
        padding: 20px 20px;
        margin: 20px 20px;
    }
}

@media (max-width: 575px) {
    .container-oferta {
        font-size: 14px;
        padding: 20px 20px;
    }
}
