/* Outcome-focused Offers Section */
#offers {
    padding: 4rem 0;
    background: #f8f9fa;
}

#offers .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#offers .heading {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #e41c20;
    margin-bottom: 0.5rem;
}

#offers h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

/* Homepage Offers Section (within hero) */
.offers-section-homepage {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.offers-homepage-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-align: center;
}

.offers-homepage-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #e41c20;
    margin-bottom: 3rem;
    text-align: center;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.offer-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.offer-problem {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
    border-left: 3px solid #e41c20;
    padding-left: 1rem;
}

.offer-solution {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 500;
}

.offer-fit {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    flex-grow: 1;
}

.offer-fit strong {
    color: #1a1a1a;
}

.offer-card .btn {
    display: inline-block;
    background: #e41c20;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s ease;
    margin-top: auto;
}

.offer-card .btn:hover {
    background: #c11818;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #offers {
        padding: 3rem 0;
    }

    #offers h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .offer-card {
        padding: 1.5rem;
    }

    .offer-card h3 {
        font-size: 1.25rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
