/* Stylizacja tła i kontenera */
.offer-section {
    background-color: #0c0c0c; /* Głęboka czerń - domyślnie, nadpisywane przez kontrolki */
    padding: 80px 20px;
    font-family: 'Playfair Display', serif; /* Nagłówki */
    color: #ffffff;
    text-align: center;
}

.offer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.offer-subtitle {
    color: #c5a059; /* Złoty kolor - domyślnie */
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.offer-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
}

/* Siatka kart */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Styl karty */
.offer-card {
    background: #161616; /* Lekko jaśniejszy czarny */
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #222; /* Delikatne obramowanie */
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: #c5a059;
}

/* Ikony i etykiety */
.icon-circle {
    color: #c5a059;
    font-size: 24px;
    margin-bottom: 20px;
}

.icon-circle i, .icon-circle svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.card-label {
    color: #c5a059;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.card-title {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

.card-text {
    color: #b5b5b5;
    font-family: 'Poppins', sans-serif; /* Tekst pomocniczy */
    font-size: 15px;
    line-height: 1.6;
}

/* Responsywność */
@media (max-width: 768px) {
    .offer-title { font-size: 32px; }
    .offer-grid { grid-template-columns: 1fr; }
}
