.features-showcase-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #fef2f2, #fff7ed, #fefce8);
}

.features-showcase-grid {
    display: grid;
    gap: 3rem;
    max-width: 70%;
    margin: 0 auto;
}

.feature-showcase-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
        "number icon image"
        "content content image";
    gap: 1.5rem 2rem;
    align-items: start;
}

.feature-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.18);
}

.feature-showcase-number {
    grid-area: number;
    font-size: 3rem;
    font-weight: 900;
    color: #ef4444;
    line-height: 1;
    align-self: center;
}

.feature-showcase-icon {
    grid-area: icon;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px -6px rgba(239, 68, 68, 0.4);
    align-self: center;
}

.feature-showcase-content {
    grid-area: content;
    max-width: none;
}

.feature-showcase-title {
    font-size: 2rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-showcase-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.feature-showcase-description:last-child {
    margin-bottom: 0;
}

.feature-showcase-image {
    grid-area: image;
    width: 400px;
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.15);
    align-self: center;
}

.feature-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-showcase-card:hover .feature-showcase-image img {
    transform: scale(1.05);
}

@media (max-width: 2560px) and (min-width: 1641px) {
    .feature-showcase-title {
        font-size: 2rem;
    }

    .feature-showcase-description {
        font-size: 1.3rem;
    }
}