.offer-card {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #5d0096 0%, #8a2be2 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(93, 0, 150, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.offer-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.offer-title span {
    color: #ffd740;
    /* Golden yellow instead of cyan */
    text-shadow: 0 2px 10px rgba(255, 215, 64, 0.2);
}

.offer-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

@media (max-width: 768px) {
    .offer-title {
        font-size: 1.8rem;
    }
}