/* Sekcja ogólna */
span{
    color: var(--primary-color);
}
.offer {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 100px 16px 0;
}

/* Pojedyncza sekcja */
.offer-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 10px;
    width: 100%;
}

/* Opis sekcji */
.offer-description {
    font-size: var(--text-size);
    font-weight: var(--text-weight);
    color: var(--text-color);
    line-height: 1.6;
    text-align: justify;
    margin: 0;
    margin-bottom: 18px;
}
.image-container {
    width: 100%;
    margin: 8px auto;
}
/* Styl dla zdjęcia */
.rounded-image {
    width: 100%; 
    height: 400px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
}
.offer-option {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 10px;
    width: 100%;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 24px 16px;
}
.offer-option .offer-title, .offer-option .offer-description {
margin: 0px;
}
.contact-section{
    max-width: var(--max-width);
}
.back-container {
    justify-content: center;
    max-width: var(--max-width);
    margin: auto;
    align-items: center;
}
/* Przycisk powrotu */
.back-button {
    display: flex;
    justify-content: center;
    cursor: pointer;
    width: auto;
    margin: auto;
}
.back-button img {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 16px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.back-button p {
    font-size: var(--text-size);
    color: var(--text-color);
    font-weight: var(--text-weight);
    margin: auto 10px;
}

.back-button:hover img {
    background-color: var(--primary-color);
}
strong {
    font-weight: bold;
}




