/* Stylizacja sekcji wprowadzenia */
.offers-intro {
    text-align: center;
    margin: 30px auto;
}

.offers-intro h1 {
    font-size: 2.5rem;
    color: #7cb342;
    margin-bottom: 20px;
}

.offers-intro p {
    font-size: 1.2rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* Stylizacja kontenera ofert */
.offers-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-width: 1000px; /* Ograniczenie maksymalnej szerokości */
    margin: 0 auto; /* Wyśrodkowanie kontenera */
}

/* Stylizacja pojedynczego bloku oferty */
.offer-item {
    background: linear-gradient(to right, #f7f7f7, #ffffff); /* Subtelny gradient od jasnoszarego do białego */
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.offer-item img {
    width: 55%;
    height: auto;
    border-bottom: 1px solid #ddd;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 25px;
}

.offer-item h2 {
    font-size: 1.8rem;
    color: #7cb342;
    margin: 15px 0;
}

.offer-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.offer-item .content-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(26, 75, 124, 0.3);
}

.offer-item .content-btn:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 12px rgba(22, 61, 102, 0.4);
    transform: scale(1.05);
}

.offer-item .content-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(26, 75, 124, 0.4);
}

.offer-item .content-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 4px rgba(26, 75, 124, 0.4);
}
