/* --- Deliverable Card Architecture --- */
.deliverable-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 32px;
}

/* --- The Icon Canvas --- */
.deliverable-icon-box {
    width: 80px;
    height: 80px;
    background: #d9f99d; /* Signature Lime Green */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.deliverable-icon-box i, 
.deliverable-icon-box svg {
    font-size: 32px;
    color: #1e293b; /* Dark Slate Icon */
}

/* --- Typography Reset --- */
.deliverable-h3 { 
    margin: 0 !important; 
    font-size: 30px; 
    font-weight: 850; 
    color: #1e293b; 
    letter-spacing: -0.5px;
}

.deliverable-p { 
    margin: 16px 0 0 0 !important; 
    font-size: 18px; 
    color: #64748b; 
    line-height: 1.5;
    font-weight: 500;
}